Viewing profile — alberteinstein
alberteinstein
HN member- Joined
- Wed, Apr 27, 2016, 4:48 PM UTC
- HN karma
- 129
- Public activity
- 35 items
- HN profile
- View on Hacker News ↗
About alberteinstein
No profile information was provided.
Recent public activity
- story
- story
- story
-
comment
Comment #18330286
Whether it's a gimmick or not, the fact that there is a need/demand for such products is a scary one. People want to wear bullet proof fashionable clothing since they are not sure …
-
comment
Comment #18198196
The system with worst or no abort procedures is the Space Shuttle. Earlier versions had ejection seats, but they got rid of that. Imagine if they had Soyuz like capsule which can p…
-
comment
Comment #17732358
One of the authors here: You can open GraphiQL on any GraphQL endpoint using graphqurl: gq https://api.yelp.com/v3/graphql -H "Authorization: Bearer ACCESS_TOKEN" -H "Content-Type:…
- story
-
comment
Comment #17544085
Please do reach out to us on discord [1] if you have any questions whatsoever :) [1]: https://discord.gg/vBPpJkS
-
comment
Comment #17544073
The GraphQL Engine is written in Haskell, the Console in JavaScript and the CLI in Go. The repo contains all the three components. :) (I am one of the maintainers)
- comment
-
comment
Comment #16957700
We built this tool to bootstrap vendor specific declarative templates (Google Cloud Deployment Manager Template [1], Azure Resource Manager Template [2] etc.) that provisions a Kub…
- story
- story
-
comment
Comment #16932131
Co-author here. We built this tool to bootstrap vendor specific declarative templates (Google Cloud Deployment Manager Template [1], Azure Resource Manager Template [2] etc.) that …
- story
-
comment
Comment #16861244
Indeed! And when the logs show nothing being wrong? All k8s components were reporting that everything is fine.
-
comment
Comment #16861223
Using netstat/lsof/tcp_dump from inside the containers did not help unfortunately. Eventual next step was to check nodes and kernel logs revealed the issue rightaway.
- story
-
comment
Comment #16755383
Spacemacs in Vim mode: best of both worlds
-
comment
Comment #16716282
Yes, ksync and telepresence lets you develop on k8s cluster as if you were doing on the local system. Haven't looked at forge yet. These tools are really useful when you're writing…
- story
-
comment
Comment #16577048
Gitkube is simpler since everything is contained in the cluster itself. Image is built and rolled out from within the cluster right now. (gitkube contributor here)
-
comment
Comment #16331283
Kubernetes will definitely be an overkill if you run only one container. But, if your application follows microservice architecture and have multiple containers, Kubernetes is the …
-
comment
Comment #16331085
Yes, it does. Kubernetes can perform rolling updates [1]. One scenario is that when you rollout a new version, the old container will only be killed when new one is up and running.…
-
comment
Comment #16331037
If you use container orchestration platforms like Kubernetes, this is not required, as restarts load balancing etc. are handled by the orchestrator.