nuage-master-config-daemonset.j2 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. # This ConfigMap is used to configure Nuage VSP configuration on master nodes
  2. kind: ConfigMap
  3. apiVersion: v1
  4. metadata:
  5. name: nuage-master-config
  6. namespace: kube-system
  7. data:
  8. # This will generate the required Nuage configuration
  9. # on master nodes
  10. monitor_yaml_config: |
  11. # .kubeconfig that includes the nuage service account
  12. kubeConfig: {{ nuage_master_crt_dir }}/nuage.kubeconfig
  13. # name of the nuage service account, or another account with 'cluster-reader'
  14. # permissions
  15. # Openshift master config file
  16. masterConfig: /etc/origin/master/master-config.yaml
  17. # URL of the VSD Architect
  18. vsdApiUrl: {{ vsd_api_url }}
  19. # API version to query against. Usually "v3_2"
  20. vspVersion: {{ vsp_version }}
  21. # Name of the enterprise in which pods will reside
  22. enterpriseName: {{ enterprise }}
  23. # Name of the domain in which pods will reside
  24. domainName: {{ domain }}
  25. # VSD generated user certificate file location on master node
  26. userCertificateFile: {{ nuage_master_crt_dir }}/{{ vsd_user }}.pem
  27. # VSD generated user key file location on master node
  28. userKeyFile: {{ nuage_master_crt_dir }}/{{ vsd_user }}-Key.pem
  29. # Location where logs should be saved
  30. log_dir: /var/log/nuage-openshift-monitor
  31. # Monitor rest server parameters
  32. # Logging level for the nuage openshift monitor
  33. # allowed options are: 0 => INFO, 1 => WARNING, 2 => ERROR, 3 => FATAL
  34. logLevel: 0
  35. # Parameters related to the nuage monitor REST server
  36. nuageMonServer:
  37. URL: 0.0.0.0:9443
  38. certificateDirectory: {{ nuage_master_crt_dir }}
  39. clientCA: ""
  40. serverCertificate: ""
  41. serverKey: ""
  42. # etcd config required for HA
  43. etcdClientConfig:
  44. ca: {{ nuage_master_crt_dir }}/nuageEtcd-ca.crt
  45. certFile: {{ nuage_master_crt_dir }}/nuageEtcd-client.crt
  46. keyFile: {{ nuage_master_crt_dir }}/nuageEtcd-client.key
  47. urls:
  48. {% for etcd_url in openshift_master_etcd_urls %}
  49. - {{ etcd_url }}
  50. {% endfor %}
  51. ---
  52. # This manifest installs Nuage master node configuration on
  53. # each Nuage master node in a cluster.
  54. kind: DaemonSet
  55. apiVersion: extensions/v1beta1
  56. metadata:
  57. name: nuage-master-config
  58. namespace: kube-system
  59. labels:
  60. k8s-app: nuage-master-config
  61. spec:
  62. selector:
  63. matchLabels:
  64. k8s-app: nuage-master-config
  65. updateStrategy:
  66. type: RollingUpdate
  67. template:
  68. metadata:
  69. labels:
  70. k8s-app: nuage-master-config
  71. spec:
  72. hostNetwork: true
  73. nodeSelector:
  74. install-monitor: "true"
  75. containers:
  76. # This container configures Nuage Master node
  77. - name: install-nuage-master-config
  78. image: nuage/master:{{ nuage_monitor_container_image_version }}
  79. ports:
  80. - containerPort: 9443
  81. hostPort: 9443
  82. command: ["/configure-master.sh"]
  83. args: ["ose", "{{ master_host_type }}"]
  84. securityContext:
  85. privileged: true
  86. env:
  87. # nuage-openshift-monitor.yaml config to install on each slave node.
  88. - name: NUAGE_MASTER_VSP_CONFIG
  89. valueFrom:
  90. configMapKeyRef:
  91. name: nuage-master-config
  92. key: monitor_yaml_config
  93. volumeMounts:
  94. - mountPath: /var/log
  95. name: cni-log-dir
  96. - mountPath: {{ nuage_master_config_dsets_mount_dir }}
  97. name: usr-share-dir
  98. - mountPath: /etc/origin/
  99. name: master-config-dir
  100. volumes:
  101. - name: cni-log-dir
  102. hostPath:
  103. path: /var/log
  104. - name: usr-share-dir
  105. hostPath:
  106. path: {{ nuage_master_config_dsets_mount_dir }}
  107. - name: master-config-dir
  108. hostPath:
  109. path: /etc/origin/