registry-console.yaml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. kind: Template
  2. apiVersion: v1
  3. metadata:
  4. name: "registry-console"
  5. annotations:
  6. description: "Template for deploying registry web console. Requires cluster-admin."
  7. tags: infrastructure
  8. labels:
  9. createdBy: "registry-console-template"
  10. objects:
  11. - kind: DeploymentConfig
  12. apiVersion: v1
  13. metadata:
  14. name: "registry-console"
  15. labels:
  16. name: "registry-console"
  17. spec:
  18. triggers:
  19. - type: ConfigChange
  20. replicas: 1
  21. selector:
  22. name: "registry-console"
  23. template:
  24. metadata:
  25. labels:
  26. name: "registry-console"
  27. spec:
  28. containers:
  29. - name: registry-console
  30. image: ${IMAGE_PREFIX}${IMAGE_BASENAME}:${IMAGE_VERSION}
  31. ports:
  32. - containerPort: 9090
  33. protocol: TCP
  34. livenessProbe:
  35. failureThreshold: 3
  36. httpGet:
  37. path: /ping
  38. port: 9090
  39. scheme: HTTP
  40. initialDelaySeconds: 10
  41. periodSeconds: 10
  42. successThreshold: 1
  43. timeoutSeconds: 5
  44. readinessProbe:
  45. failureThreshold: 3
  46. httpGet:
  47. path: /ping
  48. port: 9090
  49. scheme: HTTP
  50. periodSeconds: 10
  51. successThreshold: 1
  52. timeoutSeconds: 5
  53. env:
  54. - name: OPENSHIFT_OAUTH_PROVIDER_URL
  55. value: "${OPENSHIFT_OAUTH_PROVIDER_URL}"
  56. - name: OPENSHIFT_OAUTH_CLIENT_ID
  57. value: "${OPENSHIFT_OAUTH_CLIENT_ID}"
  58. - name: KUBERNETES_INSECURE
  59. value: "false"
  60. - name: COCKPIT_KUBE_INSECURE
  61. value: "false"
  62. - name: REGISTRY_ONLY
  63. value: "true"
  64. - name: REGISTRY_HOST
  65. value: "${REGISTRY_HOST}"
  66. - kind: Service
  67. apiVersion: v1
  68. metadata:
  69. name: "registry-console"
  70. labels:
  71. name: "registry-console"
  72. spec:
  73. type: ClusterIP
  74. ports:
  75. - name: registry-console
  76. protocol: TCP
  77. port: 9000
  78. targetPort: 9090
  79. selector:
  80. name: "registry-console"
  81. - kind: ImageStream
  82. apiVersion: v1
  83. metadata:
  84. name: registry-console
  85. annotations:
  86. description: Atomic Registry console
  87. spec:
  88. tags:
  89. - annotations: null
  90. from:
  91. kind: DockerImage
  92. name: ${IMAGE_PREFIX}${IMAGE_BASENAME}:${IMAGE_VERSION}
  93. name: ${IMAGE_VERSION}
  94. - kind: OAuthClient
  95. apiVersion: v1
  96. metadata:
  97. name: "${OPENSHIFT_OAUTH_CLIENT_ID}"
  98. respondWithChallenges: false
  99. secret: "${OPENSHIFT_OAUTH_CLIENT_SECRET}"
  100. redirectURIs:
  101. - "${COCKPIT_KUBE_URL}"
  102. parameters:
  103. - description: 'Specify "registry/namespace" prefix for container image; e.g. for "registry.example.com/cockpit/kubernetes:latest", set prefix "registry.example.com/cockpit/"'
  104. name: IMAGE_PREFIX
  105. value: "cockpit/"
  106. - description: 'Specify component name for container image; e.g. for "registry.example.com/cockpit/kubernetes:latest", use base name "kubernetes"'
  107. name: IMAGE_BASENAME
  108. value: "kubernetes"
  109. - description: 'Specify image version; e.g. for "cockpit/kubernetes:latest", set version "latest"'
  110. name: IMAGE_VERSION
  111. value: latest
  112. - description: "The public URL for the Openshift OAuth Provider, e.g. https://openshift.example.com:8443"
  113. name: OPENSHIFT_OAUTH_PROVIDER_URL
  114. required: true
  115. - description: "The registry console URL. This should be created beforehand using 'oc create route passthrough --service registry-console --port registry-console -n default', e.g. https://registry-console-default.example.com"
  116. name: COCKPIT_KUBE_URL
  117. required: true
  118. - description: "Oauth client secret"
  119. name: OPENSHIFT_OAUTH_CLIENT_SECRET
  120. from: "user[a-zA-Z0-9]{64}"
  121. generate: expression
  122. - description: "Oauth client id"
  123. name: OPENSHIFT_OAUTH_CLIENT_ID
  124. value: "cockpit-oauth-client"
  125. - description: "The integrated registry hostname exposed via route, e.g. registry.example.com"
  126. name: REGISTRY_HOST
  127. required: true