console-template.yaml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. apiVersion: template.openshift.io/v1
  2. kind: Template
  3. metadata:
  4. name: openshift-web-console
  5. annotations:
  6. openshift.io/display-name: OpenShift Web Console
  7. description: The server for the OpenShift web console.
  8. iconClass: icon-openshift
  9. tags: openshift,infra
  10. openshift.io/documentation-url: https://github.com/openshift/origin-web-console-server
  11. openshift.io/support-url: https://access.redhat.com
  12. openshift.io/provider-display-name: Red Hat, Inc.
  13. parameters:
  14. - name: IMAGE
  15. value: openshift/origin-web-console:latest
  16. - name: NAMESPACE
  17. # This namespace cannot be changed. Only `openshift-web-console` is supported.
  18. value: openshift-web-console
  19. - name: LOGLEVEL
  20. value: "0"
  21. - name: API_SERVER_CONFIG
  22. - name: NODE_SELECTOR
  23. value: "{}"
  24. - name: REPLICA_COUNT
  25. value: "1"
  26. objects:
  27. # to create the web console server
  28. - apiVersion: apps/v1beta1
  29. kind: Deployment
  30. metadata:
  31. namespace: ${NAMESPACE}
  32. name: webconsole
  33. labels:
  34. app: openshift-web-console
  35. webconsole: "true"
  36. spec:
  37. replicas: "${{REPLICA_COUNT}}"
  38. strategy:
  39. type: Recreate
  40. template:
  41. metadata:
  42. name: webconsole
  43. labels:
  44. webconsole: "true"
  45. spec:
  46. serviceAccountName: webconsole
  47. containers:
  48. - name: webconsole
  49. image: ${IMAGE}
  50. imagePullPolicy: IfNotPresent
  51. command:
  52. - "/usr/bin/origin-web-console"
  53. - "--audit-log-path=-"
  54. - "-v=${LOGLEVEL}"
  55. - "--config=/var/webconsole-config/webconsole-config.yaml"
  56. ports:
  57. - containerPort: 8443
  58. volumeMounts:
  59. - mountPath: /var/serving-cert
  60. name: serving-cert
  61. - mountPath: /var/webconsole-config
  62. name: webconsole-config
  63. readinessProbe:
  64. httpGet:
  65. path: /healthz
  66. port: 8443
  67. scheme: HTTPS
  68. livenessProbe:
  69. httpGet:
  70. path: /
  71. port: 8443
  72. scheme: HTTPS
  73. nodeSelector: "${{NODE_SELECTOR}}"
  74. volumes:
  75. - name: serving-cert
  76. secret:
  77. defaultMode: 400
  78. secretName: webconsole-serving-cert
  79. - name: webconsole-config
  80. configMap:
  81. defaultMode: 440
  82. name: webconsole-config
  83. # to create the config for the web console
  84. - apiVersion: v1
  85. kind: ConfigMap
  86. metadata:
  87. namespace: ${NAMESPACE}
  88. name: webconsole-config
  89. labels:
  90. app: openshift-web-console
  91. data:
  92. webconsole-config.yaml: ${API_SERVER_CONFIG}
  93. # to be able to assign powers to the process
  94. - apiVersion: v1
  95. kind: ServiceAccount
  96. metadata:
  97. namespace: ${NAMESPACE}
  98. name: webconsole
  99. labels:
  100. app: openshift-web-console
  101. # to be able to expose web console inside the cluster
  102. - apiVersion: v1
  103. kind: Service
  104. metadata:
  105. namespace: ${NAMESPACE}
  106. name: webconsole
  107. labels:
  108. app: openshift-web-console
  109. annotations:
  110. service.alpha.openshift.io/serving-cert-secret-name: webconsole-serving-cert
  111. spec:
  112. selector:
  113. webconsole: "true"
  114. ports:
  115. - name: https
  116. port: 443
  117. targetPort: 8443