Live data from Hacker News

Viewing profile — alberteinstein

alberteinstein

HN member
Joined
Wed, Apr 27, 2016, 4:48 PM UTC
HN karma
129
Public activity
35 items

About alberteinstein

No profile information was provided.

Recent public activity

  1. story
  2. story
  3. story
  4. 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 …

  5. 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…

  6. 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:…

  7. story
  8. comment
    Comment #17544085

    Please do reach out to us on discord [1] if you have any questions whatsoever :) [1]: https://discord.gg/vBPpJkS

  9. 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)

  10. comment
  11. 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…

  12. story
  13. story
  14. 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 …

  15. story
  16. comment
    Comment #16861244

    Indeed! And when the logs show nothing being wrong? All k8s components were reporting that everything is fine.

  17. 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.

  18. story
  19. comment
    Comment #16755383

    Spacemacs in Vim mode: best of both worlds

  20. 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…

  21. story
  22. 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)

  23. 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 …

  24. 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.…

  25. 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.