cni-daemonset.yaml.j2 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. # More info about the template: https://docs.openstack.org/kuryr-kubernetes/latest/installation/containerized.html#generating-kuryr-resource-definitions-for-kubernetes
  2. apiVersion: extensions/v1beta1
  3. kind: DaemonSet
  4. metadata:
  5. name: kuryr-cni-ds
  6. namespace: {{ kuryr_namespace }}
  7. labels:
  8. tier: node
  9. app: kuryr
  10. annotations:
  11. image.openshift.io/triggers: |
  12. [
  13. {"from":{"kind":"ImageStreamTag","name":"node:v3.10"},"fieldPath":"spec.template.spec.initContainers[?(@.name==\"install-cni-plugins\")].image"}
  14. ]
  15. spec:
  16. template:
  17. metadata:
  18. labels:
  19. tier: node
  20. app: kuryr
  21. spec:
  22. hostNetwork: true
  23. tolerations:
  24. - key: node-role.kubernetes.io/master
  25. operator: Exists
  26. effect: NoSchedule
  27. serviceAccountName: kuryr-controller
  28. initContainers:
  29. - name: install-cni-plugins
  30. image: " "
  31. command:
  32. - /bin/bash
  33. - -c
  34. - |
  35. #!/bin/bash
  36. set -ex
  37. # Take over network functions on the node
  38. rm -Rf /host-cni-bin/*
  39. cp -Rf /opt/cni/bin/* /host-cni-bin/
  40. volumeMounts:
  41. - name: bin
  42. mountPath: /host-cni-bin
  43. securityContext:
  44. privileged: true
  45. containers:
  46. - name: kuryr-cni
  47. image: {{ openshift_openstack_kuryr_cni_image }}
  48. imagePullPolicy: IfNotPresent
  49. command: [ "cni_ds_init" ]
  50. env:
  51. - name: CNI_DAEMON
  52. value: "True"
  53. - name: KUBERNETES_NODE_NAME
  54. valueFrom:
  55. fieldRef:
  56. fieldPath: spec.nodeName
  57. - name: KURYR_CNI_POD_NAME
  58. valueFrom:
  59. fieldRef:
  60. fieldPath: metadata.name
  61. securityContext:
  62. privileged: true
  63. volumeMounts:
  64. - name: bin
  65. mountPath: /opt/cni/bin
  66. - name: net-conf
  67. mountPath: /etc/cni/net.d
  68. - name: config-volume
  69. mountPath: /etc/kuryr/kuryr.conf
  70. subPath: kuryr-cni.conf
  71. - name: proc
  72. mountPath: /host_proc
  73. - name: openvswitch
  74. mountPath: /var/run/openvswitch
  75. {% if enable_kuryr_cni_probes|default(true)|bool %}
  76. readinessProbe:
  77. httpGet:
  78. path: /ready
  79. port: {{ kuryr_cni_healthcheck_port }}
  80. scheme: HTTP
  81. initialDelaySeconds: 15
  82. timeoutSeconds: 5
  83. livenessProbe:
  84. httpGet:
  85. path: /alive
  86. port: {{ kuryr_cni_healthcheck_port }}
  87. initialDelaySeconds: 15
  88. {% endif %}
  89. volumes:
  90. - name: bin
  91. hostPath:
  92. path: {{ cni_bin_dir }}
  93. - name: net-conf
  94. hostPath:
  95. path: /etc/cni/net.d
  96. - name: config-volume
  97. configMap:
  98. name: kuryr-config
  99. - name: proc
  100. hostPath:
  101. path: /proc
  102. - name: openvswitch
  103. hostPath:
  104. path: /var/run/openvswitch