etcd-proxy-daemonset.yml.j2 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. ---
  2. apiVersion: extensions/v1beta1
  3. kind: DaemonSet
  4. metadata:
  5. name: contiv-etcd-proxy
  6. namespace: kube-system
  7. spec:
  8. updateStrategy:
  9. type: RollingUpdate
  10. selector:
  11. matchLabels:
  12. name: contiv-etcd-proxy
  13. template:
  14. metadata:
  15. namespace: kube-system
  16. labels:
  17. name: contiv-etcd-proxy
  18. annotations:
  19. scheduler.alpha.kubernetes.io/critical-pod: ""
  20. spec:
  21. serviceAccountName: contiv-etcd
  22. hostNetwork: true
  23. affinity:
  24. nodeAffinity:
  25. requiredDuringSchedulingIgnoredDuringExecution:
  26. nodeSelectorTerms:
  27. - matchExpressions:
  28. - key: kubernetes.io/hostname
  29. operator: NotIn
  30. values:
  31. {% for node in groups.oo_masters_to_config %}
  32. - "{{ node }}"
  33. {% endfor %}
  34. tolerations:
  35. - key: node-role.kubernetes.io/master
  36. effect: NoSchedule
  37. containers:
  38. - name: contiv-etcd-proxy
  39. image: "{{ contiv_etcd_image_repo }}:{{ contiv_etcd_image_tag }}"
  40. command:
  41. - etcd
  42. - "--proxy=on"
  43. - "--listen-client-urls=http://127.0.0.1:{{ contiv_etcd_port }}"
  44. - "--advertise-client-urls=http://127.0.0.1:{{ contiv_etcd_port }}"
  45. - "--initial-cluster={{ contiv_etcd_peers }}"
  46. - "--data-dir={{ contiv_etcd_data_dir }}"
  47. volumeMounts:
  48. - name: contiv-etcd-data-dir
  49. mountPath: "{{ contiv_etcd_data_dir }}"
  50. securityContext:
  51. runAsUser: "{{ contiv_etcd_system_uid }}"
  52. fsGroup: "{{ contiv_etcd_system_gid }}"
  53. volumes:
  54. - name: contiv-etcd-data-dir
  55. emptyDir: {}