template.yml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. ---
  2. apiVersion: v1
  3. kind: Template
  4. metadata:
  5. name: autoheal-template
  6. annotations:
  7. description: "Auto-heal service"
  8. tags: "autoheal"
  9. parameters:
  10. - name: IMAGE
  11. description: The name of the image.
  12. - name: CONFIG
  13. description: The BASE64 encoded content of the configuration file.
  14. - name: SECRET
  15. description: The BASE64 encoded secret used to encrypt OAuth session cookies.
  16. objects:
  17. - apiVersion: v1
  18. kind: ServiceAccount
  19. metadata:
  20. name: autoheal
  21. labels:
  22. app: autoheal
  23. - apiVersion: authorization.openshift.io/v1
  24. kind: Role
  25. metadata:
  26. name: autoheal
  27. labels:
  28. app: autoheal
  29. rules:
  30. - apiGroups:
  31. - ""
  32. resources:
  33. - secrets
  34. resourceNames:
  35. - autoheal-config
  36. verbs:
  37. - get
  38. - apiVersion: authorization.openshift.io/v1
  39. kind: ClusterRole
  40. metadata:
  41. name: autoheal-access
  42. labels:
  43. app: autoheal
  44. rules:
  45. - apiGroups:
  46. - ""
  47. resources:
  48. - secrets
  49. resourceNames:
  50. - autoheal-access-key
  51. verbs:
  52. - get
  53. - apiVersion: authorization.openshift.io/v1
  54. kind: RoleBinding
  55. metadata:
  56. name: autoheal
  57. labels:
  58. app: autoheal
  59. roleRef:
  60. namespace: openshift-autoheal
  61. name: autoheal
  62. subjects:
  63. - kind: ServiceAccount
  64. namespace: openshift-autoheal
  65. name: autoheal
  66. - apiVersion: authorization.openshift.io/v1
  67. kind: RoleBinding
  68. metadata:
  69. name: alertmanager-autoheal-access
  70. labels:
  71. app: autoheal
  72. roleRef:
  73. kind: ClusterRole
  74. name: autoheal-access
  75. subjects:
  76. - kind: ServiceAccount
  77. namespace: openshift-monitoring
  78. name: alertmanager-main
  79. - apiVersion: authorization.openshift.io/v1
  80. kind: ClusterRoleBinding
  81. metadata:
  82. name: autoheal-auth-delegator
  83. labels:
  84. app: autoheal
  85. roleRef:
  86. kind: ClusterRole
  87. name: system:auth-delegator
  88. subjects:
  89. - kind: ServiceAccount
  90. namespace: openshift-autoheal
  91. name: autoheal
  92. - apiVersion: v1
  93. kind: Secret
  94. metadata:
  95. name: autoheal-config
  96. labels:
  97. app: autoheal
  98. data:
  99. autoheal.yml: ${CONFIG}
  100. - apiVersion: v1
  101. kind: Secret
  102. metadata:
  103. name: autoheal-proxy-cookie
  104. data:
  105. session_secret: ${SECRET}
  106. - apiVersion: apps/v1beta1
  107. kind: Deployment
  108. metadata:
  109. name: autoheal
  110. labels:
  111. app: autoheal
  112. spec:
  113. selector:
  114. matchLabels:
  115. app: autoheal
  116. replicas: 1
  117. template:
  118. metadata:
  119. labels:
  120. app: autoheal
  121. spec:
  122. serviceAccountName: autoheal
  123. volumes:
  124. - name: config
  125. secret:
  126. secretName: autoheal-config
  127. - name: proxy-tls
  128. secret:
  129. secretName: autoheal-proxy-tls
  130. - name: proxy-cookie
  131. secret:
  132. secretName: autoheal-proxy-cookie
  133. containers:
  134. - name: proxy
  135. image: openshift/oauth-proxy:v1.1.0
  136. imagePullPolicy: IfNotPresent
  137. volumeMounts:
  138. - mountPath: /etc/tls/private
  139. name: proxy-tls
  140. - mountPath: /etc/proxy/secrets
  141. name: proxy-cookie
  142. ports:
  143. - containerPort: 8443
  144. name: public
  145. args:
  146. - --https-address=:8443
  147. - --provider=openshift
  148. - --openshift-service-account=autoheal
  149. - --upstream=http://localhost:9099
  150. - --tls-cert=/etc/tls/private/tls.crt
  151. - -email-domain=*
  152. - '-openshift-sar={ "resource": "secrets", "verb": "get", "name": "autoheal-access-key", "namespace": "openshift-autoheal" }'
  153. - '-openshift-delegate-urls={ "/": { "resource": "secrets", "verb": "get", "name": "autoheal-access-key", "namespace": "openshift-autoheal" } }'
  154. - -tls-key=/etc/tls/private/tls.key
  155. - -client-secret-file=/var/run/secrets/kubernetes.io/serviceaccount/token
  156. - -cookie-secret-file=/etc/proxy/secrets/session_secret
  157. - -openshift-ca=/etc/pki/tls/cert.pem
  158. - -openshift-ca=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt
  159. - name: receiver
  160. image: ${IMAGE}
  161. imagePullPolicy: IfNotPresent
  162. volumeMounts:
  163. - name: config
  164. mountPath: /etc/autoheal/config.d
  165. command:
  166. - /usr/bin/autoheal
  167. args:
  168. - server
  169. - --config-file=/etc/autoheal/config.d
  170. - --logtostderr
  171. - apiVersion: v1
  172. kind: Service
  173. metadata:
  174. name: receiver
  175. labels:
  176. app: autoheal
  177. annotations:
  178. service.alpha.openshift.io/serving-cert-secret-name: autoheal-proxy-tls
  179. spec:
  180. selector:
  181. app: autoheal
  182. ports:
  183. - name: autoheal
  184. port: 443
  185. targetPort: 8443