monitor-app-create.yaml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. ---
  2. apiVersion: template.openshift.io/v1
  3. kind: Template
  4. metadata:
  5. name: openshift-monitor-app-create
  6. annotations:
  7. openshift.io/display-name: OpenShift App Create Availability Monitor
  8. description: Measures app create operation availability.
  9. iconClass: icon-openshift
  10. tags: openshift,infra,monitoring
  11. openshift.io/documentation-url: https://github.com/openshift/monitor-project-lifecycle
  12. openshift.io/support-url: https://access.redhat.com
  13. openshift.io/provider-display-name: Red Hat, Inc.
  14. parameters:
  15. - name: IMAGE
  16. description: The application container image to use.
  17. required: true
  18. - name: LOG_LEVEL
  19. value: "0"
  20. description: Application logging level.
  21. - name: RUN_INTERVAL
  22. value: "5m"
  23. description: How often to run the measurement loop, as a duration string.
  24. - name: TIMEOUT
  25. value: "5m"
  26. description: How long to wait for the test app to become available before giving up.
  27. - name: NAMESPACE
  28. # This namespace cannot be changed.
  29. value: openshift-monitor-availability
  30. objects:
  31. - apiVersion: rbac.authorization.k8s.io/v1beta1
  32. kind: ClusterRole
  33. metadata: {name: monitor-app-create}
  34. rules:
  35. # These are for the auth proxy.
  36. - apiGroups: ["authentication.k8s.io"]
  37. resources:
  38. - tokenreviews
  39. verbs: ["create"]
  40. - apiGroups: ["authorization.k8s.io"]
  41. resources:
  42. - subjectaccessreviews
  43. verbs: ["create"]
  44. # These are for the app itself.
  45. - apiGroups: [project.openshift.io]
  46. resources: [projects, projectrequests]
  47. verbs: ['*']
  48. - apiVersion: v1
  49. kind: ServiceAccount
  50. metadata:
  51. name: monitor-app-create
  52. namespace: ${NAMESPACE}
  53. - apiVersion: rbac.authorization.k8s.io/v1beta1
  54. kind: ClusterRoleBinding
  55. metadata:
  56. name: monitor-app-create
  57. roleRef:
  58. apiGroup: rbac.authorization.k8s.io
  59. kind: ClusterRole
  60. name: monitor-app-create
  61. subjects:
  62. - kind: ServiceAccount
  63. name: monitor-app-create
  64. namespace: ${NAMESPACE}
  65. - apiVersion: v1
  66. kind: Service
  67. metadata:
  68. name: monitor-app-create
  69. namespace: ${NAMESPACE}
  70. labels:
  71. k8s-app: monitor-app-create
  72. annotations:
  73. service.alpha.openshift.io/serving-cert-secret-name: monitor-app-create-tls
  74. spec:
  75. ports:
  76. - name: http-metrics
  77. port: 443
  78. protocol: TCP
  79. targetPort: https
  80. selector:
  81. k8s-app: monitor-app-create
  82. - apiVersion: v1
  83. kind: ConfigMap
  84. metadata:
  85. name: monitor-app-create
  86. namespace: ${NAMESPACE}
  87. labels:
  88. k8s-app: monitor-app-create
  89. data:
  90. config.yaml: |
  91. listenAddress: "127.0.0.1:8080"
  92. runInterval: "${RUN_INTERVAL}"
  93. availabilityTimeout: "${TIMEOUT}"
  94. template:
  95. namespace: openshift
  96. name: django-psql-persistent
  97. availabilityRoute: django-psql-persistent
  98. parameters: # Empty, use template defaults
  99. - apiVersion: monitoring.coreos.com/v1
  100. kind: ServiceMonitor
  101. metadata:
  102. name: monitor-app-create
  103. namespace: ${NAMESPACE}
  104. labels:
  105. k8s-app: monitor-app-create
  106. spec:
  107. jobLabel: k8s-app
  108. endpoints:
  109. - port: http-metrics
  110. interval: 30s
  111. scheme: https
  112. bearerTokenFile: /var/run/secrets/kubernetes.io/serviceaccount/token
  113. tlsConfig:
  114. caFile: /var/run/secrets/kubernetes.io/serviceaccount/service-ca.crt
  115. serverName: monitor-app-create.openshift-monitor-availability.svc
  116. selector:
  117. matchLabels:
  118. k8s-app: monitor-app-create
  119. namespaceSelector:
  120. matchNames:
  121. - openshift-monitor-availability
  122. - apiVersion: extensions/v1beta1
  123. kind: Deployment
  124. metadata:
  125. name: monitor-app-create
  126. namespace: ${NAMESPACE}
  127. labels:
  128. k8s-app: monitor-app-create
  129. spec:
  130. replicas: 1
  131. selector:
  132. matchLabels:
  133. k8s-app: monitor-app-create
  134. template:
  135. metadata:
  136. labels:
  137. k8s-app: monitor-app-create
  138. spec:
  139. serviceAccountName: monitor-app-create
  140. volumes:
  141. - name: config
  142. configMap:
  143. name: monitor-app-create
  144. - name: tls
  145. secret:
  146. secretName: monitor-app-create-tls
  147. containers:
  148. - name: monitor-app-create
  149. image: ${IMAGE}
  150. command:
  151. - "/usr/bin/monitor"
  152. - "run"
  153. - "--alsologtostderr"
  154. - "--v"
  155. - "${LOG_LEVEL}"
  156. - "--config"
  157. - "/etc/monitor-app-create/config.yaml"
  158. volumeMounts:
  159. - name: config
  160. mountPath: /etc/monitor-app-create
  161. resources:
  162. limits:
  163. cpu: 20m
  164. memory: 50Mi
  165. requests:
  166. cpu: 20m
  167. memory: 50Mi
  168. - name: kube-rbac-proxy
  169. image: quay.io/coreos/kube-rbac-proxy:v0.3.0
  170. args:
  171. - "--secure-listen-address=:8081"
  172. - "--upstream=http://127.0.0.1:8080/"
  173. - "--tls-cert-file=/etc/tls/private/tls.crt"
  174. - "--tls-private-key-file=/etc/tls/private/tls.key"
  175. ports:
  176. - name: https
  177. containerPort: 8081
  178. protocol: TCP
  179. resources:
  180. requests:
  181. memory: 20Mi
  182. cpu: 10m
  183. limits:
  184. memory: 40Mi
  185. cpu: 20m
  186. volumeMounts:
  187. - mountPath: /etc/tls/private
  188. name: tls