cni-daemonset.yaml.j2 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. spec:
  11. template:
  12. metadata:
  13. labels:
  14. tier: node
  15. app: kuryr
  16. spec:
  17. hostNetwork: true
  18. tolerations:
  19. - key: node-role.kubernetes.io/master
  20. operator: Exists
  21. effect: NoSchedule
  22. serviceAccountName: kuryr-controller
  23. containers:
  24. - name: kuryr-cni
  25. image: kuryr/cni:latest
  26. imagePullPolicy: IfNotPresent
  27. command: [ "cni_ds_init" ]
  28. securityContext:
  29. privileged: true
  30. volumeMounts:
  31. - name: bin
  32. mountPath: /opt/cni/bin
  33. - name: net-conf
  34. mountPath: /etc/cni/net.d
  35. - name: config-volume
  36. mountPath: /tmp/kuryr/kuryr.conf
  37. subPath: kuryr-cni.conf
  38. - name: etc
  39. mountPath: /etc
  40. volumes:
  41. - name: bin
  42. hostPath:
  43. path: {{ cni_bin_dir }}
  44. - name: net-conf
  45. hostPath:
  46. path: /etc/cni/net.d
  47. - name: config-volume
  48. configMap:
  49. name: kuryr-config
  50. - name: etc
  51. hostPath:
  52. path: /etc