mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 10:19:35 +00:00
* Use the container linux update operator to coordinate reboots * Stop using locksmithd for reboot coordination * etcd TLS assets now only need to be distributed to controller nodes which are etcd peers
24 lines
568 B
YAML
24 lines
568 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: container-linux-update-operator
|
|
namespace: kube-system
|
|
spec:
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: container-linux-update-operator
|
|
spec:
|
|
containers:
|
|
- name: update-operator
|
|
image: quay.io/coreos/container-linux-update-operator:v0.2.1
|
|
command:
|
|
- "/bin/update-operator"
|
|
- "--manage-agent=false"
|
|
env:
|
|
- name: POD_NAMESPACE
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: metadata.namespace
|