cfme-template.yaml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. apiVersion: v1
  2. kind: Template
  3. labels:
  4. template: cloudforms
  5. metadata:
  6. name: cloudforms
  7. annotations:
  8. description: "CloudForms appliance with persistent storage"
  9. tags: "instant-app,cloudforms,cfme"
  10. iconClass: "icon-rails"
  11. objects:
  12. - apiVersion: v1
  13. kind: Service
  14. metadata:
  15. annotations:
  16. description: "Exposes and load balances CloudForms pods"
  17. service.alpha.openshift.io/dependencies: '[{"name":"${DATABASE_SERVICE_NAME}","namespace":"","kind":"Service"},{"name":"${MEMCACHED_SERVICE_NAME}","namespace":"","kind":"Service"}]'
  18. name: ${NAME}
  19. spec:
  20. clusterIP: None
  21. ports:
  22. - name: http
  23. port: 80
  24. protocol: TCP
  25. targetPort: 80
  26. - name: https
  27. port: 443
  28. protocol: TCP
  29. targetPort: 443
  30. selector:
  31. name: ${NAME}
  32. - apiVersion: v1
  33. kind: Route
  34. metadata:
  35. name: ${NAME}
  36. spec:
  37. host: ${APPLICATION_DOMAIN}
  38. port:
  39. targetPort: https
  40. tls:
  41. termination: passthrough
  42. to:
  43. kind: Service
  44. name: ${NAME}
  45. - apiVersion: v1
  46. kind: ImageStream
  47. metadata:
  48. name: cfme-openshift-app
  49. annotations:
  50. description: "Keeps track of changes in the CloudForms app image"
  51. spec:
  52. dockerImageRepository: "${APPLICATION_IMG_NAME}"
  53. - apiVersion: v1
  54. kind: ImageStream
  55. metadata:
  56. name: cfme-openshift-postgresql
  57. annotations:
  58. description: "Keeps track of changes in the CloudForms postgresql image"
  59. spec:
  60. dockerImageRepository: "${POSTGRESQL_IMG_NAME}"
  61. - apiVersion: v1
  62. kind: ImageStream
  63. metadata:
  64. name: cfme-openshift-memcached
  65. annotations:
  66. description: "Keeps track of changes in the CloudForms memcached image"
  67. spec:
  68. dockerImageRepository: "${MEMCACHED_IMG_NAME}"
  69. - apiVersion: v1
  70. kind: PersistentVolumeClaim
  71. metadata:
  72. name: "${NAME}-${DATABASE_SERVICE_NAME}"
  73. spec:
  74. accessModes:
  75. - ReadWriteOnce
  76. resources:
  77. requests:
  78. storage: ${DATABASE_VOLUME_CAPACITY}
  79. - apiVersion: v1
  80. kind: PersistentVolumeClaim
  81. metadata:
  82. name: "${NAME}-region"
  83. spec:
  84. accessModes:
  85. - ReadWriteOnce
  86. resources:
  87. requests:
  88. storage: ${APPLICATION_REGION_VOLUME_CAPACITY}
  89. - apiVersion: apps/v1beta1
  90. kind: "StatefulSet"
  91. metadata:
  92. name: ${NAME}
  93. annotations:
  94. description: "Defines how to deploy the CloudForms appliance"
  95. spec:
  96. serviceName: "${NAME}"
  97. replicas: 1
  98. template:
  99. metadata:
  100. labels:
  101. name: ${NAME}
  102. name: ${NAME}
  103. spec:
  104. containers:
  105. - name: cloudforms
  106. image: "${APPLICATION_IMG_NAME}:${APPLICATION_IMG_TAG}"
  107. livenessProbe:
  108. tcpSocket:
  109. port: 443
  110. initialDelaySeconds: 480
  111. timeoutSeconds: 3
  112. readinessProbe:
  113. httpGet:
  114. path: /
  115. port: 443
  116. scheme: HTTPS
  117. initialDelaySeconds: 200
  118. timeoutSeconds: 3
  119. ports:
  120. - containerPort: 80
  121. protocol: TCP
  122. - containerPort: 443
  123. protocol: TCP
  124. securityContext:
  125. privileged: true
  126. volumeMounts:
  127. -
  128. name: "${NAME}-server"
  129. mountPath: "/persistent"
  130. -
  131. name: "${NAME}-region"
  132. mountPath: "/persistent-region"
  133. env:
  134. -
  135. name: "APPLICATION_INIT_DELAY"
  136. value: "${APPLICATION_INIT_DELAY}"
  137. -
  138. name: "DATABASE_SERVICE_NAME"
  139. value: "${DATABASE_SERVICE_NAME}"
  140. -
  141. name: "DATABASE_REGION"
  142. value: "${DATABASE_REGION}"
  143. -
  144. name: "MEMCACHED_SERVICE_NAME"
  145. value: "${MEMCACHED_SERVICE_NAME}"
  146. -
  147. name: "POSTGRESQL_USER"
  148. value: "${DATABASE_USER}"
  149. -
  150. name: "POSTGRESQL_PASSWORD"
  151. value: "${DATABASE_PASSWORD}"
  152. -
  153. name: "POSTGRESQL_DATABASE"
  154. value: "${DATABASE_NAME}"
  155. -
  156. name: "POSTGRESQL_MAX_CONNECTIONS"
  157. value: "${POSTGRESQL_MAX_CONNECTIONS}"
  158. -
  159. name: "POSTGRESQL_SHARED_BUFFERS"
  160. value: "${POSTGRESQL_SHARED_BUFFERS}"
  161. resources:
  162. requests:
  163. memory: "${APPLICATION_MEM_REQ}"
  164. cpu: "${APPLICATION_CPU_REQ}"
  165. limits:
  166. memory: "${APPLICATION_MEM_LIMIT}"
  167. lifecycle:
  168. preStop:
  169. exec:
  170. command:
  171. - /opt/rh/cfme-container-scripts/sync-pv-data
  172. volumes:
  173. -
  174. name: "${NAME}-region"
  175. persistentVolumeClaim:
  176. claimName: ${NAME}-region
  177. volumeClaimTemplates:
  178. - metadata:
  179. name: "${NAME}-server"
  180. annotations:
  181. # Uncomment this if using dynamic volume provisioning.
  182. # https://docs.openshift.org/latest/install_config/persistent_storage/dynamically_provisioning_pvs.html
  183. # volume.alpha.kubernetes.io/storage-class: anything
  184. spec:
  185. accessModes: [ ReadWriteOnce ]
  186. resources:
  187. requests:
  188. storage: "${APPLICATION_VOLUME_CAPACITY}"
  189. - apiVersion: v1
  190. kind: "Service"
  191. metadata:
  192. name: "${MEMCACHED_SERVICE_NAME}"
  193. annotations:
  194. description: "Exposes the memcached server"
  195. spec:
  196. ports:
  197. -
  198. name: "memcached"
  199. port: 11211
  200. targetPort: 11211
  201. selector:
  202. name: "${MEMCACHED_SERVICE_NAME}"
  203. - apiVersion: v1
  204. kind: "DeploymentConfig"
  205. metadata:
  206. name: "${MEMCACHED_SERVICE_NAME}"
  207. annotations:
  208. description: "Defines how to deploy memcached"
  209. spec:
  210. strategy:
  211. type: "Recreate"
  212. triggers:
  213. -
  214. type: "ImageChange"
  215. imageChangeParams:
  216. automatic: true
  217. containerNames:
  218. - "memcached"
  219. from:
  220. kind: "ImageStreamTag"
  221. name: "cfme-openshift-memcached:${MEMCACHED_IMG_TAG}"
  222. -
  223. type: "ConfigChange"
  224. replicas: 1
  225. selector:
  226. name: "${MEMCACHED_SERVICE_NAME}"
  227. template:
  228. metadata:
  229. name: "${MEMCACHED_SERVICE_NAME}"
  230. labels:
  231. name: "${MEMCACHED_SERVICE_NAME}"
  232. spec:
  233. volumes: []
  234. containers:
  235. -
  236. name: "memcached"
  237. image: "${MEMCACHED_IMG_NAME}:${MEMCACHED_IMG_TAG}"
  238. ports:
  239. -
  240. containerPort: 11211
  241. readinessProbe:
  242. timeoutSeconds: 1
  243. initialDelaySeconds: 5
  244. tcpSocket:
  245. port: 11211
  246. livenessProbe:
  247. timeoutSeconds: 1
  248. initialDelaySeconds: 30
  249. tcpSocket:
  250. port: 11211
  251. volumeMounts: []
  252. env:
  253. -
  254. name: "MEMCACHED_MAX_MEMORY"
  255. value: "${MEMCACHED_MAX_MEMORY}"
  256. -
  257. name: "MEMCACHED_MAX_CONNECTIONS"
  258. value: "${MEMCACHED_MAX_CONNECTIONS}"
  259. -
  260. name: "MEMCACHED_SLAB_PAGE_SIZE"
  261. value: "${MEMCACHED_SLAB_PAGE_SIZE}"
  262. resources:
  263. requests:
  264. memory: "${MEMCACHED_MEM_REQ}"
  265. cpu: "${MEMCACHED_CPU_REQ}"
  266. limits:
  267. memory: "${MEMCACHED_MEM_LIMIT}"
  268. - apiVersion: v1
  269. kind: "Service"
  270. metadata:
  271. name: "${DATABASE_SERVICE_NAME}"
  272. annotations:
  273. description: "Exposes the database server"
  274. spec:
  275. ports:
  276. -
  277. name: "postgresql"
  278. port: 5432
  279. targetPort: 5432
  280. selector:
  281. name: "${DATABASE_SERVICE_NAME}"
  282. - apiVersion: v1
  283. kind: "DeploymentConfig"
  284. metadata:
  285. name: "${DATABASE_SERVICE_NAME}"
  286. annotations:
  287. description: "Defines how to deploy the database"
  288. spec:
  289. strategy:
  290. type: "Recreate"
  291. triggers:
  292. -
  293. type: "ImageChange"
  294. imageChangeParams:
  295. automatic: true
  296. containerNames:
  297. - "postgresql"
  298. from:
  299. kind: "ImageStreamTag"
  300. name: "cfme-openshift-postgresql:${POSTGRESQL_IMG_TAG}"
  301. -
  302. type: "ConfigChange"
  303. replicas: 1
  304. selector:
  305. name: "${DATABASE_SERVICE_NAME}"
  306. template:
  307. metadata:
  308. name: "${DATABASE_SERVICE_NAME}"
  309. labels:
  310. name: "${DATABASE_SERVICE_NAME}"
  311. spec:
  312. volumes:
  313. -
  314. name: "cfme-pgdb-volume"
  315. persistentVolumeClaim:
  316. claimName: "${NAME}-${DATABASE_SERVICE_NAME}"
  317. containers:
  318. -
  319. name: "postgresql"
  320. image: "${POSTGRESQL_IMG_NAME}:${POSTGRESQL_IMG_TAG}"
  321. ports:
  322. -
  323. containerPort: 5432
  324. readinessProbe:
  325. timeoutSeconds: 1
  326. initialDelaySeconds: 15
  327. exec:
  328. command:
  329. - "/bin/sh"
  330. - "-i"
  331. - "-c"
  332. - "psql -h 127.0.0.1 -U ${POSTGRESQL_USER} -q -d ${POSTGRESQL_DATABASE} -c 'SELECT 1'"
  333. livenessProbe:
  334. timeoutSeconds: 1
  335. initialDelaySeconds: 60
  336. tcpSocket:
  337. port: 5432
  338. volumeMounts:
  339. -
  340. name: "cfme-pgdb-volume"
  341. mountPath: "/var/lib/pgsql/data"
  342. env:
  343. -
  344. name: "POSTGRESQL_USER"
  345. value: "${DATABASE_USER}"
  346. -
  347. name: "POSTGRESQL_PASSWORD"
  348. value: "${DATABASE_PASSWORD}"
  349. -
  350. name: "POSTGRESQL_DATABASE"
  351. value: "${DATABASE_NAME}"
  352. -
  353. name: "POSTGRESQL_MAX_CONNECTIONS"
  354. value: "${POSTGRESQL_MAX_CONNECTIONS}"
  355. -
  356. name: "POSTGRESQL_SHARED_BUFFERS"
  357. value: "${POSTGRESQL_SHARED_BUFFERS}"
  358. resources:
  359. requests:
  360. memory: "${POSTGRESQL_MEM_REQ}"
  361. cpu: "${POSTGRESQL_CPU_REQ}"
  362. limits:
  363. memory: "${POSTGRESQL_MEM_LIMIT}"
  364. parameters:
  365. -
  366. name: "NAME"
  367. displayName: Name
  368. required: true
  369. description: "The name assigned to all of the frontend objects defined in this template."
  370. value: cloudforms
  371. -
  372. name: "DATABASE_SERVICE_NAME"
  373. displayName: "PostgreSQL Service Name"
  374. required: true
  375. description: "The name of the OpenShift Service exposed for the PostgreSQL container."
  376. value: "postgresql"
  377. -
  378. name: "DATABASE_USER"
  379. displayName: "PostgreSQL User"
  380. required: true
  381. description: "PostgreSQL user that will access the database."
  382. value: "root"
  383. -
  384. name: "DATABASE_PASSWORD"
  385. displayName: "PostgreSQL Password"
  386. required: true
  387. description: "Password for the PostgreSQL user."
  388. value: "smartvm"
  389. -
  390. name: "DATABASE_NAME"
  391. required: true
  392. displayName: "PostgreSQL Database Name"
  393. description: "Name of the PostgreSQL database accessed."
  394. value: "vmdb_production"
  395. -
  396. name: "DATABASE_REGION"
  397. required: true
  398. displayName: "Application Database Region"
  399. description: "Database region that will be used for application."
  400. value: "0"
  401. -
  402. name: "MEMCACHED_SERVICE_NAME"
  403. required: true
  404. displayName: "Memcached Service Name"
  405. description: "The name of the OpenShift Service exposed for the Memcached container."
  406. value: "memcached"
  407. -
  408. name: "MEMCACHED_MAX_MEMORY"
  409. displayName: "Memcached Max Memory"
  410. description: "Memcached maximum memory for memcached object storage in MB."
  411. value: "64"
  412. -
  413. name: "MEMCACHED_MAX_CONNECTIONS"
  414. displayName: "Memcached Max Connections"
  415. description: "Memcached maximum number of connections allowed."
  416. value: "1024"
  417. -
  418. name: "MEMCACHED_SLAB_PAGE_SIZE"
  419. displayName: "Memcached Slab Page Size"
  420. description: "Memcached size of each slab page."
  421. value: "1m"
  422. -
  423. name: "POSTGRESQL_MAX_CONNECTIONS"
  424. displayName: "PostgreSQL Max Connections"
  425. description: "PostgreSQL maximum number of database connections allowed."
  426. value: "100"
  427. -
  428. name: "POSTGRESQL_SHARED_BUFFERS"
  429. displayName: "PostgreSQL Shared Buffer Amount"
  430. description: "Amount of memory dedicated for PostgreSQL shared memory buffers."
  431. value: "256MB"
  432. -
  433. name: "APPLICATION_CPU_REQ"
  434. displayName: "Application Min CPU Requested"
  435. required: true
  436. description: "Minimum amount of CPU time the Application container will need (expressed in millicores)."
  437. value: "1000m"
  438. -
  439. name: "POSTGRESQL_CPU_REQ"
  440. displayName: "PostgreSQL Min CPU Requested"
  441. required: true
  442. description: "Minimum amount of CPU time the PostgreSQL container will need (expressed in millicores)."
  443. value: "500m"
  444. -
  445. name: "MEMCACHED_CPU_REQ"
  446. displayName: "Memcached Min CPU Requested"
  447. required: true
  448. description: "Minimum amount of CPU time the Memcached container will need (expressed in millicores)."
  449. value: "200m"
  450. -
  451. name: "APPLICATION_MEM_REQ"
  452. displayName: "Application Min RAM Requested"
  453. required: true
  454. description: "Minimum amount of memory the Application container will need."
  455. value: "6144Mi"
  456. -
  457. name: "POSTGRESQL_MEM_REQ"
  458. displayName: "PostgreSQL Min RAM Requested"
  459. required: true
  460. description: "Minimum amount of memory the PostgreSQL container will need."
  461. value: "1024Mi"
  462. -
  463. name: "MEMCACHED_MEM_REQ"
  464. displayName: "Memcached Min RAM Requested"
  465. required: true
  466. description: "Minimum amount of memory the Memcached container will need."
  467. value: "64Mi"
  468. -
  469. name: "APPLICATION_MEM_LIMIT"
  470. displayName: "Application Max RAM Limit"
  471. required: true
  472. description: "Maximum amount of memory the Application container can consume."
  473. value: "16384Mi"
  474. -
  475. name: "POSTGRESQL_MEM_LIMIT"
  476. displayName: "PostgreSQL Max RAM Limit"
  477. required: true
  478. description: "Maximum amount of memory the PostgreSQL container can consume."
  479. value: "8192Mi"
  480. -
  481. name: "MEMCACHED_MEM_LIMIT"
  482. displayName: "Memcached Max RAM Limit"
  483. required: true
  484. description: "Maximum amount of memory the Memcached container can consume."
  485. value: "256Mi"
  486. -
  487. name: "POSTGRESQL_IMG_NAME"
  488. displayName: "PostgreSQL Image Name"
  489. description: "This is the PostgreSQL image name requested to deploy."
  490. value: "registry.access.redhat.com/cloudforms45/cfme-openshift-postgresql"
  491. -
  492. name: "POSTGRESQL_IMG_TAG"
  493. displayName: "PostgreSQL Image Tag"
  494. description: "This is the PostgreSQL image tag/version requested to deploy."
  495. value: "latest"
  496. -
  497. name: "MEMCACHED_IMG_NAME"
  498. displayName: "Memcached Image Name"
  499. description: "This is the Memcached image name requested to deploy."
  500. value: "registry.access.redhat.com/cloudforms45/cfme-openshift-memcached"
  501. -
  502. name: "MEMCACHED_IMG_TAG"
  503. displayName: "Memcached Image Tag"
  504. description: "This is the Memcached image tag/version requested to deploy."
  505. value: "latest"
  506. -
  507. name: "APPLICATION_IMG_NAME"
  508. displayName: "Application Image Name"
  509. description: "This is the Application image name requested to deploy."
  510. value: "registry.access.redhat.com/cloudforms45/cfme-openshift-app"
  511. -
  512. name: "APPLICATION_IMG_TAG"
  513. displayName: "Application Image Tag"
  514. description: "This is the Application image tag/version requested to deploy."
  515. value: "latest"
  516. -
  517. name: "APPLICATION_DOMAIN"
  518. displayName: "Application Hostname"
  519. description: "The exposed hostname that will route to the application service, if left blank a value will be defaulted."
  520. value: ""
  521. -
  522. name: "APPLICATION_INIT_DELAY"
  523. displayName: "Application Init Delay"
  524. required: true
  525. description: "Delay in seconds before we attempt to initialize the application."
  526. value: "15"
  527. -
  528. name: "APPLICATION_VOLUME_CAPACITY"
  529. displayName: "Application Volume Capacity"
  530. required: true
  531. description: "Volume space available for application data."
  532. value: "5Gi"
  533. -
  534. name: "APPLICATION_REGION_VOLUME_CAPACITY"
  535. displayName: "Application Region Volume Capacity"
  536. required: true
  537. description: "Volume space available for region application data."
  538. value: "5Gi"
  539. -
  540. name: "DATABASE_VOLUME_CAPACITY"
  541. displayName: "Database Volume Capacity"
  542. required: true
  543. description: "Volume space available for database."
  544. value: "15Gi"