Tero Marttila
Tero Marttila
The graceful shutdown during the deploy sometimes causes a client to get an EOF for some request. It is unknown what causes this: it's either a bug in the e2e...
It is possible to end up with duplicate containers visible in `kontena container list`. This happened randomly while running e2e tests, and creating/removing the same stack. ``` CONTAINER_ID IMAGE COMMAND...
The first `initial_size` nodes that join the grid are given low `node_number` `1..initial_size` and become initial members. The etcd cluster is formed by each such initial node launching `kontena-etcd` with...
The current agent-server websocket RPC mechanism uses a grid-level shared secret token for authentication, together with the agent-provided Docker ID for identifying nodes. This is useful for simplifying autoscaling deployments,...
Using the new `service_deploys -> instance_deploys` given by the server API.
For a stateful service bind-mounting a file that exists in the container image: ``` stack: test/stateful-bind-file services: test: image: redis stateful: true volumes: - /tmp/bashrc:/root/.bashrc ``` This fails to create...
The CoreOS beta 1688.3.0 Linux 4.14.24-coreos kernel will panic as soon as two weave nodes establish an active vxlan connection. This is a CoreOS issue that is not specific to...
The `kontena/lb` image will only enable the http listener if linked to any http services, configured with an `KONTENA_LB_HEALTH_URI`, or if configured with `SSL_CERTS`/`SSL_CERT_*`: https://github.com/kontena/kontena-loadbalancer/blob/8c38532ddadb71e0d92f0debd3a77eb9ece36994/lib/kontena/templates/haproxy/main.text.erb#L32-L34 Where those SSL certs were...
The `Kontena::Launchers::Etcd` launcher uses [`#update_membership`](https://github.com/kontena/kontena/blob/master/agent/lib/kontena/launchers/etcd.rb#L111) to determine the etcd `--initial-cluster-state=new|existing` used when creating a new `kontena-etcd` container, and also manage the node's etcd cluster membership if the etcd cluster is...
Requires #3299 Fix service scale to set service running state Maybe fixes #2710 to cancel running service deploys if service is redeployed Change the `kontena service start/stop` => `POST /v1/services/.../{start,stop}`=>...