apiserver-template.yaml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. apiVersion: template.openshift.io/v1
  2. kind: Template
  3. metadata:
  4. name: template-service-broker-apiserver
  5. parameters:
  6. - name: IMAGE
  7. value: openshift/origin-template-service-broker:latest
  8. - name: NAMESPACE
  9. value: openshift-template-service-broker
  10. - name: LOGLEVEL
  11. value: "0"
  12. - name: API_SERVER_CONFIG
  13. value: |
  14. kind: TemplateServiceBrokerConfig
  15. apiVersion: config.templateservicebroker.openshift.io/v1
  16. templateNamespaces:
  17. - openshift
  18. - name: NODE_SELECTOR
  19. value: "{}"
  20. objects:
  21. # to create the tsb server
  22. - apiVersion: extensions/v1beta1
  23. kind: DaemonSet
  24. metadata:
  25. namespace: ${NAMESPACE}
  26. name: apiserver
  27. labels:
  28. apiserver: "true"
  29. spec:
  30. template:
  31. metadata:
  32. name: apiserver
  33. labels:
  34. apiserver: "true"
  35. spec:
  36. serviceAccountName: apiserver
  37. containers:
  38. - name: c
  39. image: ${IMAGE}
  40. imagePullPolicy: IfNotPresent
  41. command:
  42. - "/usr/bin/template-service-broker"
  43. - "start"
  44. - "template-service-broker"
  45. - "--secure-port=8443"
  46. - "--audit-log-path=-"
  47. - "--tls-cert-file=/var/serving-cert/tls.crt"
  48. - "--tls-private-key-file=/var/serving-cert/tls.key"
  49. - "--v=${LOGLEVEL}"
  50. - "--config=/var/apiserver-config/apiserver-config.yaml"
  51. ports:
  52. - containerPort: 8443
  53. volumeMounts:
  54. - mountPath: /var/serving-cert
  55. name: serving-cert
  56. - mountPath: /var/apiserver-config
  57. name: apiserver-config
  58. readinessProbe:
  59. httpGet:
  60. path: /healthz
  61. port: 8443
  62. scheme: HTTPS
  63. nodeSelector: "${{NODE_SELECTOR}}"
  64. volumes:
  65. - name: serving-cert
  66. secret:
  67. defaultMode: 420
  68. secretName: apiserver-serving-cert
  69. - name: apiserver-config
  70. configMap:
  71. defaultMode: 420
  72. name: apiserver-config
  73. # to create the config for the TSB
  74. - apiVersion: v1
  75. kind: ConfigMap
  76. metadata:
  77. namespace: ${NAMESPACE}
  78. name: apiserver-config
  79. data:
  80. apiserver-config.yaml: ${API_SERVER_CONFIG}
  81. # to be able to assign powers to the process
  82. - apiVersion: v1
  83. kind: ServiceAccount
  84. metadata:
  85. namespace: ${NAMESPACE}
  86. name: apiserver
  87. # to be able to expose TSB inside the cluster
  88. - apiVersion: v1
  89. kind: Service
  90. metadata:
  91. namespace: ${NAMESPACE}
  92. name: apiserver
  93. annotations:
  94. service.alpha.openshift.io/serving-cert-secret-name: apiserver-serving-cert
  95. spec:
  96. selector:
  97. apiserver: "true"
  98. ports:
  99. - port: 443
  100. targetPort: 8443
  101. # This service account will be granted permission to call the TSB.
  102. # The token for this SA will be provided to the service catalog for
  103. # use when calling the TSB.
  104. - apiVersion: v1
  105. kind: ServiceAccount
  106. metadata:
  107. namespace: ${NAMESPACE}
  108. name: templateservicebroker-client
  109. # This secret will be populated with a copy of the templateservicebroker-client SA's
  110. # auth token. Since this secret has a static name, it can be referenced more
  111. # easily than the auto-generated secret for the service account.
  112. - apiVersion: v1
  113. kind: Secret
  114. metadata:
  115. namespace: ${NAMESPACE}
  116. name: templateservicebroker-client
  117. annotations:
  118. kubernetes.io/service-account.name: templateservicebroker-client
  119. type: kubernetes.io/service-account-token