console-template.yaml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. apiVersion: template.openshift.io/v1
  2. kind: Template
  3. metadata:
  4. name: openshift-console
  5. annotations:
  6. openshift.io/display-name: OpenShift Console
  7. description: The server for the OpenShift console.
  8. iconClass: icon-openshift
  9. tags: openshift,infra
  10. openshift.io/support-url: https://access.redhat.com
  11. openshift.io/provider-display-name: Red Hat, Inc.
  12. parameters:
  13. - name: IMAGE
  14. value: openshift/origin-console:latest
  15. required: true
  16. - name: NAMESPACE
  17. # This namespace cannot be changed. Only `openshift-console` is supported.
  18. value: openshift-console
  19. required: true
  20. - name: CONSOLE_HOSTNAME
  21. value: console.router.default.svc.cluster.local
  22. required: true
  23. - name: NODE_SELECTOR
  24. value: "{}"
  25. required: true
  26. - name: REPLICA_COUNT
  27. value: "1"
  28. required: true
  29. - name: SERVER_CONFIG
  30. required: true
  31. - name: OAUTH_SECRET
  32. generate: expression
  33. from: "[a-zA-Z0-9]{32}"
  34. objects:
  35. # to create the web console server
  36. - apiVersion: apps/v1
  37. kind: Deployment
  38. metadata:
  39. name: console
  40. namespace: ${NAMESPACE}
  41. labels:
  42. app: openshift-console
  43. component: ui
  44. spec:
  45. selector:
  46. matchLabels:
  47. app: openshift-console
  48. component: ui
  49. strategy:
  50. type: RollingUpdate
  51. progressDeadlineSeconds: 600
  52. replicas: "${{REPLICA_COUNT}}"
  53. template:
  54. metadata:
  55. labels:
  56. app: openshift-console
  57. component: ui
  58. name: console
  59. spec:
  60. selector:
  61. matchLabels:
  62. app: openshift-console
  63. component: ui
  64. affinity:
  65. podAntiAffinity:
  66. preferredDuringSchedulingIgnoredDuringExecution:
  67. - weight: 100
  68. podAffinityTerm:
  69. labelSelector:
  70. matchLabels:
  71. app: openshift-console
  72. topologyKey: kubernetes.io/hostname
  73. containers:
  74. - command:
  75. - /opt/bridge/bin/bridge
  76. - "--public-dir=/opt/bridge/static"
  77. - "--config=/var/console-config/console-config.yaml"
  78. image: ${IMAGE}
  79. imagePullPolicy: IfNotPresent
  80. readinessProbe:
  81. httpGet:
  82. path: /health
  83. port: 8443
  84. scheme: HTTPS
  85. livenessProbe:
  86. httpGet:
  87. path: /health
  88. port: 8443
  89. scheme: HTTPS
  90. initialDelaySeconds: 30
  91. name: console
  92. ports:
  93. - containerPort: 8443
  94. protocol: TCP
  95. resources:
  96. limits:
  97. cpu: 100m
  98. memory: 100Mi
  99. requests:
  100. cpu: 100m
  101. memory: 100Mi
  102. terminationMessagePath: /dev/termination-log
  103. volumeMounts:
  104. - mountPath: /var/serving-cert
  105. name: serving-cert
  106. readOnly: true
  107. - mountPath: /var/oauth-config
  108. name: oauth-config
  109. readOnly: true
  110. - mountPath: /var/console-config
  111. name: console-config
  112. dnsPolicy: ClusterFirst
  113. restartPolicy: Always
  114. terminationGracePeriodSeconds: 30
  115. volumes:
  116. - name: serving-cert
  117. secret:
  118. defaultMode: 0440
  119. secretName: console-serving-cert
  120. - name: oauth-config
  121. secret:
  122. defaultMode: 0440
  123. secretName: console-oauth-config
  124. - name: console-config
  125. configMap:
  126. defaultMode: 0440
  127. name: console-config
  128. nodeSelector: "${{NODE_SELECTOR}}"
  129. # to create the config for the console
  130. - apiVersion: v1
  131. kind: ConfigMap
  132. metadata:
  133. namespace: ${NAMESPACE}
  134. name: console-config
  135. labels:
  136. app: openshift-console
  137. data:
  138. console-config.yaml: ${SERVER_CONFIG}
  139. # to store the OAauth client ID and secret
  140. - apiVersion: v1
  141. kind: Secret
  142. metadata:
  143. namespace: ${NAMESPACE}
  144. name: console-oauth-config
  145. labels:
  146. app: openshift-console
  147. stringData:
  148. clientID: ${OAUTH_CLIENT_ID}
  149. clientSecret: ${OAUTH_SECRET}
  150. # to be able to assign powers to the process
  151. - apiVersion: v1
  152. kind: ServiceAccount
  153. metadata:
  154. namespace: ${NAMESPACE}
  155. name: console
  156. labels:
  157. app: openshift-console
  158. # to be able to expose cluster console inside the cluster
  159. - apiVersion: v1
  160. kind: Service
  161. metadata:
  162. namespace: ${NAMESPACE}
  163. name: console
  164. labels:
  165. app: openshift-console
  166. annotations:
  167. service.alpha.openshift.io/serving-cert-secret-name: console-serving-cert
  168. spec:
  169. selector:
  170. app: openshift-console
  171. component: ui
  172. ports:
  173. - name: https
  174. port: 443
  175. targetPort: 8443
  176. # to be able to expose cluster console outside the cluster
  177. - apiVersion: v1
  178. kind: Route
  179. metadata:
  180. namespace: ${NAMESPACE}
  181. name: console
  182. labels:
  183. app: openshift-console
  184. spec:
  185. host: ${CONSOLE_HOSTNAME}
  186. to:
  187. kind: Service
  188. name: console
  189. port:
  190. targetPort: https
  191. tls:
  192. insecureEdgeTerminationPolicy: Redirect
  193. termination: reencrypt
  194. # to let users log in
  195. - apiVersion: oauth.openshift.io/v1
  196. kind: OAuthClient
  197. metadata:
  198. name: openshift-console
  199. grantMethod: auto
  200. secret: ${OAUTH_SECRET}
  201. redirectURIs:
  202. - https://${CONSOLE_HOSTNAME}/