nuage-node-config-daemonset.j2 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. template:
  62. metadata:
  63. labels:
  64. k8s-app: nuage-cni-ds
  65. spec:
  66. hostNetwork: true
  67. containers:
  68. # This container installs Nuage CNI binaries
  69. # and CNI network config file on each node.
  70. - name: install-nuage-cni
  71. image: nuage/cni:{{ nuage_cni_container_image_version }}
  72. command: ["/install-cni.sh"]
  73. args: ["nuage-cni-openshift", "{{ slave_host_type }}"]
  74. securityContext:
  75. privileged: true
  76. env:
  77. # Nuage vsp-openshift.yaml config to install on each slave node.
  78. - name: NUAGE_VSP_CONFIG
  79. valueFrom:
  80. configMapKeyRef:
  81. name: nuage-config
  82. key: plugin_yaml_config
  83. # Nuage nuage-cni.yaml config to install on each slave node.
  84. - name: NUAGE_CNI_YAML_CONFIG
  85. valueFrom:
  86. configMapKeyRef:
  87. name: nuage-config
  88. key: cni_yaml_config
  89. # Nuage cluster network CIDR for iptables configuration
  90. - name: NUAGE_CLUSTER_NW_CIDR
  91. value: "{{ hostvars[groups.oo_first_master.0].openshift.master.sdn_cluster_network_cidr }}"
  92. volumeMounts:
  93. - mountPath: /host/opt/cni/bin
  94. name: cni-bin-dir
  95. - mountPath: /host/etc/cni/net.d
  96. name: cni-net-dir
  97. - mountPath: /etc/default
  98. name: cni-yaml-dir
  99. - mountPath: /var/run
  100. name: var-run-dir
  101. - mountPath: /var/log
  102. name: cni-log-dir
  103. - mountPath: {{ nuage_node_config_dsets_mount_dir }}
  104. name: usr-share-dir
  105. volumes:
  106. - name: cni-bin-dir
  107. hostPath:
  108. path: {{ nuage_cni_bin_dsets_mount_dir }}
  109. - name: cni-net-dir
  110. hostPath:
  111. path: {{ nuage_cni_netconf_dsets_mount_dir }}
  112. - name: cni-yaml-dir
  113. hostPath:
  114. path: /etc/default
  115. - name: var-run-dir
  116. hostPath:
  117. path: /var/run
  118. - name: cni-log-dir
  119. hostPath:
  120. path: /var/log
  121. - name: usr-share-dir
  122. hostPath:
  123. path: {{ nuage_node_config_dsets_mount_dir }}
  124. ---
  125. # This manifest installs Nuage VRS on
  126. # each worker node in an Openshift cluster.
  127. kind: DaemonSet
  128. apiVersion: extensions/v1beta1
  129. metadata:
  130. name: nuage-vrs-ds
  131. namespace: kube-system
  132. labels:
  133. k8s-app: nuage-vrs-ds
  134. spec:
  135. selector:
  136. matchLabels:
  137. k8s-app: nuage-vrs-ds
  138. updateStrategy:
  139. type: RollingUpdate
  140. template:
  141. metadata:
  142. labels:
  143. k8s-app: nuage-vrs-ds
  144. spec:
  145. hostNetwork: true
  146. containers:
  147. # This container installs Nuage VRS running as a
  148. # container on each worker node
  149. - name: install-nuage-vrs
  150. image: nuage/vrs:{{ nuage_vrs_container_image_version }}
  151. securityContext:
  152. privileged: true
  153. env:
  154. # Configure parameters for VRS openvswitch file
  155. - name: NUAGE_ACTIVE_CONTROLLER
  156. value: "{{ vsc_active_ip }}"
  157. - name: NUAGE_STANDBY_CONTROLLER
  158. value: "{{ vsc_standby_ip }}"
  159. - name: NUAGE_PLATFORM
  160. value: '"kvm, k8s"'
  161. - name: NUAGE_K8S_SERVICE_IPV4_SUBNET
  162. value: '192.168.0.0\/16'
  163. - name: NUAGE_NETWORK_UPLINK_INTF
  164. value: "eth0"
  165. volumeMounts:
  166. - mountPath: /var/run
  167. name: vrs-run-dir
  168. - mountPath: /var/log
  169. name: vrs-log-dir
  170. - mountPath: /sys/module
  171. name: sys-mod-dir
  172. readOnly: true
  173. - mountPath: /lib/modules
  174. name: lib-mod-dir
  175. readOnly: true
  176. volumes:
  177. - name: vrs-run-dir
  178. hostPath:
  179. path: /var/run
  180. - name: vrs-log-dir
  181. hostPath:
  182. path: /var/log
  183. - name: sys-mod-dir
  184. hostPath:
  185. path: /sys/module
  186. - name: lib-mod-dir
  187. hostPath:
  188. path: /lib/modules