cfme-template.yaml 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940
  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: ServiceAccount
  14. metadata:
  15. name: cfme-orchestrator
  16. - apiVersion: v1
  17. kind: ServiceAccount
  18. metadata:
  19. name: cfme-anyuid
  20. - apiVersion: v1
  21. kind: ServiceAccount
  22. metadata:
  23. name: cfme-privileged
  24. - apiVersion: v1
  25. kind: ServiceAccount
  26. metadata:
  27. name: cfme-httpd
  28. - apiVersion: v1
  29. kind: Secret
  30. metadata:
  31. name: "${NAME}-secrets"
  32. stringData:
  33. pg-password: "${DATABASE_PASSWORD}"
  34. database-url: postgresql://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_SERVICE_NAME}/${DATABASE_NAME}?encoding=utf8&pool=5&wait_timeout=5
  35. v2-key: "${V2_KEY}"
  36. - apiVersion: v1
  37. kind: Secret
  38. metadata:
  39. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  40. stringData:
  41. rabbit-password: "${ANSIBLE_RABBITMQ_PASSWORD}"
  42. secret-key: "${ANSIBLE_SECRET_KEY}"
  43. admin-password: "${ANSIBLE_ADMIN_PASSWORD}"
  44. - apiVersion: v1
  45. kind: ConfigMap
  46. metadata:
  47. name: "${DATABASE_SERVICE_NAME}-configs"
  48. data:
  49. 01_miq_overrides.conf: |
  50. #------------------------------------------------------------------------------
  51. # CONNECTIONS AND AUTHENTICATION
  52. #------------------------------------------------------------------------------
  53. tcp_keepalives_count = 9
  54. tcp_keepalives_idle = 3
  55. tcp_keepalives_interval = 75
  56. #------------------------------------------------------------------------------
  57. # RESOURCE USAGE (except WAL)
  58. #------------------------------------------------------------------------------
  59. shared_preload_libraries = 'pglogical,repmgr_funcs'
  60. max_worker_processes = 10
  61. #------------------------------------------------------------------------------
  62. # WRITE AHEAD LOG
  63. #------------------------------------------------------------------------------
  64. wal_level = 'logical'
  65. wal_log_hints = on
  66. wal_buffers = 16MB
  67. checkpoint_completion_target = 0.9
  68. #------------------------------------------------------------------------------
  69. # REPLICATION
  70. #------------------------------------------------------------------------------
  71. max_wal_senders = 10
  72. wal_sender_timeout = 0
  73. max_replication_slots = 10
  74. hot_standby = on
  75. #------------------------------------------------------------------------------
  76. # ERROR REPORTING AND LOGGING
  77. #------------------------------------------------------------------------------
  78. log_filename = 'postgresql.log'
  79. log_rotation_age = 0
  80. log_min_duration_statement = 5000
  81. log_connections = on
  82. log_disconnections = on
  83. log_line_prefix = '%t:%r:%c:%u@%d:[%p]:'
  84. log_lock_waits = on
  85. #------------------------------------------------------------------------------
  86. # AUTOVACUUM PARAMETERS
  87. #------------------------------------------------------------------------------
  88. log_autovacuum_min_duration = 0
  89. autovacuum_naptime = 5min
  90. autovacuum_vacuum_threshold = 500
  91. autovacuum_analyze_threshold = 500
  92. autovacuum_vacuum_scale_factor = 0.05
  93. #------------------------------------------------------------------------------
  94. # LOCK MANAGEMENT
  95. #------------------------------------------------------------------------------
  96. deadlock_timeout = 5s
  97. #------------------------------------------------------------------------------
  98. # VERSION/PLATFORM COMPATIBILITY
  99. #------------------------------------------------------------------------------
  100. escape_string_warning = off
  101. standard_conforming_strings = off
  102. - apiVersion: v1
  103. kind: ConfigMap
  104. metadata:
  105. name: "${HTTPD_SERVICE_NAME}-configs"
  106. data:
  107. application.conf: |
  108. # Timeout: The number of seconds before receives and sends time out.
  109. Timeout 120
  110. RewriteEngine On
  111. Options SymLinksIfOwnerMatch
  112. <VirtualHost *:80>
  113. KeepAlive on
  114. ProxyPreserveHost on
  115. ProxyPass /ws/ ws://${NAME}/ws/
  116. ProxyPassReverse /ws/ ws://${NAME}/ws/
  117. ProxyPass / http://${NAME}/
  118. ProxyPassReverse / http://${NAME}/
  119. </VirtualHost>
  120. - apiVersion: v1
  121. kind: ConfigMap
  122. metadata:
  123. name: "${HTTPD_SERVICE_NAME}-auth-configs"
  124. data:
  125. auth-type: internal
  126. auth-configuration.conf: |
  127. # External Authentication Configuration File
  128. #
  129. # For details on usage please see https://github.com/ManageIQ/manageiq-pods/blob/master/README.md#configuring-external-authentication
  130. - apiVersion: v1
  131. kind: Service
  132. metadata:
  133. annotations:
  134. description: Exposes and load balances CloudForms pods
  135. service.alpha.openshift.io/dependencies: '[{"name":"${DATABASE_SERVICE_NAME}","namespace":"","kind":"Service"},{"name":"${MEMCACHED_SERVICE_NAME}","namespace":"","kind":"Service"}]'
  136. name: "${NAME}"
  137. spec:
  138. clusterIP: None
  139. ports:
  140. - name: http
  141. port: 80
  142. protocol: TCP
  143. targetPort: 80
  144. selector:
  145. name: "${NAME}"
  146. - apiVersion: v1
  147. kind: Route
  148. metadata:
  149. name: "${HTTPD_SERVICE_NAME}"
  150. spec:
  151. host: "${APPLICATION_DOMAIN}"
  152. port:
  153. targetPort: http
  154. tls:
  155. termination: edge
  156. insecureEdgeTerminationPolicy: Redirect
  157. to:
  158. kind: Service
  159. name: "${HTTPD_SERVICE_NAME}"
  160. - apiVersion: v1
  161. kind: PersistentVolumeClaim
  162. metadata:
  163. name: "${NAME}-${DATABASE_SERVICE_NAME}"
  164. spec:
  165. accessModes:
  166. - ReadWriteOnce
  167. resources:
  168. requests:
  169. storage: "${DATABASE_VOLUME_CAPACITY}"
  170. - apiVersion: apps/v1beta1
  171. kind: StatefulSet
  172. metadata:
  173. name: "${NAME}"
  174. annotations:
  175. description: Defines how to deploy the CloudForms appliance
  176. spec:
  177. serviceName: "${NAME}"
  178. replicas: "${APPLICATION_REPLICA_COUNT}"
  179. template:
  180. metadata:
  181. labels:
  182. name: "${NAME}"
  183. name: "${NAME}"
  184. spec:
  185. containers:
  186. - name: cloudforms
  187. image: "${FRONTEND_APPLICATION_IMG_NAME}:${FRONTEND_APPLICATION_IMG_TAG}"
  188. livenessProbe:
  189. tcpSocket:
  190. port: 80
  191. initialDelaySeconds: 480
  192. timeoutSeconds: 3
  193. readinessProbe:
  194. httpGet:
  195. path: "/"
  196. port: 80
  197. scheme: HTTP
  198. initialDelaySeconds: 200
  199. timeoutSeconds: 3
  200. ports:
  201. - containerPort: 80
  202. protocol: TCP
  203. volumeMounts:
  204. - name: "${NAME}-server"
  205. mountPath: "/persistent"
  206. env:
  207. - name: MY_POD_NAMESPACE
  208. valueFrom:
  209. fieldRef:
  210. fieldPath: metadata.namespace
  211. - name: APPLICATION_INIT_DELAY
  212. value: "${APPLICATION_INIT_DELAY}"
  213. - name: DATABASE_REGION
  214. value: "${DATABASE_REGION}"
  215. - name: DATABASE_URL
  216. valueFrom:
  217. secretKeyRef:
  218. name: "${NAME}-secrets"
  219. key: database-url
  220. - name: V2_KEY
  221. valueFrom:
  222. secretKeyRef:
  223. name: "${NAME}-secrets"
  224. key: v2-key
  225. - name: ANSIBLE_ADMIN_PASSWORD
  226. valueFrom:
  227. secretKeyRef:
  228. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  229. key: admin-password
  230. resources:
  231. requests:
  232. memory: "${APPLICATION_MEM_REQ}"
  233. cpu: "${APPLICATION_CPU_REQ}"
  234. limits:
  235. memory: "${APPLICATION_MEM_LIMIT}"
  236. lifecycle:
  237. preStop:
  238. exec:
  239. command:
  240. - "/opt/rh/cfme-container-scripts/sync-pv-data"
  241. serviceAccount: cfme-orchestrator
  242. serviceAccountName: cfme-orchestrator
  243. terminationGracePeriodSeconds: 90
  244. volumeClaimTemplates:
  245. - metadata:
  246. name: "${NAME}-server"
  247. annotations:
  248. spec:
  249. accessModes:
  250. - ReadWriteOnce
  251. resources:
  252. requests:
  253. storage: "${APPLICATION_VOLUME_CAPACITY}"
  254. - apiVersion: v1
  255. kind: Service
  256. metadata:
  257. annotations:
  258. description: Headless service for CloudForms backend pods
  259. name: "${NAME}-backend"
  260. spec:
  261. clusterIP: None
  262. selector:
  263. name: "${NAME}-backend"
  264. - apiVersion: apps/v1beta1
  265. kind: StatefulSet
  266. metadata:
  267. name: "${NAME}-backend"
  268. annotations:
  269. description: Defines how to deploy the CloudForms appliance
  270. spec:
  271. serviceName: "${NAME}-backend"
  272. replicas: 0
  273. template:
  274. metadata:
  275. labels:
  276. name: "${NAME}-backend"
  277. name: "${NAME}-backend"
  278. spec:
  279. containers:
  280. - name: cloudforms
  281. image: "${BACKEND_APPLICATION_IMG_NAME}:${BACKEND_APPLICATION_IMG_TAG}"
  282. livenessProbe:
  283. exec:
  284. command:
  285. - pidof
  286. - MIQ Server
  287. initialDelaySeconds: 480
  288. timeoutSeconds: 3
  289. volumeMounts:
  290. - name: "${NAME}-server"
  291. mountPath: "/persistent"
  292. env:
  293. - name: APPLICATION_INIT_DELAY
  294. value: "${APPLICATION_INIT_DELAY}"
  295. - name: DATABASE_URL
  296. valueFrom:
  297. secretKeyRef:
  298. name: "${NAME}-secrets"
  299. key: database-url
  300. - name: MIQ_SERVER_DEFAULT_ROLES
  301. value: database_operations,event,reporting,scheduler,smartstate,ems_operations,ems_inventory,automate
  302. - name: FRONTEND_SERVICE_NAME
  303. value: "${NAME}"
  304. - name: V2_KEY
  305. valueFrom:
  306. secretKeyRef:
  307. name: "${NAME}-secrets"
  308. key: v2-key
  309. - name: ANSIBLE_ADMIN_PASSWORD
  310. valueFrom:
  311. secretKeyRef:
  312. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  313. key: admin-password
  314. resources:
  315. requests:
  316. memory: "${APPLICATION_MEM_REQ}"
  317. cpu: "${APPLICATION_CPU_REQ}"
  318. limits:
  319. memory: "${APPLICATION_MEM_LIMIT}"
  320. lifecycle:
  321. preStop:
  322. exec:
  323. command:
  324. - "/opt/rh/cfme-container-scripts/sync-pv-data"
  325. serviceAccount: cfme-orchestrator
  326. serviceAccountName: cfme-orchestrator
  327. terminationGracePeriodSeconds: 90
  328. volumeClaimTemplates:
  329. - metadata:
  330. name: "${NAME}-server"
  331. annotations:
  332. spec:
  333. accessModes:
  334. - ReadWriteOnce
  335. resources:
  336. requests:
  337. storage: "${APPLICATION_VOLUME_CAPACITY}"
  338. - apiVersion: v1
  339. kind: Service
  340. metadata:
  341. name: "${MEMCACHED_SERVICE_NAME}"
  342. annotations:
  343. description: Exposes the memcached server
  344. spec:
  345. ports:
  346. - name: memcached
  347. port: 11211
  348. targetPort: 11211
  349. selector:
  350. name: "${MEMCACHED_SERVICE_NAME}"
  351. - apiVersion: v1
  352. kind: DeploymentConfig
  353. metadata:
  354. name: "${MEMCACHED_SERVICE_NAME}"
  355. annotations:
  356. description: Defines how to deploy memcached
  357. spec:
  358. strategy:
  359. type: Recreate
  360. triggers:
  361. - type: ConfigChange
  362. replicas: 1
  363. selector:
  364. name: "${MEMCACHED_SERVICE_NAME}"
  365. template:
  366. metadata:
  367. name: "${MEMCACHED_SERVICE_NAME}"
  368. labels:
  369. name: "${MEMCACHED_SERVICE_NAME}"
  370. spec:
  371. volumes: []
  372. containers:
  373. - name: memcached
  374. image: "${MEMCACHED_IMG_NAME}:${MEMCACHED_IMG_TAG}"
  375. ports:
  376. - containerPort: 11211
  377. readinessProbe:
  378. timeoutSeconds: 1
  379. initialDelaySeconds: 5
  380. tcpSocket:
  381. port: 11211
  382. livenessProbe:
  383. timeoutSeconds: 1
  384. initialDelaySeconds: 30
  385. tcpSocket:
  386. port: 11211
  387. volumeMounts: []
  388. env:
  389. - name: MEMCACHED_MAX_MEMORY
  390. value: "${MEMCACHED_MAX_MEMORY}"
  391. - name: MEMCACHED_MAX_CONNECTIONS
  392. value: "${MEMCACHED_MAX_CONNECTIONS}"
  393. - name: MEMCACHED_SLAB_PAGE_SIZE
  394. value: "${MEMCACHED_SLAB_PAGE_SIZE}"
  395. resources:
  396. requests:
  397. memory: "${MEMCACHED_MEM_REQ}"
  398. cpu: "${MEMCACHED_CPU_REQ}"
  399. limits:
  400. memory: "${MEMCACHED_MEM_LIMIT}"
  401. - apiVersion: v1
  402. kind: Service
  403. metadata:
  404. name: "${DATABASE_SERVICE_NAME}"
  405. annotations:
  406. description: Exposes the database server
  407. spec:
  408. ports:
  409. - name: postgresql
  410. port: 5432
  411. targetPort: 5432
  412. selector:
  413. name: "${DATABASE_SERVICE_NAME}"
  414. - apiVersion: v1
  415. kind: DeploymentConfig
  416. metadata:
  417. name: "${DATABASE_SERVICE_NAME}"
  418. annotations:
  419. description: Defines how to deploy the database
  420. spec:
  421. strategy:
  422. type: Recreate
  423. triggers:
  424. - type: ConfigChange
  425. replicas: 1
  426. selector:
  427. name: "${DATABASE_SERVICE_NAME}"
  428. template:
  429. metadata:
  430. name: "${DATABASE_SERVICE_NAME}"
  431. labels:
  432. name: "${DATABASE_SERVICE_NAME}"
  433. spec:
  434. volumes:
  435. - name: cfme-pgdb-volume
  436. persistentVolumeClaim:
  437. claimName: "${NAME}-${DATABASE_SERVICE_NAME}"
  438. - name: cfme-pg-configs
  439. configMap:
  440. name: "${DATABASE_SERVICE_NAME}-configs"
  441. containers:
  442. - name: postgresql
  443. image: "${POSTGRESQL_IMG_NAME}:${POSTGRESQL_IMG_TAG}"
  444. ports:
  445. - containerPort: 5432
  446. readinessProbe:
  447. timeoutSeconds: 1
  448. initialDelaySeconds: 15
  449. exec:
  450. command:
  451. - "/bin/sh"
  452. - "-i"
  453. - "-c"
  454. - psql -h 127.0.0.1 -U ${POSTGRESQL_USER} -q -d ${POSTGRESQL_DATABASE} -c 'SELECT 1'
  455. livenessProbe:
  456. timeoutSeconds: 1
  457. initialDelaySeconds: 60
  458. tcpSocket:
  459. port: 5432
  460. volumeMounts:
  461. - name: cfme-pgdb-volume
  462. mountPath: "/var/lib/pgsql/data"
  463. - name: cfme-pg-configs
  464. mountPath: "${POSTGRESQL_CONFIG_DIR}"
  465. env:
  466. - name: POSTGRESQL_USER
  467. value: "${DATABASE_USER}"
  468. - name: POSTGRESQL_PASSWORD
  469. valueFrom:
  470. secretKeyRef:
  471. name: "${NAME}-secrets"
  472. key: pg-password
  473. - name: POSTGRESQL_DATABASE
  474. value: "${DATABASE_NAME}"
  475. - name: POSTGRESQL_MAX_CONNECTIONS
  476. value: "${POSTGRESQL_MAX_CONNECTIONS}"
  477. - name: POSTGRESQL_SHARED_BUFFERS
  478. value: "${POSTGRESQL_SHARED_BUFFERS}"
  479. - name: POSTGRESQL_CONFIG_DIR
  480. value: "${POSTGRESQL_CONFIG_DIR}"
  481. resources:
  482. requests:
  483. memory: "${POSTGRESQL_MEM_REQ}"
  484. cpu: "${POSTGRESQL_CPU_REQ}"
  485. limits:
  486. memory: "${POSTGRESQL_MEM_LIMIT}"
  487. - apiVersion: v1
  488. kind: Service
  489. metadata:
  490. annotations:
  491. description: Exposes and load balances Ansible pods
  492. service.alpha.openshift.io/dependencies: '[{"name":"${DATABASE_SERVICE_NAME}","namespace":"","kind":"Service"}]'
  493. name: "${ANSIBLE_SERVICE_NAME}"
  494. spec:
  495. ports:
  496. - name: http
  497. port: 80
  498. protocol: TCP
  499. targetPort: 80
  500. - name: https
  501. port: 443
  502. protocol: TCP
  503. targetPort: 443
  504. selector:
  505. name: "${ANSIBLE_SERVICE_NAME}"
  506. - apiVersion: v1
  507. kind: DeploymentConfig
  508. metadata:
  509. name: "${ANSIBLE_SERVICE_NAME}"
  510. annotations:
  511. description: Defines how to deploy the Ansible appliance
  512. spec:
  513. strategy:
  514. type: Recreate
  515. serviceName: "${ANSIBLE_SERVICE_NAME}"
  516. replicas: 0
  517. template:
  518. metadata:
  519. labels:
  520. name: "${ANSIBLE_SERVICE_NAME}"
  521. name: "${ANSIBLE_SERVICE_NAME}"
  522. spec:
  523. containers:
  524. - name: ansible
  525. image: "${ANSIBLE_IMG_NAME}:${ANSIBLE_IMG_TAG}"
  526. livenessProbe:
  527. tcpSocket:
  528. port: 443
  529. initialDelaySeconds: 480
  530. timeoutSeconds: 3
  531. readinessProbe:
  532. httpGet:
  533. path: "/"
  534. port: 443
  535. scheme: HTTPS
  536. initialDelaySeconds: 200
  537. timeoutSeconds: 3
  538. ports:
  539. - containerPort: 80
  540. protocol: TCP
  541. - containerPort: 443
  542. protocol: TCP
  543. securityContext:
  544. privileged: true
  545. env:
  546. - name: ADMIN_PASSWORD
  547. valueFrom:
  548. secretKeyRef:
  549. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  550. key: admin-password
  551. - name: RABBITMQ_USER_NAME
  552. value: "${ANSIBLE_RABBITMQ_USER_NAME}"
  553. - name: RABBITMQ_PASSWORD
  554. valueFrom:
  555. secretKeyRef:
  556. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  557. key: rabbit-password
  558. - name: ANSIBLE_SECRET_KEY
  559. valueFrom:
  560. secretKeyRef:
  561. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  562. key: secret-key
  563. - name: DATABASE_SERVICE_NAME
  564. value: "${DATABASE_SERVICE_NAME}"
  565. - name: POSTGRESQL_USER
  566. value: "${DATABASE_USER}"
  567. - name: POSTGRESQL_PASSWORD
  568. valueFrom:
  569. secretKeyRef:
  570. name: "${NAME}-secrets"
  571. key: pg-password
  572. - name: POSTGRESQL_DATABASE
  573. value: "${ANSIBLE_DATABASE_NAME}"
  574. resources:
  575. requests:
  576. memory: "${ANSIBLE_MEM_REQ}"
  577. cpu: "${ANSIBLE_CPU_REQ}"
  578. limits:
  579. memory: "${ANSIBLE_MEM_LIMIT}"
  580. serviceAccount: cfme-privileged
  581. serviceAccountName: cfme-privileged
  582. - apiVersion: v1
  583. kind: Service
  584. metadata:
  585. name: "${HTTPD_SERVICE_NAME}"
  586. annotations:
  587. description: Exposes the httpd server
  588. service.alpha.openshift.io/dependencies: '[{"name":"${NAME}","namespace":"","kind":"Service"}]'
  589. spec:
  590. ports:
  591. - name: http
  592. port: 80
  593. targetPort: 80
  594. selector:
  595. name: httpd
  596. - apiVersion: v1
  597. kind: DeploymentConfig
  598. metadata:
  599. name: "${HTTPD_SERVICE_NAME}"
  600. annotations:
  601. description: Defines how to deploy httpd
  602. spec:
  603. strategy:
  604. type: Recreate
  605. recreateParams:
  606. timeoutSeconds: 1200
  607. triggers:
  608. - type: ConfigChange
  609. replicas: 1
  610. selector:
  611. name: "${HTTPD_SERVICE_NAME}"
  612. template:
  613. metadata:
  614. name: "${HTTPD_SERVICE_NAME}"
  615. labels:
  616. name: "${HTTPD_SERVICE_NAME}"
  617. spec:
  618. volumes:
  619. - name: httpd-config
  620. configMap:
  621. name: "${HTTPD_SERVICE_NAME}-configs"
  622. - name: httpd-auth-config
  623. configMap:
  624. name: "${HTTPD_SERVICE_NAME}-auth-configs"
  625. containers:
  626. - name: httpd
  627. image: "${HTTPD_IMG_NAME}:${HTTPD_IMG_TAG}"
  628. ports:
  629. - containerPort: 80
  630. livenessProbe:
  631. exec:
  632. command:
  633. - pidof
  634. - httpd
  635. initialDelaySeconds: 15
  636. timeoutSeconds: 3
  637. readinessProbe:
  638. tcpSocket:
  639. port: 80
  640. initialDelaySeconds: 10
  641. timeoutSeconds: 3
  642. volumeMounts:
  643. - name: httpd-config
  644. mountPath: "${HTTPD_CONFIG_DIR}"
  645. - name: httpd-auth-config
  646. mountPath: "${HTTPD_AUTH_CONFIG_DIR}"
  647. resources:
  648. requests:
  649. memory: "${HTTPD_MEM_REQ}"
  650. cpu: "${HTTPD_CPU_REQ}"
  651. limits:
  652. memory: "${HTTPD_MEM_LIMIT}"
  653. env:
  654. - name: HTTPD_AUTH_TYPE
  655. valueFrom:
  656. configMapKeyRef:
  657. name: "${HTTPD_SERVICE_NAME}-auth-configs"
  658. key: auth-type
  659. lifecycle:
  660. postStart:
  661. exec:
  662. command:
  663. - "/usr/bin/save-container-environment"
  664. serviceAccount: cfme-httpd
  665. serviceAccountName: cfme-httpd
  666. parameters:
  667. - name: NAME
  668. displayName: Name
  669. required: true
  670. description: The name assigned to all of the frontend objects defined in this template.
  671. value: cloudforms
  672. - name: V2_KEY
  673. displayName: CloudForms Encryption Key
  674. required: true
  675. description: Encryption Key for CloudForms Passwords
  676. from: "[a-zA-Z0-9]{43}"
  677. generate: expression
  678. - name: DATABASE_SERVICE_NAME
  679. displayName: PostgreSQL Service Name
  680. required: true
  681. description: The name of the OpenShift Service exposed for the PostgreSQL container.
  682. value: postgresql
  683. - name: DATABASE_USER
  684. displayName: PostgreSQL User
  685. required: true
  686. description: PostgreSQL user that will access the database.
  687. value: root
  688. - name: DATABASE_PASSWORD
  689. displayName: PostgreSQL Password
  690. required: true
  691. description: Password for the PostgreSQL user.
  692. from: "[a-zA-Z0-9]{8}"
  693. generate: expression
  694. - name: DATABASE_NAME
  695. required: true
  696. displayName: PostgreSQL Database Name
  697. description: Name of the PostgreSQL database accessed.
  698. value: vmdb_production
  699. - name: DATABASE_REGION
  700. required: true
  701. displayName: Application Database Region
  702. description: Database region that will be used for application.
  703. value: '0'
  704. - name: ANSIBLE_DATABASE_NAME
  705. displayName: Ansible PostgreSQL database name
  706. required: true
  707. description: The database to be used by the Ansible continer
  708. value: awx
  709. - name: MEMCACHED_SERVICE_NAME
  710. required: true
  711. displayName: Memcached Service Name
  712. description: The name of the OpenShift Service exposed for the Memcached container.
  713. value: memcached
  714. - name: MEMCACHED_MAX_MEMORY
  715. displayName: Memcached Max Memory
  716. description: Memcached maximum memory for memcached object storage in MB.
  717. value: '64'
  718. - name: MEMCACHED_MAX_CONNECTIONS
  719. displayName: Memcached Max Connections
  720. description: Memcached maximum number of connections allowed.
  721. value: '1024'
  722. - name: MEMCACHED_SLAB_PAGE_SIZE
  723. displayName: Memcached Slab Page Size
  724. description: Memcached size of each slab page.
  725. value: 1m
  726. - name: POSTGRESQL_CONFIG_DIR
  727. displayName: PostgreSQL Configuration Overrides
  728. description: Directory used to store PostgreSQL configuration overrides.
  729. value: "/var/lib/pgsql/conf.d"
  730. - name: POSTGRESQL_MAX_CONNECTIONS
  731. displayName: PostgreSQL Max Connections
  732. description: PostgreSQL maximum number of database connections allowed.
  733. value: '1000'
  734. - name: POSTGRESQL_SHARED_BUFFERS
  735. displayName: PostgreSQL Shared Buffer Amount
  736. description: Amount of memory dedicated for PostgreSQL shared memory buffers.
  737. value: 1GB
  738. - name: ANSIBLE_SERVICE_NAME
  739. displayName: Ansible Service Name
  740. description: The name of the OpenShift Service exposed for the Ansible container.
  741. value: ansible
  742. - name: ANSIBLE_ADMIN_PASSWORD
  743. displayName: Ansible admin User password
  744. required: true
  745. description: The password for the Ansible container admin user
  746. from: "[a-zA-Z0-9]{32}"
  747. generate: expression
  748. - name: ANSIBLE_SECRET_KEY
  749. displayName: Ansible Secret Key
  750. required: true
  751. description: Encryption key for the Ansible container
  752. from: "[a-f0-9]{32}"
  753. generate: expression
  754. - name: ANSIBLE_RABBITMQ_USER_NAME
  755. displayName: RabbitMQ Username
  756. required: true
  757. description: Username for the Ansible RabbitMQ Server
  758. value: ansible
  759. - name: ANSIBLE_RABBITMQ_PASSWORD
  760. displayName: RabbitMQ Server Password
  761. required: true
  762. description: Password for the Ansible RabbitMQ Server
  763. from: "[a-zA-Z0-9]{32}"
  764. generate: expression
  765. - name: APPLICATION_CPU_REQ
  766. displayName: Application Min CPU Requested
  767. required: true
  768. description: Minimum amount of CPU time the Application container will need (expressed in millicores).
  769. value: 1000m
  770. - name: POSTGRESQL_CPU_REQ
  771. displayName: PostgreSQL Min CPU Requested
  772. required: true
  773. description: Minimum amount of CPU time the PostgreSQL container will need (expressed in millicores).
  774. value: 500m
  775. - name: MEMCACHED_CPU_REQ
  776. displayName: Memcached Min CPU Requested
  777. required: true
  778. description: Minimum amount of CPU time the Memcached container will need (expressed in millicores).
  779. value: 200m
  780. - name: ANSIBLE_CPU_REQ
  781. displayName: Ansible Min CPU Requested
  782. required: true
  783. description: Minimum amount of CPU time the Ansible container will need (expressed in millicores).
  784. value: 1000m
  785. - name: APPLICATION_MEM_REQ
  786. displayName: Application Min RAM Requested
  787. required: true
  788. description: Minimum amount of memory the Application container will need.
  789. value: 6144Mi
  790. - name: POSTGRESQL_MEM_REQ
  791. displayName: PostgreSQL Min RAM Requested
  792. required: true
  793. description: Minimum amount of memory the PostgreSQL container will need.
  794. value: 4Gi
  795. - name: MEMCACHED_MEM_REQ
  796. displayName: Memcached Min RAM Requested
  797. required: true
  798. description: Minimum amount of memory the Memcached container will need.
  799. value: 64Mi
  800. - name: ANSIBLE_MEM_REQ
  801. displayName: Ansible Min RAM Requested
  802. required: true
  803. description: Minimum amount of memory the Ansible container will need.
  804. value: 2048Mi
  805. - name: APPLICATION_MEM_LIMIT
  806. displayName: Application Max RAM Limit
  807. required: true
  808. description: Maximum amount of memory the Application container can consume.
  809. value: 16384Mi
  810. - name: POSTGRESQL_MEM_LIMIT
  811. displayName: PostgreSQL Max RAM Limit
  812. required: true
  813. description: Maximum amount of memory the PostgreSQL container can consume.
  814. value: 8Gi
  815. - name: MEMCACHED_MEM_LIMIT
  816. displayName: Memcached Max RAM Limit
  817. required: true
  818. description: Maximum amount of memory the Memcached container can consume.
  819. value: 256Mi
  820. - name: ANSIBLE_MEM_LIMIT
  821. displayName: Ansible Max RAM Limit
  822. required: true
  823. description: Maximum amount of memory the Ansible container can consume.
  824. value: 8096Mi
  825. - name: POSTGRESQL_IMG_NAME
  826. displayName: PostgreSQL Image Name
  827. description: This is the PostgreSQL image name requested to deploy.
  828. value: brew-pulp-docker01.web.prod.ext.phx2.redhat.com:8888/cloudforms46/cfme-openshift-postgresql
  829. - name: POSTGRESQL_IMG_TAG
  830. displayName: PostgreSQL Image Tag
  831. description: This is the PostgreSQL image tag/version requested to deploy.
  832. value: latest
  833. - name: MEMCACHED_IMG_NAME
  834. displayName: Memcached Image Name
  835. description: This is the Memcached image name requested to deploy.
  836. value: brew-pulp-docker01.web.prod.ext.phx2.redhat.com:8888/cloudforms46/cfme-openshift-memcached
  837. - name: MEMCACHED_IMG_TAG
  838. displayName: Memcached Image Tag
  839. description: This is the Memcached image tag/version requested to deploy.
  840. value: latest
  841. - name: FRONTEND_APPLICATION_IMG_NAME
  842. displayName: Frontend Application Image Name
  843. description: This is the Frontend Application image name requested to deploy.
  844. value: brew-pulp-docker01.web.prod.ext.phx2.redhat.com:8888/cloudforms46/cfme-openshift-app-ui
  845. - name: BACKEND_APPLICATION_IMG_NAME
  846. displayName: Backend Application Image Name
  847. description: This is the Backend Application image name requested to deploy.
  848. value: brew-pulp-docker01.web.prod.ext.phx2.redhat.com:8888/cloudforms46/cfme-openshift-app
  849. - name: FRONTEND_APPLICATION_IMG_TAG
  850. displayName: Front end Application Image Tag
  851. description: This is the CloudForms Frontend Application image tag/version requested to deploy.
  852. value: latest
  853. - name: BACKEND_APPLICATION_IMG_TAG
  854. displayName: Back end Application Image Tag
  855. description: This is the CloudForms Backend Application image tag/version requested to deploy.
  856. value: latest
  857. - name: ANSIBLE_IMG_NAME
  858. displayName: Ansible Image Name
  859. description: This is the Ansible image name requested to deploy.
  860. value: brew-pulp-docker01.web.prod.ext.phx2.redhat.com:8888/cloudforms46/cfme-openshift-embedded-ansible
  861. - name: ANSIBLE_IMG_TAG
  862. displayName: Ansible Image Tag
  863. description: This is the Ansible image tag/version requested to deploy.
  864. value: latest
  865. - name: APPLICATION_DOMAIN
  866. displayName: Application Hostname
  867. description: The exposed hostname that will route to the application service, if left blank a value will be defaulted.
  868. value: ''
  869. - name: APPLICATION_REPLICA_COUNT
  870. displayName: Application Replica Count
  871. description: This is the number of Application replicas requested to deploy.
  872. value: '1'
  873. - name: APPLICATION_INIT_DELAY
  874. displayName: Application Init Delay
  875. required: true
  876. description: Delay in seconds before we attempt to initialize the application.
  877. value: '15'
  878. - name: APPLICATION_VOLUME_CAPACITY
  879. displayName: Application Volume Capacity
  880. required: true
  881. description: Volume space available for application data.
  882. value: 5Gi
  883. - name: DATABASE_VOLUME_CAPACITY
  884. displayName: Database Volume Capacity
  885. required: true
  886. description: Volume space available for database.
  887. value: 15Gi
  888. - name: HTTPD_SERVICE_NAME
  889. required: true
  890. displayName: Apache httpd Service Name
  891. description: The name of the OpenShift Service exposed for the httpd container.
  892. value: httpd
  893. - name: HTTPD_IMG_NAME
  894. displayName: Apache httpd Image Name
  895. description: This is the httpd image name requested to deploy.
  896. value: brew-pulp-docker01.web.prod.ext.phx2.redhat.com:8888/cloudforms46/cfme-openshift-httpd
  897. - name: HTTPD_IMG_TAG
  898. displayName: Apache httpd Image Tag
  899. description: This is the httpd image tag/version requested to deploy.
  900. value: latest
  901. - name: HTTPD_CONFIG_DIR
  902. displayName: Apache Configuration Directory
  903. description: Directory used to store the Apache configuration files.
  904. value: "/etc/httpd/conf.d"
  905. - name: HTTPD_AUTH_CONFIG_DIR
  906. displayName: External Authentication Configuration Directory
  907. description: Directory used to store the external authentication configuration files.
  908. value: "/etc/httpd/auth-conf.d"
  909. - name: HTTPD_CPU_REQ
  910. displayName: Apache httpd Min CPU Requested
  911. required: true
  912. description: Minimum amount of CPU time the httpd container will need (expressed in millicores).
  913. value: 500m
  914. - name: HTTPD_MEM_REQ
  915. displayName: Apache httpd Min RAM Requested
  916. required: true
  917. description: Minimum amount of memory the httpd container will need.
  918. value: 512Mi
  919. - name: HTTPD_MEM_LIMIT
  920. displayName: Apache httpd Max RAM Limit
  921. required: true
  922. description: Maximum amount of memory the httpd container can consume.
  923. value: 8192Mi