nuage-node-config-daemonset.j2 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. # This ConfigMap is used to configure Nuage VSP configuration
  2. kind: ConfigMap
  3. apiVersion: v1
  4. metadata:
  5. name: nuage-config
  6. namespace: kube-system
  7. data:
  8. # This will generate the required Nuage vsp-openshift.yaml
  9. # config on each slave node
  10. plugin_yaml_config: |
  11. clientCert: {{ nuage_node_config_dsets_mount_dir }}/vsp-openshift/client.crt
  12. # The key to the certificate in clientCert above
  13. clientKey: {{ nuage_node_config_dsets_mount_dir }}/vsp-openshift/client.key
  14. # The certificate authority's certificate for the local kubelet. Usually the
  15. # same as the CA cert used to create the client Cert/Key pair.
  16. CACert: {{ nuage_node_config_dsets_mount_dir }}/vsp-openshift/ca.crt
  17. # Name of the enterprise in which pods will reside
  18. enterpriseName: {{ enterprise }}
  19. # Name of the domain in which pods will reside
  20. domainName: {{ domain }}
  21. # Name of the VSD user in admin group
  22. vsdUser: {{ vsd_user }}
  23. # IP address and port number of master API server
  24. masterApiServer: {{ api_server_url }}
  25. # REST server URL
  26. nuageMonRestServer: https://{{ openshift_master_cluster_hostname }}:{{ nuage_mon_rest_server_port }}
  27. # Bridge name for the docker bridge
  28. dockerBridgeName: docker0
  29. # Certificate for connecting to the openshift monitor REST api
  30. nuageMonClientCert: {{ nuage_node_config_dsets_mount_dir }}/vsp-openshift/nuageMonClient.crt
  31. # Key to the certificate in restClientCert
  32. nuageMonClientKey: {{ nuage_node_config_dsets_mount_dir }}/vsp-openshift/nuageMonClient.key
  33. # CA certificate for verifying the master's rest server
  34. nuageMonServerCA: {{ nuage_node_config_dsets_mount_dir }}/vsp-openshift/nuageMonCA.crt
  35. # This will generate the required Nuage CNI yaml configuration
  36. cni_yaml_config: |
  37. vrsendpoint: "/var/run/openvswitch/db.sock"
  38. vrsbridge: "alubr0"
  39. monitorinterval: 60
  40. cniversion: 0.2.0
  41. loglevel: "info"
  42. portresolvetimer: 60
  43. logfilesize: 1
  44. vrsconnectionchecktimer: 180
  45. mtu: 1450
  46. staleentrytimeout: 600
  47. ---
  48. # This manifest installs Nuage CNI plugins and network config on
  49. # each worker node in Openshift cluster
  50. kind: DaemonSet
  51. apiVersion: extensions/v1beta1
  52. metadata:
  53. name: nuage-cni-ds
  54. namespace: kube-system
  55. labels:
  56. k8s-app: nuage-cni-ds
  57. spec:
  58. selector:
  59. matchLabels:
  60. k8s-app: nuage-cni-ds
  61. updateStrategy:
  62. type: RollingUpdate
  63. template:
  64. metadata:
  65. labels:
  66. k8s-app: nuage-cni-ds
  67. spec:
  68. hostNetwork: true
  69. containers:
  70. # This container installs Nuage CNI binaries
  71. # and CNI network config file on each node.
  72. - name: install-nuage-cni
  73. image: nuage/cni:{{ nuage_cni_container_image_version }}
  74. command: ["/install-cni.sh"]
  75. args: ["nuage-cni-openshift", "{{ slave_host_type }}"]
  76. securityContext:
  77. privileged: true
  78. env:
  79. # Nuage vsp-openshift.yaml config to install on each slave node.
  80. - name: NUAGE_VSP_CONFIG
  81. valueFrom:
  82. configMapKeyRef:
  83. name: nuage-config
  84. key: plugin_yaml_config
  85. # Nuage nuage-cni.yaml config to install on each slave node.
  86. - name: NUAGE_CNI_YAML_CONFIG
  87. valueFrom:
  88. configMapKeyRef:
  89. name: nuage-config
  90. key: cni_yaml_config
  91. # Nuage cluster network CIDR for iptables configuration
  92. - name: NUAGE_CLUSTER_NW_CIDR
  93. value: "{{ openshift_cluster_network_cidr }}"
  94. volumeMounts:
  95. - mountPath: /host/opt/cni/bin
  96. name: cni-bin-dir
  97. - mountPath: /host/etc/cni/net.d
  98. name: cni-net-dir
  99. - mountPath: /etc/default
  100. name: cni-yaml-dir
  101. - mountPath: /var/run
  102. name: var-run-dir
  103. - mountPath: /var/log
  104. name: cni-log-dir
  105. - mountPath: {{ nuage_node_config_dsets_mount_dir }}
  106. name: var-usr-share-dir
  107. - mountPath: /usr/share/
  108. name: usr-share-dir
  109. volumes:
  110. - name: cni-bin-dir
  111. hostPath:
  112. path: {{ nuage_cni_bin_dsets_mount_dir }}
  113. - name: cni-net-dir
  114. hostPath:
  115. path: {{ nuage_cni_netconf_dsets_mount_dir }}
  116. - name: cni-yaml-dir
  117. hostPath:
  118. path: /etc/default
  119. - name: var-run-dir
  120. hostPath:
  121. path: /var/run
  122. - name: cni-log-dir
  123. hostPath:
  124. path: /var/log
  125. - name: var-usr-share-dir
  126. hostPath:
  127. path: {{ nuage_node_config_dsets_mount_dir }}
  128. - name: usr-share-dir
  129. hostPath:
  130. path: /usr/share/
  131. ---
  132. # This manifest installs Nuage VRS on
  133. # each worker node in an Openshift cluster.
  134. kind: DaemonSet
  135. apiVersion: extensions/v1beta1
  136. metadata:
  137. name: nuage-vrs-ds
  138. namespace: kube-system
  139. labels:
  140. k8s-app: nuage-vrs-ds
  141. spec:
  142. selector:
  143. matchLabels:
  144. k8s-app: nuage-vrs-ds
  145. updateStrategy:
  146. type: RollingUpdate
  147. template:
  148. metadata:
  149. labels:
  150. k8s-app: nuage-vrs-ds
  151. spec:
  152. hostNetwork: true
  153. containers:
  154. # This container installs Nuage VRS running as a
  155. # container on each worker node
  156. - name: install-nuage-vrs
  157. image: nuage/vrs:{{ nuage_vrs_container_image_version }}
  158. securityContext:
  159. privileged: true
  160. env:
  161. # Configure parameters for VRS openvswitch file
  162. - name: NUAGE_ACTIVE_CONTROLLER
  163. value: "{{ vsc_active_ip }}"
  164. - name: NUAGE_STANDBY_CONTROLLER
  165. value: "{{ vsc_standby_ip }}"
  166. - name: NUAGE_PLATFORM
  167. value: '"kvm, k8s"'
  168. - name: NUAGE_K8S_SERVICE_IPV4_SUBNET
  169. value: '172.30.0.0\/16'
  170. - name: NUAGE_NETWORK_UPLINK_INTF
  171. value: "eth0"
  172. volumeMounts:
  173. - mountPath: /var/run
  174. name: vrs-run-dir
  175. - mountPath: /var/log
  176. name: vrs-log-dir
  177. - mountPath: /sys/module
  178. name: sys-mod-dir
  179. readOnly: true
  180. - mountPath: /lib/modules
  181. name: lib-mod-dir
  182. readOnly: true
  183. volumes:
  184. - name: vrs-run-dir
  185. hostPath:
  186. path: /var/run
  187. - name: vrs-log-dir
  188. hostPath:
  189. path: /var/log
  190. - name: sys-mod-dir
  191. hostPath:
  192. path: /sys/module
  193. - name: lib-mod-dir
  194. hostPath:
  195. path: /lib/modules