jboss-middleware-manager-template.yaml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. #
  2. # Copyright 2016-2017 Red Hat, Inc. and/or its affiliates
  3. # and other contributors as indicated by the @author tags.
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. apiVersion: v1
  18. kind: Template
  19. metadata:
  20. name: hawkular-services
  21. annotations:
  22. openshift.io/display-name: Hawkular Services
  23. description: Hawkular-Services all-in-one (including Hawkular Metrics, Hawkular Alerts and Hawkular Inventory).
  24. iconClass: icon-wildfly
  25. tags: hawkular,hawkular-services,metrics,alerts,manageiq,cassandra
  26. parameters:
  27. - name: HAWKULAR_SERVICES_IMAGE
  28. description: What docker image should be used for hawkular-services.
  29. displayName: Hawkular Services Docker Image
  30. value: registry.access.redhat.com/jboss-mm-7-tech-preview/middleware-manager:latest
  31. - name: CASSANDRA_IMAGE
  32. description: What docker image should be used for cassandra node.
  33. displayName: Cassandra Docker Image
  34. value: registry.access.redhat.com/openshift3/metrics-cassandra:3.5.0
  35. - name: CASSANDRA_MEMORY_LIMIT
  36. description: Maximum amount of memory for Cassandra container.
  37. displayName: Cassandra Memory Limit
  38. value: 2Gi
  39. - name: CASSANDRA_DATA_LIMIT
  40. description: Maximum amount data used by Cassandra container.
  41. displayName: Cassandra Container Data Limit
  42. value: 2Gi
  43. - name: HAWKULAR_SERVICES_DATA_LIMIT
  44. description: Maximum amount data used by hawkular-services container (mostly logging).
  45. displayName: Hawkular Services Container Data Limit
  46. value: 1Gi
  47. - name: ROUTE_NAME
  48. description: Public route with this name will be created.
  49. displayName: Route Name
  50. value: hawkular-services
  51. - name: ROUTE_HOSTNAME
  52. description: Under this hostname the Hawkular Services will be accessible, if left blank a value will be defaulted.
  53. displayName: Hostname
  54. - name: HAWKULAR_USER
  55. description: Username that is used for accessing the Hawkular Services, if left blank a value will be generated.
  56. displayName: Hawkular User
  57. from: '[a-zA-Z0-9]{16}'
  58. generate: expression
  59. - name: HAWKULAR_PASSWORD
  60. description: Password that is used for accessing the Hawkular Services, if left blank a value will be generated.
  61. displayName: Hawkular Password
  62. from: '[a-zA-Z0-9]{16}'
  63. generate: expression
  64. labels:
  65. template: hawkular-services
  66. message: Credentials for hawkular-services are ${HAWKULAR_USER}:${HAWKULAR_PASSWORD}
  67. objects:
  68. - apiVersion: v1
  69. kind: Service
  70. metadata:
  71. annotations:
  72. description: Exposes and load balances the application pods
  73. service.alpha.openshift.io/dependencies: '[{"name":"hawkular-cassandra","namespace":"","kind":"Service"}]'
  74. name: hawkular-services
  75. spec:
  76. ports:
  77. - name: http-8080-tcp
  78. port: 8080
  79. protocol: TCP
  80. targetPort: 8080
  81. - name: admin-9990-tcp
  82. port: 9990
  83. protocol: TCP
  84. targetPort: 9990
  85. selector:
  86. name: hawkular-services
  87. type: ClusterIP
  88. - apiVersion: v1
  89. kind: Service
  90. metadata:
  91. annotations:
  92. description: Cassandra Service
  93. name: hawkular-cassandra
  94. spec:
  95. ports:
  96. - name: cql-9042-tcp
  97. port: 9042
  98. protocol: TCP
  99. targetPort: 9042
  100. selector:
  101. name: hawkular-cassandra
  102. - apiVersion: v1
  103. kind: Route
  104. metadata:
  105. name: ${ROUTE_NAME}
  106. spec:
  107. host: ${ROUTE_HOSTNAME}
  108. to:
  109. kind: Service
  110. name: hawkular-services
  111. port:
  112. targetPort: http-8080-tcp
  113. - apiVersion: v1
  114. kind: DeploymentConfig
  115. metadata:
  116. annotations:
  117. description: Defines how to deploy the application server
  118. name: hawkular-services
  119. spec:
  120. replicas: 1
  121. selector:
  122. name: hawkular-services
  123. strategy:
  124. type: Rolling
  125. template:
  126. metadata:
  127. labels:
  128. name: hawkular-services
  129. spec:
  130. containers:
  131. - image: ${HAWKULAR_SERVICES_IMAGE}
  132. env:
  133. - name: HAWKULAR_BACKEND
  134. value: remote
  135. - name: CASSANDRA_NODES
  136. value: hawkular-cassandra
  137. - name: HAWKULAR_USER
  138. value: ${HAWKULAR_USER}
  139. - name: HAWKULAR_PASSWORD
  140. value: ${HAWKULAR_PASSWORD}
  141. imagePullPolicy: IfNotPresent
  142. name: hawkular-services
  143. volumeMounts:
  144. - name: h-services-data
  145. mountPath: /var/opt/hawkular
  146. ports:
  147. - containerPort: 8080
  148. - containerPort: 9990
  149. livenessProbe:
  150. exec:
  151. command:
  152. - /opt/hawkular/bin/ready.sh
  153. initialDelaySeconds: 180
  154. timeoutSeconds: 3
  155. readinessProbe:
  156. exec:
  157. command:
  158. - /opt/hawkular/bin/ready.sh
  159. initialDelaySeconds: 120
  160. timeoutSeconds: 3
  161. periodSeconds: 5
  162. successThreshold: 1
  163. failureThreshold: 12
  164. resources:
  165. requests:
  166. memory: 1024Mi
  167. cpu: 2000m
  168. dnsPolicy: ClusterFirst
  169. restartPolicy: Always
  170. volumes:
  171. - name: h-services-data
  172. persistentVolumeClaim:
  173. claimName: h-services-pvc
  174. - apiVersion: v1
  175. kind: DeploymentConfig
  176. metadata:
  177. annotations:
  178. description: Defines how to deploy the cassandra
  179. name: hawkular-cassandra
  180. spec:
  181. replicas: 1
  182. selector:
  183. name: hawkular-cassandra
  184. strategy:
  185. type: Recreate
  186. rollingParams:
  187. timeoutSeconds: 300
  188. template:
  189. metadata:
  190. labels:
  191. name: hawkular-cassandra
  192. spec:
  193. containers:
  194. - image: ${CASSANDRA_IMAGE}
  195. imagePullPolicy: Always
  196. name: hawkular-cassandra
  197. env:
  198. - name: DATA_VOLUME
  199. value: /var/lib/cassandra
  200. volumeMounts:
  201. - name: cassandra-data
  202. mountPath: /var/lib/cassandra
  203. ports:
  204. - containerPort: 9042
  205. - containerPort: 9160
  206. readinessProbe:
  207. exec:
  208. command: ['nodetool', 'status']
  209. initialDelaySeconds: 30
  210. timeoutSeconds: 10
  211. periodSeconds: 15
  212. successThreshold: 1
  213. failureThreshold: 3
  214. livenessProbe:
  215. exec:
  216. command: ['nodetool', 'status']
  217. initialDelaySeconds: 300
  218. timeoutSeconds: 10
  219. periodSeconds: 15
  220. successThreshold: 1
  221. failureThreshold: 3
  222. resources:
  223. limits:
  224. memory: ${CASSANDRA_MEMORY_LIMIT}
  225. volumes:
  226. - name: cassandra-data
  227. persistentVolumeClaim:
  228. claimName: cassandra-pvc
  229. - apiVersion: v1
  230. kind: PersistentVolumeClaim
  231. metadata:
  232. name: h-services-pvc
  233. spec:
  234. accessModes:
  235. - ReadWriteOnce
  236. resources:
  237. requests:
  238. storage: 1Gi
  239. - apiVersion: v1
  240. kind: PersistentVolumeClaim
  241. metadata:
  242. name: cassandra-pvc
  243. spec:
  244. accessModes:
  245. - ReadWriteOnce
  246. resources:
  247. requests:
  248. storage: 1Gi