sdn-ovs.yaml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. kind: DaemonSet
  2. apiVersion: apps/v1
  3. metadata:
  4. name: ovs
  5. namespace: openshift-sdn
  6. annotations:
  7. kubernetes.io/description: |
  8. This daemon set launches the openvswitch daemon.
  9. image.openshift.io/triggers: |
  10. [{"from":{"kind":"ImageStreamTag","name":"node:v3.9"},"fieldPath":"spec.template.spec.containers[?(@.name==\"openvswitch\")].image"}]
  11. spec:
  12. selector:
  13. matchLabels:
  14. app: ovs
  15. updateStrategy:
  16. type: RollingUpdate
  17. template:
  18. metadata:
  19. labels:
  20. app: ovs
  21. component: network
  22. type: infra
  23. openshift.io/component: network
  24. annotations:
  25. scheduler.alpha.kubernetes.io/critical-pod: ''
  26. spec:
  27. # Requires fairly broad permissions - ability to read all services and network functions as well
  28. # as all pods.
  29. serviceAccountName: sdn
  30. hostNetwork: true
  31. containers:
  32. - name: openvswitch
  33. image: " "
  34. command:
  35. - /bin/bash
  36. - -c
  37. - |
  38. #!/bin/bash
  39. set -euo pipefail
  40. function quit {
  41. /usr/share/openvswitch/scripts/ovs-ctl stop
  42. exit 0
  43. }
  44. trap quit SIGTERM
  45. /usr/share/openvswitch/scripts/ovs-ctl start --system-id=random
  46. while true; do sleep 5; done
  47. securityContext:
  48. runAsUser: 0
  49. privileged: true
  50. volumeMounts:
  51. - mountPath: /lib/modules
  52. name: host-modules
  53. readOnly: true
  54. - mountPath: /run/openvswitch
  55. name: host-run-ovs
  56. - mountPath: /var/run/openvswitch
  57. name: host-run-ovs
  58. - mountPath: /sys
  59. name: host-sys
  60. readOnly: true
  61. - mountPath: /etc/openvswitch
  62. name: host-config-openvswitch
  63. resources:
  64. requests:
  65. cpu: 100m
  66. memory: 200Mi
  67. limits:
  68. cpu: 200m
  69. memory: 300Mi
  70. volumes:
  71. - name: host-modules
  72. hostPath:
  73. path: /lib/modules
  74. - name: host-run-ovs
  75. hostPath:
  76. path: /run/openvswitch
  77. - name: host-sys
  78. hostPath:
  79. path: /sys
  80. - name: host-config-openvswitch
  81. hostPath:
  82. path: /etc/origin/openvswitch