nuage-node-config-daemonset.j2 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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: {{ nuage_mon_rest_server_url }}
  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. # Nuage vport mtu size
  36. interfaceMTU: {{ nuage_vport_mtu }}
  37. # Logging level for the plugin
  38. # allowed options are: "dbg", "info", "warn", "err", "emer", "off"
  39. logLevel: 3
  40. # This will generate the required Nuage CNI yaml configuration
  41. cni_yaml_config: |
  42. vrsendpoint: "/var/run/openvswitch/db.sock"
  43. vrsbridge: "alubr0"
  44. monitorinterval: 60
  45. cniversion: 0.2.0
  46. loglevel: "info"
  47. portresolvetimer: 60
  48. logfilesize: 1
  49. vrsconnectionchecktimer: 180
  50. mtu: 1450
  51. staleentrytimeout: 600
  52. ---
  53. # This manifest installs Nuage CNI plugins and network config on
  54. # each worker node in Openshift cluster
  55. kind: DaemonSet
  56. apiVersion: extensions/v1beta1
  57. metadata:
  58. name: nuage-cni-ds
  59. namespace: kube-system
  60. labels:
  61. k8s-app: nuage-cni-ds
  62. spec:
  63. selector:
  64. matchLabels:
  65. k8s-app: nuage-cni-ds
  66. template:
  67. metadata:
  68. labels:
  69. k8s-app: nuage-cni-ds
  70. spec:
  71. hostNetwork: true
  72. tolerations:
  73. - key: node-role.kubernetes.io/master
  74. effect: NoSchedule
  75. operator: Exists
  76. containers:
  77. # This container installs Nuage CNI binaries
  78. # and CNI network config file on each node.
  79. - name: install-nuage-cni
  80. image: nuage/cni:{{ nuage_cni_container_image_version }}
  81. command: ["/install-cni.sh"]
  82. args: ["nuage-cni-openshift", "{{ slave_host_type }}"]
  83. securityContext:
  84. privileged: true
  85. env:
  86. # Nuage vsp-openshift.yaml config to install on each slave node.
  87. - name: NUAGE_VSP_CONFIG
  88. valueFrom:
  89. configMapKeyRef:
  90. name: nuage-config
  91. key: plugin_yaml_config
  92. # Nuage nuage-cni.yaml config to install on each slave node.
  93. - name: NUAGE_CNI_YAML_CONFIG
  94. valueFrom:
  95. configMapKeyRef:
  96. name: nuage-config
  97. key: cni_yaml_config
  98. # Nuage cluster network CIDR for iptables configuration
  99. - name: NUAGE_CLUSTER_NW_CIDR
  100. value: "{{ hostvars[groups.oo_first_master.0].openshift.master.sdn_cluster_network_cidr }}"
  101. volumeMounts:
  102. - mountPath: /host/opt/cni/bin
  103. name: cni-bin-dir
  104. - mountPath: /host/etc/cni/net.d
  105. name: cni-net-dir
  106. - mountPath: /etc/default
  107. name: cni-yaml-dir
  108. - mountPath: /var/run
  109. name: var-run-dir
  110. - mountPath: /var/log
  111. name: cni-log-dir
  112. - mountPath: {{ nuage_node_config_dsets_mount_dir }}
  113. name: usr-share-dir
  114. volumes:
  115. - name: cni-bin-dir
  116. hostPath:
  117. path: {{ nuage_cni_bin_dsets_mount_dir }}
  118. - name: cni-net-dir
  119. hostPath:
  120. path: {{ nuage_cni_netconf_dsets_mount_dir }}
  121. - name: cni-yaml-dir
  122. hostPath:
  123. path: /etc/default
  124. - name: var-run-dir
  125. hostPath:
  126. path: /var/run
  127. - name: cni-log-dir
  128. hostPath:
  129. path: /var/log
  130. - name: usr-share-dir
  131. hostPath:
  132. path: {{ nuage_node_config_dsets_mount_dir }}
  133. ---
  134. # This manifest installs Nuage VRS on
  135. # each worker node in an Openshift cluster.
  136. kind: DaemonSet
  137. apiVersion: extensions/v1beta1
  138. metadata:
  139. name: nuage-vrs-ds
  140. namespace: kube-system
  141. labels:
  142. k8s-app: nuage-vrs-ds
  143. spec:
  144. selector:
  145. matchLabels:
  146. k8s-app: nuage-vrs-ds
  147. updateStrategy:
  148. type: RollingUpdate
  149. template:
  150. metadata:
  151. labels:
  152. k8s-app: nuage-vrs-ds
  153. spec:
  154. hostNetwork: true
  155. tolerations:
  156. - key: node-role.kubernetes.io/master
  157. effect: NoSchedule
  158. operator: Exists
  159. containers:
  160. # This container installs Nuage VRS running as a
  161. # container on each worker node
  162. - name: install-nuage-vrs
  163. image: nuage/vrs:{{ nuage_vrs_container_image_version }}
  164. securityContext:
  165. privileged: true
  166. env:
  167. # Configure parameters for VRS openvswitch file
  168. - name: NUAGE_ACTIVE_CONTROLLER
  169. value: "{{ vsc_active_ip }}"
  170. - name: NUAGE_STANDBY_CONTROLLER
  171. value: "{{ vsc_standby_ip }}"
  172. - name: NUAGE_PLATFORM
  173. value: '"kvm, k8s"'
  174. - name: NUAGE_K8S_SERVICE_IPV4_SUBNET
  175. value: '192.168.0.0\/16'
  176. - name: NUAGE_NETWORK_UPLINK_INTF
  177. value: "eth0"
  178. volumeMounts:
  179. - mountPath: /var/run
  180. name: vrs-run-dir
  181. - mountPath: /var/log
  182. name: vrs-log-dir
  183. - mountPath: /sys/module
  184. name: sys-mod-dir
  185. readOnly: true
  186. - mountPath: /lib/modules
  187. name: lib-mod-dir
  188. readOnly: true
  189. volumes:
  190. - name: vrs-run-dir
  191. hostPath:
  192. path: /var/run
  193. - name: vrs-log-dir
  194. hostPath:
  195. path: /var/log
  196. - name: sys-mod-dir
  197. hostPath:
  198. path: /sys/module
  199. - name: lib-mod-dir
  200. hostPath:
  201. path: /lib/modules