miq-template.yaml 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948
  1. apiVersion: v1
  2. kind: Template
  3. labels:
  4. template: manageiq
  5. metadata:
  6. name: manageiq
  7. annotations:
  8. description: ManageIQ appliance with persistent storage
  9. tags: instant-app,manageiq,miq
  10. iconClass: icon-rails
  11. objects:
  12. - apiVersion: v1
  13. kind: ServiceAccount
  14. metadata:
  15. name: miq-orchestrator
  16. - apiVersion: v1
  17. kind: ServiceAccount
  18. metadata:
  19. name: miq-anyuid
  20. - apiVersion: v1
  21. kind: ServiceAccount
  22. metadata:
  23. name: miq-privileged
  24. - apiVersion: v1
  25. kind: ServiceAccount
  26. metadata:
  27. name: miq-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 ManageIQ 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 ManageIQ 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: manageiq
  187. image: "${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_SERVICE_NAME
  214. value: "${DATABASE_SERVICE_NAME}"
  215. - name: DATABASE_REGION
  216. value: "${DATABASE_REGION}"
  217. - name: DATABASE_URL
  218. valueFrom:
  219. secretKeyRef:
  220. name: "${NAME}-secrets"
  221. key: database-url
  222. - name: MEMCACHED_SERVER
  223. value: "${MEMCACHED_SERVICE_NAME}:11211"
  224. - name: MEMCACHED_SERVICE_NAME
  225. value: "${MEMCACHED_SERVICE_NAME}"
  226. - name: V2_KEY
  227. valueFrom:
  228. secretKeyRef:
  229. name: "${NAME}-secrets"
  230. key: v2-key
  231. - name: ANSIBLE_SERVICE_NAME
  232. value: "${ANSIBLE_SERVICE_NAME}"
  233. - name: ANSIBLE_ADMIN_PASSWORD
  234. valueFrom:
  235. secretKeyRef:
  236. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  237. key: admin-password
  238. resources:
  239. requests:
  240. memory: "${APPLICATION_MEM_REQ}"
  241. cpu: "${APPLICATION_CPU_REQ}"
  242. limits:
  243. memory: "${APPLICATION_MEM_LIMIT}"
  244. lifecycle:
  245. preStop:
  246. exec:
  247. command:
  248. - "/opt/manageiq/container-scripts/sync-pv-data"
  249. serviceAccount: miq-orchestrator
  250. serviceAccountName: miq-orchestrator
  251. terminationGracePeriodSeconds: 90
  252. volumeClaimTemplates:
  253. - metadata:
  254. name: "${NAME}-server"
  255. annotations:
  256. spec:
  257. accessModes:
  258. - ReadWriteOnce
  259. resources:
  260. requests:
  261. storage: "${APPLICATION_VOLUME_CAPACITY}"
  262. - apiVersion: v1
  263. kind: Service
  264. metadata:
  265. annotations:
  266. description: Headless service for ManageIQ backend pods
  267. name: "${NAME}-backend"
  268. spec:
  269. clusterIP: None
  270. selector:
  271. name: "${NAME}-backend"
  272. - apiVersion: apps/v1beta1
  273. kind: StatefulSet
  274. metadata:
  275. name: "${NAME}-backend"
  276. annotations:
  277. description: Defines how to deploy the ManageIQ appliance
  278. spec:
  279. serviceName: "${NAME}-backend"
  280. replicas: 0
  281. template:
  282. metadata:
  283. labels:
  284. name: "${NAME}-backend"
  285. name: "${NAME}-backend"
  286. spec:
  287. containers:
  288. - name: manageiq
  289. image: "${APPLICATION_IMG_NAME}:${BACKEND_APPLICATION_IMG_TAG}"
  290. livenessProbe:
  291. exec:
  292. command:
  293. - pidof
  294. - MIQ Server
  295. initialDelaySeconds: 480
  296. timeoutSeconds: 3
  297. volumeMounts:
  298. - name: "${NAME}-server"
  299. mountPath: "/persistent"
  300. env:
  301. - name: APPLICATION_INIT_DELAY
  302. value: "${APPLICATION_INIT_DELAY}"
  303. - name: DATABASE_URL
  304. valueFrom:
  305. secretKeyRef:
  306. name: "${NAME}-secrets"
  307. key: database-url
  308. - name: MIQ_SERVER_DEFAULT_ROLES
  309. value: database_operations,event,reporting,scheduler,smartstate,ems_operations,ems_inventory,automate
  310. - name: FRONTEND_SERVICE_NAME
  311. value: "${NAME}"
  312. - name: MEMCACHED_SERVER
  313. value: "${MEMCACHED_SERVICE_NAME}:11211"
  314. - name: V2_KEY
  315. valueFrom:
  316. secretKeyRef:
  317. name: "${NAME}-secrets"
  318. key: v2-key
  319. - name: ANSIBLE_SERVICE_NAME
  320. value: "${ANSIBLE_SERVICE_NAME}"
  321. - name: ANSIBLE_ADMIN_PASSWORD
  322. valueFrom:
  323. secretKeyRef:
  324. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  325. key: admin-password
  326. resources:
  327. requests:
  328. memory: "${APPLICATION_MEM_REQ}"
  329. cpu: "${APPLICATION_CPU_REQ}"
  330. limits:
  331. memory: "${APPLICATION_MEM_LIMIT}"
  332. lifecycle:
  333. preStop:
  334. exec:
  335. command:
  336. - "/opt/manageiq/container-scripts/sync-pv-data"
  337. serviceAccount: miq-orchestrator
  338. serviceAccountName: miq-orchestrator
  339. terminationGracePeriodSeconds: 90
  340. volumeClaimTemplates:
  341. - metadata:
  342. name: "${NAME}-server"
  343. annotations:
  344. spec:
  345. accessModes:
  346. - ReadWriteOnce
  347. resources:
  348. requests:
  349. storage: "${APPLICATION_VOLUME_CAPACITY}"
  350. - apiVersion: v1
  351. kind: Service
  352. metadata:
  353. name: "${MEMCACHED_SERVICE_NAME}"
  354. annotations:
  355. description: Exposes the memcached server
  356. spec:
  357. ports:
  358. - name: memcached
  359. port: 11211
  360. targetPort: 11211
  361. selector:
  362. name: "${MEMCACHED_SERVICE_NAME}"
  363. - apiVersion: v1
  364. kind: DeploymentConfig
  365. metadata:
  366. name: "${MEMCACHED_SERVICE_NAME}"
  367. annotations:
  368. description: Defines how to deploy memcached
  369. spec:
  370. strategy:
  371. type: Recreate
  372. triggers:
  373. - type: ConfigChange
  374. replicas: 1
  375. selector:
  376. name: "${MEMCACHED_SERVICE_NAME}"
  377. template:
  378. metadata:
  379. name: "${MEMCACHED_SERVICE_NAME}"
  380. labels:
  381. name: "${MEMCACHED_SERVICE_NAME}"
  382. spec:
  383. volumes: []
  384. containers:
  385. - name: memcached
  386. image: "${MEMCACHED_IMG_NAME}:${MEMCACHED_IMG_TAG}"
  387. ports:
  388. - containerPort: 11211
  389. readinessProbe:
  390. timeoutSeconds: 1
  391. initialDelaySeconds: 5
  392. tcpSocket:
  393. port: 11211
  394. livenessProbe:
  395. timeoutSeconds: 1
  396. initialDelaySeconds: 30
  397. tcpSocket:
  398. port: 11211
  399. volumeMounts: []
  400. env:
  401. - name: MEMCACHED_MAX_MEMORY
  402. value: "${MEMCACHED_MAX_MEMORY}"
  403. - name: MEMCACHED_MAX_CONNECTIONS
  404. value: "${MEMCACHED_MAX_CONNECTIONS}"
  405. - name: MEMCACHED_SLAB_PAGE_SIZE
  406. value: "${MEMCACHED_SLAB_PAGE_SIZE}"
  407. resources:
  408. requests:
  409. memory: "${MEMCACHED_MEM_REQ}"
  410. cpu: "${MEMCACHED_CPU_REQ}"
  411. limits:
  412. memory: "${MEMCACHED_MEM_LIMIT}"
  413. - apiVersion: v1
  414. kind: Service
  415. metadata:
  416. name: "${DATABASE_SERVICE_NAME}"
  417. annotations:
  418. description: Exposes the database server
  419. spec:
  420. ports:
  421. - name: postgresql
  422. port: 5432
  423. targetPort: 5432
  424. selector:
  425. name: "${DATABASE_SERVICE_NAME}"
  426. - apiVersion: v1
  427. kind: DeploymentConfig
  428. metadata:
  429. name: "${DATABASE_SERVICE_NAME}"
  430. annotations:
  431. description: Defines how to deploy the database
  432. spec:
  433. strategy:
  434. type: Recreate
  435. triggers:
  436. - type: ConfigChange
  437. replicas: 1
  438. selector:
  439. name: "${DATABASE_SERVICE_NAME}"
  440. template:
  441. metadata:
  442. name: "${DATABASE_SERVICE_NAME}"
  443. labels:
  444. name: "${DATABASE_SERVICE_NAME}"
  445. spec:
  446. volumes:
  447. - name: miq-pgdb-volume
  448. persistentVolumeClaim:
  449. claimName: "${NAME}-${DATABASE_SERVICE_NAME}"
  450. - name: miq-pg-configs
  451. configMap:
  452. name: "${DATABASE_SERVICE_NAME}-configs"
  453. containers:
  454. - name: postgresql
  455. image: "${POSTGRESQL_IMG_NAME}:${POSTGRESQL_IMG_TAG}"
  456. ports:
  457. - containerPort: 5432
  458. readinessProbe:
  459. timeoutSeconds: 1
  460. initialDelaySeconds: 15
  461. exec:
  462. command:
  463. - "/bin/sh"
  464. - "-i"
  465. - "-c"
  466. - psql -h 127.0.0.1 -U ${POSTGRESQL_USER} -q -d ${POSTGRESQL_DATABASE} -c 'SELECT 1'
  467. livenessProbe:
  468. timeoutSeconds: 1
  469. initialDelaySeconds: 60
  470. tcpSocket:
  471. port: 5432
  472. volumeMounts:
  473. - name: miq-pgdb-volume
  474. mountPath: "/var/lib/pgsql/data"
  475. - name: miq-pg-configs
  476. mountPath: "${POSTGRESQL_CONFIG_DIR}"
  477. env:
  478. - name: POSTGRESQL_USER
  479. value: "${DATABASE_USER}"
  480. - name: POSTGRESQL_PASSWORD
  481. valueFrom:
  482. secretKeyRef:
  483. name: "${NAME}-secrets"
  484. key: pg-password
  485. - name: POSTGRESQL_DATABASE
  486. value: "${DATABASE_NAME}"
  487. - name: POSTGRESQL_MAX_CONNECTIONS
  488. value: "${POSTGRESQL_MAX_CONNECTIONS}"
  489. - name: POSTGRESQL_SHARED_BUFFERS
  490. value: "${POSTGRESQL_SHARED_BUFFERS}"
  491. - name: POSTGRESQL_CONFIG_DIR
  492. value: "${POSTGRESQL_CONFIG_DIR}"
  493. resources:
  494. requests:
  495. memory: "${POSTGRESQL_MEM_REQ}"
  496. cpu: "${POSTGRESQL_CPU_REQ}"
  497. limits:
  498. memory: "${POSTGRESQL_MEM_LIMIT}"
  499. - apiVersion: v1
  500. kind: Service
  501. metadata:
  502. annotations:
  503. description: Exposes and load balances Ansible pods
  504. service.alpha.openshift.io/dependencies: '[{"name":"${DATABASE_SERVICE_NAME}","namespace":"","kind":"Service"}]'
  505. name: "${ANSIBLE_SERVICE_NAME}"
  506. spec:
  507. ports:
  508. - name: http
  509. port: 80
  510. protocol: TCP
  511. targetPort: 80
  512. - name: https
  513. port: 443
  514. protocol: TCP
  515. targetPort: 443
  516. selector:
  517. name: "${ANSIBLE_SERVICE_NAME}"
  518. - apiVersion: v1
  519. kind: DeploymentConfig
  520. metadata:
  521. name: "${ANSIBLE_SERVICE_NAME}"
  522. annotations:
  523. description: Defines how to deploy the Ansible appliance
  524. spec:
  525. strategy:
  526. type: Recreate
  527. serviceName: "${ANSIBLE_SERVICE_NAME}"
  528. replicas: 0
  529. template:
  530. metadata:
  531. labels:
  532. name: "${ANSIBLE_SERVICE_NAME}"
  533. name: "${ANSIBLE_SERVICE_NAME}"
  534. spec:
  535. containers:
  536. - name: ansible
  537. image: "${ANSIBLE_IMG_NAME}:${ANSIBLE_IMG_TAG}"
  538. livenessProbe:
  539. tcpSocket:
  540. port: 443
  541. initialDelaySeconds: 480
  542. timeoutSeconds: 3
  543. readinessProbe:
  544. httpGet:
  545. path: "/"
  546. port: 443
  547. scheme: HTTPS
  548. initialDelaySeconds: 200
  549. timeoutSeconds: 3
  550. ports:
  551. - containerPort: 80
  552. protocol: TCP
  553. - containerPort: 443
  554. protocol: TCP
  555. securityContext:
  556. privileged: true
  557. env:
  558. - name: ADMIN_PASSWORD
  559. valueFrom:
  560. secretKeyRef:
  561. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  562. key: admin-password
  563. - name: RABBITMQ_USER_NAME
  564. value: "${ANSIBLE_RABBITMQ_USER_NAME}"
  565. - name: RABBITMQ_PASSWORD
  566. valueFrom:
  567. secretKeyRef:
  568. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  569. key: rabbit-password
  570. - name: ANSIBLE_SECRET_KEY
  571. valueFrom:
  572. secretKeyRef:
  573. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  574. key: secret-key
  575. - name: DATABASE_SERVICE_NAME
  576. value: "${DATABASE_SERVICE_NAME}"
  577. - name: POSTGRESQL_USER
  578. value: "${DATABASE_USER}"
  579. - name: POSTGRESQL_PASSWORD
  580. valueFrom:
  581. secretKeyRef:
  582. name: "${NAME}-secrets"
  583. key: pg-password
  584. - name: POSTGRESQL_DATABASE
  585. value: "${ANSIBLE_DATABASE_NAME}"
  586. resources:
  587. requests:
  588. memory: "${ANSIBLE_MEM_REQ}"
  589. cpu: "${ANSIBLE_CPU_REQ}"
  590. limits:
  591. memory: "${ANSIBLE_MEM_LIMIT}"
  592. serviceAccount: miq-privileged
  593. serviceAccountName: miq-privileged
  594. - apiVersion: v1
  595. kind: Service
  596. metadata:
  597. name: "${HTTPD_SERVICE_NAME}"
  598. annotations:
  599. description: Exposes the httpd server
  600. service.alpha.openshift.io/dependencies: '[{"name":"${NAME}","namespace":"","kind":"Service"}]'
  601. spec:
  602. ports:
  603. - name: http
  604. port: 80
  605. targetPort: 80
  606. selector:
  607. name: httpd
  608. - apiVersion: v1
  609. kind: DeploymentConfig
  610. metadata:
  611. name: "${HTTPD_SERVICE_NAME}"
  612. annotations:
  613. description: Defines how to deploy httpd
  614. spec:
  615. strategy:
  616. type: Recreate
  617. recreateParams:
  618. timeoutSeconds: 1200
  619. triggers:
  620. - type: ConfigChange
  621. replicas: 1
  622. selector:
  623. name: "${HTTPD_SERVICE_NAME}"
  624. template:
  625. metadata:
  626. name: "${HTTPD_SERVICE_NAME}"
  627. labels:
  628. name: "${HTTPD_SERVICE_NAME}"
  629. spec:
  630. volumes:
  631. - name: httpd-config
  632. configMap:
  633. name: "${HTTPD_SERVICE_NAME}-configs"
  634. - name: httpd-auth-config
  635. configMap:
  636. name: "${HTTPD_SERVICE_NAME}-auth-configs"
  637. containers:
  638. - name: httpd
  639. image: "${HTTPD_IMG_NAME}:${HTTPD_IMG_TAG}"
  640. ports:
  641. - containerPort: 80
  642. livenessProbe:
  643. exec:
  644. command:
  645. - pidof
  646. - httpd
  647. initialDelaySeconds: 15
  648. timeoutSeconds: 3
  649. readinessProbe:
  650. tcpSocket:
  651. port: 80
  652. initialDelaySeconds: 10
  653. timeoutSeconds: 3
  654. volumeMounts:
  655. - name: httpd-config
  656. mountPath: "${HTTPD_CONFIG_DIR}"
  657. - name: httpd-auth-config
  658. mountPath: "${HTTPD_AUTH_CONFIG_DIR}"
  659. resources:
  660. requests:
  661. memory: "${HTTPD_MEM_REQ}"
  662. cpu: "${HTTPD_CPU_REQ}"
  663. limits:
  664. memory: "${HTTPD_MEM_LIMIT}"
  665. env:
  666. - name: HTTPD_AUTH_TYPE
  667. valueFrom:
  668. configMapKeyRef:
  669. name: "${HTTPD_SERVICE_NAME}-auth-configs"
  670. key: auth-type
  671. lifecycle:
  672. postStart:
  673. exec:
  674. command:
  675. - "/usr/bin/save-container-environment"
  676. serviceAccount: miq-anyuid
  677. serviceAccountName: miq-anyuid
  678. parameters:
  679. - name: NAME
  680. displayName: Name
  681. required: true
  682. description: The name assigned to all of the frontend objects defined in this template.
  683. value: manageiq
  684. - name: V2_KEY
  685. displayName: ManageIQ Encryption Key
  686. required: true
  687. description: Encryption Key for ManageIQ Passwords
  688. from: "[a-zA-Z0-9]{43}"
  689. generate: expression
  690. - name: DATABASE_SERVICE_NAME
  691. displayName: PostgreSQL Service Name
  692. required: true
  693. description: The name of the OpenShift Service exposed for the PostgreSQL container.
  694. value: postgresql
  695. - name: DATABASE_USER
  696. displayName: PostgreSQL User
  697. required: true
  698. description: PostgreSQL user that will access the database.
  699. value: root
  700. - name: DATABASE_PASSWORD
  701. displayName: PostgreSQL Password
  702. required: true
  703. description: Password for the PostgreSQL user.
  704. from: "[a-zA-Z0-9]{8}"
  705. generate: expression
  706. - name: DATABASE_NAME
  707. required: true
  708. displayName: PostgreSQL Database Name
  709. description: Name of the PostgreSQL database accessed.
  710. value: vmdb_production
  711. - name: DATABASE_REGION
  712. required: true
  713. displayName: Application Database Region
  714. description: Database region that will be used for application.
  715. value: '0'
  716. - name: ANSIBLE_DATABASE_NAME
  717. displayName: Ansible PostgreSQL database name
  718. required: true
  719. description: The database to be used by the Ansible continer
  720. value: awx
  721. - name: MEMCACHED_SERVICE_NAME
  722. required: true
  723. displayName: Memcached Service Name
  724. description: The name of the OpenShift Service exposed for the Memcached container.
  725. value: memcached
  726. - name: MEMCACHED_MAX_MEMORY
  727. displayName: Memcached Max Memory
  728. description: Memcached maximum memory for memcached object storage in MB.
  729. value: '64'
  730. - name: MEMCACHED_MAX_CONNECTIONS
  731. displayName: Memcached Max Connections
  732. description: Memcached maximum number of connections allowed.
  733. value: '1024'
  734. - name: MEMCACHED_SLAB_PAGE_SIZE
  735. displayName: Memcached Slab Page Size
  736. description: Memcached size of each slab page.
  737. value: 1m
  738. - name: POSTGRESQL_CONFIG_DIR
  739. displayName: PostgreSQL Configuration Overrides
  740. description: Directory used to store PostgreSQL configuration overrides.
  741. value: "/var/lib/pgsql/conf.d"
  742. - name: POSTGRESQL_MAX_CONNECTIONS
  743. displayName: PostgreSQL Max Connections
  744. description: PostgreSQL maximum number of database connections allowed.
  745. value: '1000'
  746. - name: POSTGRESQL_SHARED_BUFFERS
  747. displayName: PostgreSQL Shared Buffer Amount
  748. description: Amount of memory dedicated for PostgreSQL shared memory buffers.
  749. value: 1GB
  750. - name: ANSIBLE_SERVICE_NAME
  751. displayName: Ansible Service Name
  752. description: The name of the OpenShift Service exposed for the Ansible container.
  753. value: ansible
  754. - name: ANSIBLE_ADMIN_PASSWORD
  755. displayName: Ansible admin User password
  756. required: true
  757. description: The password for the Ansible container admin user
  758. from: "[a-zA-Z0-9]{32}"
  759. generate: expression
  760. - name: ANSIBLE_SECRET_KEY
  761. displayName: Ansible Secret Key
  762. required: true
  763. description: Encryption key for the Ansible container
  764. from: "[a-f0-9]{32}"
  765. generate: expression
  766. - name: ANSIBLE_RABBITMQ_USER_NAME
  767. displayName: RabbitMQ Username
  768. required: true
  769. description: Username for the Ansible RabbitMQ Server
  770. value: ansible
  771. - name: ANSIBLE_RABBITMQ_PASSWORD
  772. displayName: RabbitMQ Server Password
  773. required: true
  774. description: Password for the Ansible RabbitMQ Server
  775. from: "[a-zA-Z0-9]{32}"
  776. generate: expression
  777. - name: APPLICATION_CPU_REQ
  778. displayName: Application Min CPU Requested
  779. required: true
  780. description: Minimum amount of CPU time the Application container will need (expressed in millicores).
  781. value: 1000m
  782. - name: POSTGRESQL_CPU_REQ
  783. displayName: PostgreSQL Min CPU Requested
  784. required: true
  785. description: Minimum amount of CPU time the PostgreSQL container will need (expressed in millicores).
  786. value: 500m
  787. - name: MEMCACHED_CPU_REQ
  788. displayName: Memcached Min CPU Requested
  789. required: true
  790. description: Minimum amount of CPU time the Memcached container will need (expressed in millicores).
  791. value: 200m
  792. - name: ANSIBLE_CPU_REQ
  793. displayName: Ansible Min CPU Requested
  794. required: true
  795. description: Minimum amount of CPU time the Ansible container will need (expressed in millicores).
  796. value: 1000m
  797. - name: APPLICATION_MEM_REQ
  798. displayName: Application Min RAM Requested
  799. required: true
  800. description: Minimum amount of memory the Application container will need.
  801. value: 6144Mi
  802. - name: POSTGRESQL_MEM_REQ
  803. displayName: PostgreSQL Min RAM Requested
  804. required: true
  805. description: Minimum amount of memory the PostgreSQL container will need.
  806. value: 4Gi
  807. - name: MEMCACHED_MEM_REQ
  808. displayName: Memcached Min RAM Requested
  809. required: true
  810. description: Minimum amount of memory the Memcached container will need.
  811. value: 64Mi
  812. - name: ANSIBLE_MEM_REQ
  813. displayName: Ansible Min RAM Requested
  814. required: true
  815. description: Minimum amount of memory the Ansible container will need.
  816. value: 2048Mi
  817. - name: APPLICATION_MEM_LIMIT
  818. displayName: Application Max RAM Limit
  819. required: true
  820. description: Maximum amount of memory the Application container can consume.
  821. value: 16384Mi
  822. - name: POSTGRESQL_MEM_LIMIT
  823. displayName: PostgreSQL Max RAM Limit
  824. required: true
  825. description: Maximum amount of memory the PostgreSQL container can consume.
  826. value: 8Gi
  827. - name: MEMCACHED_MEM_LIMIT
  828. displayName: Memcached Max RAM Limit
  829. required: true
  830. description: Maximum amount of memory the Memcached container can consume.
  831. value: 256Mi
  832. - name: ANSIBLE_MEM_LIMIT
  833. displayName: Ansible Max RAM Limit
  834. required: true
  835. description: Maximum amount of memory the Ansible container can consume.
  836. value: 8096Mi
  837. - name: POSTGRESQL_IMG_NAME
  838. displayName: PostgreSQL Image Name
  839. description: This is the PostgreSQL image name requested to deploy.
  840. value: docker.io/manageiq/postgresql
  841. - name: POSTGRESQL_IMG_TAG
  842. displayName: PostgreSQL Image Tag
  843. description: This is the PostgreSQL image tag/version requested to deploy.
  844. value: latest
  845. - name: MEMCACHED_IMG_NAME
  846. displayName: Memcached Image Name
  847. description: This is the Memcached image name requested to deploy.
  848. value: docker.io/manageiq/memcached
  849. - name: MEMCACHED_IMG_TAG
  850. displayName: Memcached Image Tag
  851. description: This is the Memcached image tag/version requested to deploy.
  852. value: latest
  853. - name: APPLICATION_IMG_NAME
  854. displayName: Application Image Name
  855. description: This is the Application image name requested to deploy.
  856. value: docker.io/manageiq/manageiq-pods
  857. - name: FRONTEND_APPLICATION_IMG_TAG
  858. displayName: Front end Application Image Tag
  859. description: This is the ManageIQ Frontend Application image tag/version requested to deploy.
  860. value: frontend-latest
  861. - name: BACKEND_APPLICATION_IMG_TAG
  862. displayName: Back end Application Image Tag
  863. description: This is the ManageIQ Backend Application image tag/version requested to deploy.
  864. value: backend-latest
  865. - name: ANSIBLE_IMG_NAME
  866. displayName: Ansible Image Name
  867. description: This is the Ansible image name requested to deploy.
  868. value: docker.io/manageiq/embedded-ansible
  869. - name: ANSIBLE_IMG_TAG
  870. displayName: Ansible Image Tag
  871. description: This is the Ansible image tag/version requested to deploy.
  872. value: latest
  873. - name: APPLICATION_DOMAIN
  874. displayName: Application Hostname
  875. description: The exposed hostname that will route to the application service, if left blank a value will be defaulted.
  876. value: ''
  877. - name: APPLICATION_REPLICA_COUNT
  878. displayName: Application Replica Count
  879. description: This is the number of Application replicas requested to deploy.
  880. value: '1'
  881. - name: APPLICATION_INIT_DELAY
  882. displayName: Application Init Delay
  883. required: true
  884. description: Delay in seconds before we attempt to initialize the application.
  885. value: '15'
  886. - name: APPLICATION_VOLUME_CAPACITY
  887. displayName: Application Volume Capacity
  888. required: true
  889. description: Volume space available for application data.
  890. value: 5Gi
  891. - name: DATABASE_VOLUME_CAPACITY
  892. displayName: Database Volume Capacity
  893. required: true
  894. description: Volume space available for database.
  895. value: 15Gi
  896. - name: HTTPD_SERVICE_NAME
  897. required: true
  898. displayName: Apache httpd Service Name
  899. description: The name of the OpenShift Service exposed for the httpd container.
  900. value: httpd
  901. - name: HTTPD_IMG_NAME
  902. displayName: Apache httpd Image Name
  903. description: This is the httpd image name requested to deploy.
  904. value: docker.io/manageiq/httpd
  905. - name: HTTPD_IMG_TAG
  906. displayName: Apache httpd Image Tag
  907. description: This is the httpd image tag/version requested to deploy.
  908. value: latest
  909. - name: HTTPD_CONFIG_DIR
  910. displayName: Apache Configuration Directory
  911. description: Directory used to store the Apache configuration files.
  912. value: "/etc/httpd/conf.d"
  913. - name: HTTPD_AUTH_CONFIG_DIR
  914. displayName: External Authentication Configuration Directory
  915. description: Directory used to store the external authentication configuration files.
  916. value: "/etc/httpd/auth-conf.d"
  917. - name: HTTPD_CPU_REQ
  918. displayName: Apache httpd Min CPU Requested
  919. required: true
  920. description: Minimum amount of CPU time the httpd container will need (expressed in millicores).
  921. value: 500m
  922. - name: HTTPD_MEM_REQ
  923. displayName: Apache httpd Min RAM Requested
  924. required: true
  925. description: Minimum amount of memory the httpd container will need.
  926. value: 512Mi
  927. - name: HTTPD_MEM_LIMIT
  928. displayName: Apache httpd Max RAM Limit
  929. required: true
  930. description: Maximum amount of memory the httpd container can consume.
  931. value: 8192Mi