etcd-daemonset.yml.j2 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. ---
  2. apiVersion: extensions/v1beta1
  3. kind: DaemonSet
  4. metadata:
  5. name: contiv-etcd
  6. namespace: kube-system
  7. spec:
  8. updateStrategy:
  9. type: RollingUpdate
  10. selector:
  11. matchLabels:
  12. name: contiv-etcd
  13. template:
  14. metadata:
  15. namespace: kube-system
  16. labels:
  17. name: contiv-etcd
  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: In
  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. initContainers:
  38. - name: contiv-etcd-init
  39. image: "{{ contiv_etcd_init_image_repo }}:{{ contiv_etcd_init_image_tag }}"
  40. env:
  41. - name: ETCD_INIT_ARGSFILE
  42. value: "{{ contiv_etcd_conf_dir }}/contiv-etcd-args"
  43. - name: ETCD_INIT_LISTEN_PORT
  44. value: "{{ contiv_etcd_port }}"
  45. - name: ETCD_INIT_PEER_PORT
  46. value: "{{ contiv_etcd_peer_port }}"
  47. - name: ETCD_INIT_CLUSTER
  48. value: "{{ contiv_etcd_peers }}"
  49. - name: ETCD_INIT_DATA_DIR
  50. value: "{{ contiv_etcd_data_dir }}"
  51. volumeMounts:
  52. - name: contiv-etcd-conf-dir
  53. mountPath: "{{ contiv_etcd_conf_dir }}"
  54. securityContext:
  55. runAsUser: "{{ contiv_etcd_system_uid }}"
  56. fsGroup: "{{ contiv_etcd_system_gid }}"
  57. containers:
  58. - name: contiv-etcd
  59. image: "{{ contiv_etcd_image_repo }}:{{ contiv_etcd_image_tag }}"
  60. command:
  61. - sh
  62. - -c
  63. - 'exec etcd $(cat "$ETCD_INIT_ARGSFILE")'
  64. env:
  65. - name: ETCD_INIT_ARGSFILE
  66. value: "{{ contiv_etcd_conf_dir }}/contiv-etcd-args"
  67. volumeMounts:
  68. - name: contiv-etcd-conf-dir
  69. mountPath: "{{ contiv_etcd_conf_dir }}"
  70. - name: contiv-etcd-data-dir
  71. mountPath: "{{ contiv_etcd_data_dir }}"
  72. securityContext:
  73. runAsUser: "{{ contiv_etcd_system_uid }}"
  74. fsGroup: "{{ contiv_etcd_system_gid }}"
  75. volumes:
  76. - name: contiv-etcd-data-dir
  77. hostPath:
  78. type: DirectoryOrCreate
  79. path: "{{ contiv_etcd_data_dir }}"
  80. - name: contiv-etcd-conf-dir
  81. hostPath:
  82. type: DirectoryOrCreate
  83. path: "{{ contiv_etcd_conf_dir }}"