controller-deployment.yaml.j2 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # More info about the template: https://docs.openstack.org/kuryr-kubernetes/latest/installation/containerized.html#generating-kuryr-resource-definitions-for-kubernetes
  2. apiVersion: apps/v1beta1
  3. kind: Deployment
  4. metadata:
  5. labels:
  6. name: kuryr-controller
  7. name: kuryr-controller
  8. namespace: {{ kuryr_namespace }}
  9. spec:
  10. replicas: 1
  11. template:
  12. metadata:
  13. labels:
  14. name: kuryr-controller
  15. name: kuryr-controller
  16. spec:
  17. serviceAccountName: kuryr-controller
  18. automountServiceAccountToken: true
  19. hostNetwork: true
  20. containers:
  21. - image: kuryr/controller:latest
  22. imagePullPolicy: IfNotPresent
  23. name: controller
  24. terminationMessagePath: "/dev/termination-log"
  25. # FIXME(dulek): This shouldn't be required, but without it selinux is
  26. # complaining about access to kuryr.conf.
  27. securityContext:
  28. privileged: true
  29. runAsUser: 0
  30. volumeMounts:
  31. - name: config-volume
  32. mountPath: "/etc/kuryr/kuryr.conf"
  33. subPath: kuryr.conf
  34. volumes:
  35. - name: config-volume
  36. configMap:
  37. name: kuryr-config
  38. defaultMode: 0666
  39. restartPolicy: Always