monitor-app-create.yaml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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: extensions/v1beta1
  100. kind: Deployment
  101. metadata:
  102. name: monitor-app-create
  103. namespace: ${NAMESPACE}
  104. labels:
  105. k8s-app: monitor-app-create
  106. spec:
  107. replicas: 1
  108. selector:
  109. matchLabels:
  110. k8s-app: monitor-app-create
  111. template:
  112. metadata:
  113. labels:
  114. k8s-app: monitor-app-create
  115. spec:
  116. serviceAccountName: monitor-app-create
  117. volumes:
  118. - name: config
  119. configMap:
  120. name: monitor-app-create
  121. - name: tls
  122. secret:
  123. secretName: monitor-app-create-tls
  124. containers:
  125. - name: monitor-app-create
  126. image: ${IMAGE}
  127. command:
  128. - "/usr/bin/monitor"
  129. - "run"
  130. - "--alsologtostderr"
  131. - "--v"
  132. - "${LOG_LEVEL}"
  133. - "--config"
  134. - "/etc/monitor-app-create/config.yaml"
  135. volumeMounts:
  136. - name: config
  137. mountPath: /etc/monitor-app-create
  138. resources:
  139. limits:
  140. cpu: 20m
  141. memory: 50Mi
  142. requests:
  143. cpu: 20m
  144. memory: 50Mi
  145. - name: kube-rbac-proxy
  146. image: quay.io/coreos/kube-rbac-proxy:v0.3.0
  147. args:
  148. - "--secure-listen-address=:8081"
  149. - "--upstream=http://127.0.0.1:8080/"
  150. - "--tls-cert-file=/etc/tls/private/tls.crt"
  151. - "--tls-private-key-file=/etc/tls/private/tls.key"
  152. ports:
  153. - name: https
  154. containerPort: 8081
  155. protocol: TCP
  156. resources:
  157. requests:
  158. memory: 20Mi
  159. cpu: 10m
  160. limits:
  161. memory: 40Mi
  162. cpu: 20m
  163. volumeMounts:
  164. - mountPath: /etc/tls/private
  165. name: tls