miq-template-ext-db.yaml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771
  1. apiVersion: v1
  2. kind: Template
  3. labels:
  4. template: manageiq-ext-db
  5. metadata:
  6. name: manageiq-ext-db
  7. annotations:
  8. description: ManageIQ appliance with persistent storage using a external DB host
  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: Service
  46. metadata:
  47. annotations:
  48. description: Exposes and load balances ManageIQ pods
  49. service.alpha.openshift.io/dependencies: '[{"name":"${DATABASE_SERVICE_NAME}","namespace":"","kind":"Service"},{"name":"${MEMCACHED_SERVICE_NAME}","namespace":"","kind":"Service"}]'
  50. name: "${NAME}"
  51. spec:
  52. clusterIP: None
  53. ports:
  54. - name: http
  55. port: 80
  56. protocol: TCP
  57. targetPort: 80
  58. selector:
  59. name: "${NAME}"
  60. - apiVersion: v1
  61. kind: Route
  62. metadata:
  63. name: "${HTTPD_SERVICE_NAME}"
  64. spec:
  65. host: "${APPLICATION_DOMAIN}"
  66. port:
  67. targetPort: http
  68. tls:
  69. termination: edge
  70. insecureEdgeTerminationPolicy: Redirect
  71. to:
  72. kind: Service
  73. name: "${HTTPD_SERVICE_NAME}"
  74. - apiVersion: apps/v1beta1
  75. kind: StatefulSet
  76. metadata:
  77. name: "${NAME}"
  78. annotations:
  79. description: Defines how to deploy the ManageIQ appliance
  80. spec:
  81. serviceName: "${NAME}"
  82. replicas: "${APPLICATION_REPLICA_COUNT}"
  83. template:
  84. metadata:
  85. labels:
  86. name: "${NAME}"
  87. name: "${NAME}"
  88. spec:
  89. containers:
  90. - name: manageiq
  91. image: "${APPLICATION_IMG_NAME}:${FRONTEND_APPLICATION_IMG_TAG}"
  92. livenessProbe:
  93. tcpSocket:
  94. port: 80
  95. initialDelaySeconds: 480
  96. timeoutSeconds: 3
  97. readinessProbe:
  98. httpGet:
  99. path: "/"
  100. port: 80
  101. scheme: HTTP
  102. initialDelaySeconds: 200
  103. timeoutSeconds: 3
  104. ports:
  105. - containerPort: 80
  106. protocol: TCP
  107. volumeMounts:
  108. - name: "${NAME}-server"
  109. mountPath: "/persistent"
  110. env:
  111. - name: MY_POD_NAMESPACE
  112. valueFrom:
  113. fieldRef:
  114. fieldPath: metadata.namespace
  115. - name: APPLICATION_INIT_DELAY
  116. value: "${APPLICATION_INIT_DELAY}"
  117. - name: DATABASE_SERVICE_NAME
  118. value: "${DATABASE_SERVICE_NAME}"
  119. - name: DATABASE_REGION
  120. value: "${DATABASE_REGION}"
  121. - name: DATABASE_URL
  122. valueFrom:
  123. secretKeyRef:
  124. name: "${NAME}-secrets"
  125. key: database-url
  126. - name: MEMCACHED_SERVER
  127. value: "${MEMCACHED_SERVICE_NAME}:11211"
  128. - name: MEMCACHED_SERVICE_NAME
  129. value: "${MEMCACHED_SERVICE_NAME}"
  130. - name: V2_KEY
  131. valueFrom:
  132. secretKeyRef:
  133. name: "${NAME}-secrets"
  134. key: v2-key
  135. - name: ANSIBLE_SERVICE_NAME
  136. value: "${ANSIBLE_SERVICE_NAME}"
  137. - name: ANSIBLE_ADMIN_PASSWORD
  138. valueFrom:
  139. secretKeyRef:
  140. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  141. key: admin-password
  142. resources:
  143. requests:
  144. memory: "${APPLICATION_MEM_REQ}"
  145. cpu: "${APPLICATION_CPU_REQ}"
  146. limits:
  147. memory: "${APPLICATION_MEM_LIMIT}"
  148. lifecycle:
  149. preStop:
  150. exec:
  151. command:
  152. - "/opt/manageiq/container-scripts/sync-pv-data"
  153. serviceAccount: miq-orchestrator
  154. serviceAccountName: miq-orchestrator
  155. terminationGracePeriodSeconds: 90
  156. volumeClaimTemplates:
  157. - metadata:
  158. name: "${NAME}-server"
  159. annotations:
  160. spec:
  161. accessModes:
  162. - ReadWriteOnce
  163. resources:
  164. requests:
  165. storage: "${APPLICATION_VOLUME_CAPACITY}"
  166. - apiVersion: v1
  167. kind: Service
  168. metadata:
  169. annotations:
  170. description: Headless service for ManageIQ backend pods
  171. name: "${NAME}-backend"
  172. spec:
  173. clusterIP: None
  174. selector:
  175. name: "${NAME}-backend"
  176. - apiVersion: apps/v1beta1
  177. kind: StatefulSet
  178. metadata:
  179. name: "${NAME}-backend"
  180. annotations:
  181. description: Defines how to deploy the ManageIQ appliance
  182. spec:
  183. serviceName: "${NAME}-backend"
  184. replicas: 0
  185. template:
  186. metadata:
  187. labels:
  188. name: "${NAME}-backend"
  189. name: "${NAME}-backend"
  190. spec:
  191. containers:
  192. - name: manageiq
  193. image: "${APPLICATION_IMG_NAME}:${BACKEND_APPLICATION_IMG_TAG}"
  194. livenessProbe:
  195. exec:
  196. command:
  197. - pidof
  198. - MIQ Server
  199. initialDelaySeconds: 480
  200. timeoutSeconds: 3
  201. volumeMounts:
  202. - name: "${NAME}-server"
  203. mountPath: "/persistent"
  204. env:
  205. - name: APPLICATION_INIT_DELAY
  206. value: "${APPLICATION_INIT_DELAY}"
  207. - name: DATABASE_URL
  208. valueFrom:
  209. secretKeyRef:
  210. name: "${NAME}-secrets"
  211. key: database-url
  212. - name: MIQ_SERVER_DEFAULT_ROLES
  213. value: database_operations,event,reporting,scheduler,smartstate,ems_operations,ems_inventory,automate
  214. - name: FRONTEND_SERVICE_NAME
  215. value: "${NAME}"
  216. - name: MEMCACHED_SERVER
  217. value: "${MEMCACHED_SERVICE_NAME}:11211"
  218. - name: V2_KEY
  219. valueFrom:
  220. secretKeyRef:
  221. name: "${NAME}-secrets"
  222. key: v2-key
  223. - name: ANSIBLE_SERVICE_NAME
  224. value: "${ANSIBLE_SERVICE_NAME}"
  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/manageiq/container-scripts/sync-pv-data"
  241. serviceAccount: miq-orchestrator
  242. serviceAccountName: miq-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. name: "${MEMCACHED_SERVICE_NAME}"
  258. annotations:
  259. description: Exposes the memcached server
  260. spec:
  261. ports:
  262. - name: memcached
  263. port: 11211
  264. targetPort: 11211
  265. selector:
  266. name: "${MEMCACHED_SERVICE_NAME}"
  267. - apiVersion: v1
  268. kind: DeploymentConfig
  269. metadata:
  270. name: "${MEMCACHED_SERVICE_NAME}"
  271. annotations:
  272. description: Defines how to deploy memcached
  273. spec:
  274. strategy:
  275. type: Recreate
  276. triggers:
  277. - type: ConfigChange
  278. replicas: 1
  279. selector:
  280. name: "${MEMCACHED_SERVICE_NAME}"
  281. template:
  282. metadata:
  283. name: "${MEMCACHED_SERVICE_NAME}"
  284. labels:
  285. name: "${MEMCACHED_SERVICE_NAME}"
  286. spec:
  287. volumes: []
  288. containers:
  289. - name: memcached
  290. image: "${MEMCACHED_IMG_NAME}:${MEMCACHED_IMG_TAG}"
  291. ports:
  292. - containerPort: 11211
  293. readinessProbe:
  294. timeoutSeconds: 1
  295. initialDelaySeconds: 5
  296. tcpSocket:
  297. port: 11211
  298. livenessProbe:
  299. timeoutSeconds: 1
  300. initialDelaySeconds: 30
  301. tcpSocket:
  302. port: 11211
  303. volumeMounts: []
  304. env:
  305. - name: MEMCACHED_MAX_MEMORY
  306. value: "${MEMCACHED_MAX_MEMORY}"
  307. - name: MEMCACHED_MAX_CONNECTIONS
  308. value: "${MEMCACHED_MAX_CONNECTIONS}"
  309. - name: MEMCACHED_SLAB_PAGE_SIZE
  310. value: "${MEMCACHED_SLAB_PAGE_SIZE}"
  311. resources:
  312. requests:
  313. memory: "${MEMCACHED_MEM_REQ}"
  314. cpu: "${MEMCACHED_CPU_REQ}"
  315. limits:
  316. memory: "${MEMCACHED_MEM_LIMIT}"
  317. - apiVersion: v1
  318. kind: Service
  319. metadata:
  320. name: "${DATABASE_SERVICE_NAME}"
  321. annotations:
  322. description: Remote database service
  323. spec:
  324. ports:
  325. - name: postgresql
  326. port: 5432
  327. targetPort: "${{DATABASE_PORT}}"
  328. selector: {}
  329. - apiVersion: v1
  330. kind: Endpoints
  331. metadata:
  332. name: "${DATABASE_SERVICE_NAME}"
  333. subsets:
  334. - addresses:
  335. - ip: "${DATABASE_IP}"
  336. ports:
  337. - port: "${{DATABASE_PORT}}"
  338. name: postgresql
  339. - apiVersion: v1
  340. kind: Service
  341. metadata:
  342. annotations:
  343. description: Exposes and load balances Ansible pods
  344. service.alpha.openshift.io/dependencies: '[{"name":"${DATABASE_SERVICE_NAME}","namespace":"","kind":"Service"}]'
  345. name: "${ANSIBLE_SERVICE_NAME}"
  346. spec:
  347. ports:
  348. - name: http
  349. port: 80
  350. protocol: TCP
  351. targetPort: 80
  352. - name: https
  353. port: 443
  354. protocol: TCP
  355. targetPort: 443
  356. selector:
  357. name: "${ANSIBLE_SERVICE_NAME}"
  358. - apiVersion: v1
  359. kind: DeploymentConfig
  360. metadata:
  361. name: "${ANSIBLE_SERVICE_NAME}"
  362. annotations:
  363. description: Defines how to deploy the Ansible appliance
  364. spec:
  365. strategy:
  366. type: Recreate
  367. serviceName: "${ANSIBLE_SERVICE_NAME}"
  368. replicas: 0
  369. template:
  370. metadata:
  371. labels:
  372. name: "${ANSIBLE_SERVICE_NAME}"
  373. name: "${ANSIBLE_SERVICE_NAME}"
  374. spec:
  375. containers:
  376. - name: ansible
  377. image: "${ANSIBLE_IMG_NAME}:${ANSIBLE_IMG_TAG}"
  378. livenessProbe:
  379. tcpSocket:
  380. port: 443
  381. initialDelaySeconds: 480
  382. timeoutSeconds: 3
  383. readinessProbe:
  384. httpGet:
  385. path: "/"
  386. port: 443
  387. scheme: HTTPS
  388. initialDelaySeconds: 200
  389. timeoutSeconds: 3
  390. ports:
  391. - containerPort: 80
  392. protocol: TCP
  393. - containerPort: 443
  394. protocol: TCP
  395. securityContext:
  396. privileged: true
  397. env:
  398. - name: ADMIN_PASSWORD
  399. valueFrom:
  400. secretKeyRef:
  401. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  402. key: admin-password
  403. - name: RABBITMQ_USER_NAME
  404. value: "${ANSIBLE_RABBITMQ_USER_NAME}"
  405. - name: RABBITMQ_PASSWORD
  406. valueFrom:
  407. secretKeyRef:
  408. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  409. key: rabbit-password
  410. - name: ANSIBLE_SECRET_KEY
  411. valueFrom:
  412. secretKeyRef:
  413. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  414. key: secret-key
  415. - name: DATABASE_SERVICE_NAME
  416. value: "${DATABASE_SERVICE_NAME}"
  417. - name: POSTGRESQL_USER
  418. value: "${DATABASE_USER}"
  419. - name: POSTGRESQL_PASSWORD
  420. valueFrom:
  421. secretKeyRef:
  422. name: "${NAME}-secrets"
  423. key: pg-password
  424. - name: POSTGRESQL_DATABASE
  425. value: "${ANSIBLE_DATABASE_NAME}"
  426. resources:
  427. requests:
  428. memory: "${ANSIBLE_MEM_REQ}"
  429. cpu: "${ANSIBLE_CPU_REQ}"
  430. limits:
  431. memory: "${ANSIBLE_MEM_LIMIT}"
  432. serviceAccount: miq-privileged
  433. serviceAccountName: miq-privileged
  434. - apiVersion: v1
  435. kind: ConfigMap
  436. metadata:
  437. name: "${HTTPD_SERVICE_NAME}-configs"
  438. data:
  439. application.conf: |
  440. # Timeout: The number of seconds before receives and sends time out.
  441. Timeout 120
  442. RewriteEngine On
  443. Options SymLinksIfOwnerMatch
  444. <VirtualHost *:80>
  445. KeepAlive on
  446. ProxyPreserveHost on
  447. ProxyPass /ws/ ws://${NAME}/ws/
  448. ProxyPassReverse /ws/ ws://${NAME}/ws/
  449. ProxyPass / http://${NAME}/
  450. ProxyPassReverse / http://${NAME}/
  451. </VirtualHost>
  452. - apiVersion: v1
  453. kind: ConfigMap
  454. metadata:
  455. name: "${HTTPD_SERVICE_NAME}-auth-configs"
  456. data:
  457. auth-type: internal
  458. auth-configuration.conf: |
  459. # External Authentication Configuration File
  460. #
  461. # For details on usage please see https://github.com/ManageIQ/manageiq-pods/blob/master/README.md#configuring-external-authentication
  462. - apiVersion: v1
  463. kind: Service
  464. metadata:
  465. name: "${HTTPD_SERVICE_NAME}"
  466. annotations:
  467. description: Exposes the httpd server
  468. service.alpha.openshift.io/dependencies: '[{"name":"${NAME}","namespace":"","kind":"Service"}]'
  469. spec:
  470. ports:
  471. - name: http
  472. port: 80
  473. targetPort: 80
  474. selector:
  475. name: httpd
  476. - apiVersion: v1
  477. kind: DeploymentConfig
  478. metadata:
  479. name: "${HTTPD_SERVICE_NAME}"
  480. annotations:
  481. description: Defines how to deploy httpd
  482. spec:
  483. strategy:
  484. type: Recreate
  485. recreateParams:
  486. timeoutSeconds: 1200
  487. triggers:
  488. - type: ConfigChange
  489. replicas: 1
  490. selector:
  491. name: "${HTTPD_SERVICE_NAME}"
  492. template:
  493. metadata:
  494. name: "${HTTPD_SERVICE_NAME}"
  495. labels:
  496. name: "${HTTPD_SERVICE_NAME}"
  497. spec:
  498. volumes:
  499. - name: httpd-config
  500. configMap:
  501. name: "${HTTPD_SERVICE_NAME}-configs"
  502. - name: httpd-auth-config
  503. configMap:
  504. name: "${HTTPD_SERVICE_NAME}-auth-configs"
  505. containers:
  506. - name: httpd
  507. image: "${HTTPD_IMG_NAME}:${HTTPD_IMG_TAG}"
  508. ports:
  509. - containerPort: 80
  510. livenessProbe:
  511. exec:
  512. command:
  513. - pidof
  514. - httpd
  515. initialDelaySeconds: 15
  516. timeoutSeconds: 3
  517. readinessProbe:
  518. tcpSocket:
  519. port: 80
  520. initialDelaySeconds: 10
  521. timeoutSeconds: 3
  522. volumeMounts:
  523. - name: httpd-config
  524. mountPath: "${HTTPD_CONFIG_DIR}"
  525. - name: httpd-auth-config
  526. mountPath: "${HTTPD_AUTH_CONFIG_DIR}"
  527. resources:
  528. requests:
  529. memory: "${HTTPD_MEM_REQ}"
  530. cpu: "${HTTPD_CPU_REQ}"
  531. limits:
  532. memory: "${HTTPD_MEM_LIMIT}"
  533. env:
  534. - name: HTTPD_AUTH_TYPE
  535. valueFrom:
  536. configMapKeyRef:
  537. name: "${HTTPD_SERVICE_NAME}-auth-configs"
  538. key: auth-type
  539. lifecycle:
  540. postStart:
  541. exec:
  542. command:
  543. - "/usr/bin/save-container-environment"
  544. serviceAccount: miq-anyuid
  545. serviceAccountName: miq-anyuid
  546. parameters:
  547. - name: NAME
  548. displayName: Name
  549. required: true
  550. description: The name assigned to all of the frontend objects defined in this template.
  551. value: manageiq
  552. - name: V2_KEY
  553. displayName: ManageIQ Encryption Key
  554. required: true
  555. description: Encryption Key for ManageIQ Passwords
  556. from: "[a-zA-Z0-9]{43}"
  557. generate: expression
  558. - name: DATABASE_SERVICE_NAME
  559. displayName: PostgreSQL Service Name
  560. required: true
  561. description: The name of the OpenShift Service exposed for the PostgreSQL container.
  562. value: postgresql
  563. - name: DATABASE_USER
  564. displayName: PostgreSQL User
  565. required: true
  566. description: PostgreSQL user that will access the database.
  567. value: root
  568. - name: DATABASE_PASSWORD
  569. displayName: PostgreSQL Password
  570. required: true
  571. description: Password for the PostgreSQL user.
  572. from: "[a-zA-Z0-9]{8}"
  573. generate: expression
  574. - name: DATABASE_IP
  575. displayName: PostgreSQL Server IP
  576. required: true
  577. description: PostgreSQL external server IP used to configure service.
  578. value: ''
  579. - name: DATABASE_PORT
  580. displayName: PostgreSQL Server Port
  581. required: true
  582. description: PostgreSQL external server port used to configure service.
  583. value: '5432'
  584. - name: DATABASE_NAME
  585. required: true
  586. displayName: PostgreSQL Database Name
  587. description: Name of the PostgreSQL database accessed.
  588. value: vmdb_production
  589. - name: DATABASE_REGION
  590. required: true
  591. displayName: Application Database Region
  592. description: Database region that will be used for application.
  593. value: '0'
  594. - name: ANSIBLE_DATABASE_NAME
  595. displayName: Ansible PostgreSQL database name
  596. required: true
  597. description: The database to be used by the Ansible continer
  598. value: awx
  599. - name: MEMCACHED_SERVICE_NAME
  600. required: true
  601. displayName: Memcached Service Name
  602. description: The name of the OpenShift Service exposed for the Memcached container.
  603. value: memcached
  604. - name: MEMCACHED_MAX_MEMORY
  605. displayName: Memcached Max Memory
  606. description: Memcached maximum memory for memcached object storage in MB.
  607. value: '64'
  608. - name: MEMCACHED_MAX_CONNECTIONS
  609. displayName: Memcached Max Connections
  610. description: Memcached maximum number of connections allowed.
  611. value: '1024'
  612. - name: MEMCACHED_SLAB_PAGE_SIZE
  613. displayName: Memcached Slab Page Size
  614. description: Memcached size of each slab page.
  615. value: 1m
  616. - name: ANSIBLE_SERVICE_NAME
  617. displayName: Ansible Service Name
  618. description: The name of the OpenShift Service exposed for the Ansible container.
  619. value: ansible
  620. - name: ANSIBLE_ADMIN_PASSWORD
  621. displayName: Ansible admin User password
  622. required: true
  623. description: The password for the Ansible container admin user
  624. from: "[a-zA-Z0-9]{32}"
  625. generate: expression
  626. - name: ANSIBLE_SECRET_KEY
  627. displayName: Ansible Secret Key
  628. required: true
  629. description: Encryption key for the Ansible container
  630. from: "[a-f0-9]{32}"
  631. generate: expression
  632. - name: ANSIBLE_RABBITMQ_USER_NAME
  633. displayName: RabbitMQ Username
  634. required: true
  635. description: Username for the Ansible RabbitMQ Server
  636. value: ansible
  637. - name: ANSIBLE_RABBITMQ_PASSWORD
  638. displayName: RabbitMQ Server Password
  639. required: true
  640. description: Password for the Ansible RabbitMQ Server
  641. from: "[a-zA-Z0-9]{32}"
  642. generate: expression
  643. - name: APPLICATION_CPU_REQ
  644. displayName: Application Min CPU Requested
  645. required: true
  646. description: Minimum amount of CPU time the Application container will need (expressed in millicores).
  647. value: 1000m
  648. - name: MEMCACHED_CPU_REQ
  649. displayName: Memcached Min CPU Requested
  650. required: true
  651. description: Minimum amount of CPU time the Memcached container will need (expressed in millicores).
  652. value: 200m
  653. - name: ANSIBLE_CPU_REQ
  654. displayName: Ansible Min CPU Requested
  655. required: true
  656. description: Minimum amount of CPU time the Ansible container will need (expressed in millicores).
  657. value: 1000m
  658. - name: APPLICATION_MEM_REQ
  659. displayName: Application Min RAM Requested
  660. required: true
  661. description: Minimum amount of memory the Application container will need.
  662. value: 6144Mi
  663. - name: MEMCACHED_MEM_REQ
  664. displayName: Memcached Min RAM Requested
  665. required: true
  666. description: Minimum amount of memory the Memcached container will need.
  667. value: 64Mi
  668. - name: ANSIBLE_MEM_REQ
  669. displayName: Ansible Min RAM Requested
  670. required: true
  671. description: Minimum amount of memory the Ansible container will need.
  672. value: 2048Mi
  673. - name: APPLICATION_MEM_LIMIT
  674. displayName: Application Max RAM Limit
  675. required: true
  676. description: Maximum amount of memory the Application container can consume.
  677. value: 16384Mi
  678. - name: MEMCACHED_MEM_LIMIT
  679. displayName: Memcached Max RAM Limit
  680. required: true
  681. description: Maximum amount of memory the Memcached container can consume.
  682. value: 256Mi
  683. - name: ANSIBLE_MEM_LIMIT
  684. displayName: Ansible Max RAM Limit
  685. required: true
  686. description: Maximum amount of memory the Ansible container can consume.
  687. value: 8096Mi
  688. - name: MEMCACHED_IMG_NAME
  689. displayName: Memcached Image Name
  690. description: This is the Memcached image name requested to deploy.
  691. value: docker.io/manageiq/memcached
  692. - name: MEMCACHED_IMG_TAG
  693. displayName: Memcached Image Tag
  694. description: This is the Memcached image tag/version requested to deploy.
  695. value: latest
  696. - name: APPLICATION_IMG_NAME
  697. displayName: Application Image Name
  698. description: This is the Application image name requested to deploy.
  699. value: docker.io/manageiq/manageiq-pods
  700. - name: FRONTEND_APPLICATION_IMG_TAG
  701. displayName: Front end Application Image Tag
  702. description: This is the ManageIQ Frontend Application image tag/version requested to deploy.
  703. value: frontend-latest
  704. - name: BACKEND_APPLICATION_IMG_TAG
  705. displayName: Back end Application Image Tag
  706. description: This is the ManageIQ Backend Application image tag/version requested to deploy.
  707. value: backend-latest
  708. - name: ANSIBLE_IMG_NAME
  709. displayName: Ansible Image Name
  710. description: This is the Ansible image name requested to deploy.
  711. value: docker.io/manageiq/embedded-ansible
  712. - name: ANSIBLE_IMG_TAG
  713. displayName: Ansible Image Tag
  714. description: This is the Ansible image tag/version requested to deploy.
  715. value: latest
  716. - name: APPLICATION_DOMAIN
  717. displayName: Application Hostname
  718. description: The exposed hostname that will route to the application service, if left blank a value will be defaulted.
  719. value: ''
  720. - name: APPLICATION_REPLICA_COUNT
  721. displayName: Application Replica Count
  722. description: This is the number of Application replicas requested to deploy.
  723. value: '1'
  724. - name: APPLICATION_INIT_DELAY
  725. displayName: Application Init Delay
  726. required: true
  727. description: Delay in seconds before we attempt to initialize the application.
  728. value: '15'
  729. - name: APPLICATION_VOLUME_CAPACITY
  730. displayName: Application Volume Capacity
  731. required: true
  732. description: Volume space available for application data.
  733. value: 5Gi
  734. - name: HTTPD_SERVICE_NAME
  735. required: true
  736. displayName: Apache httpd Service Name
  737. description: The name of the OpenShift Service exposed for the httpd container.
  738. value: httpd
  739. - name: HTTPD_IMG_NAME
  740. displayName: Apache httpd Image Name
  741. description: This is the httpd image name requested to deploy.
  742. value: docker.io/manageiq/httpd
  743. - name: HTTPD_IMG_TAG
  744. displayName: Apache httpd Image Tag
  745. description: This is the httpd image tag/version requested to deploy.
  746. value: latest
  747. - name: HTTPD_CONFIG_DIR
  748. displayName: Apache httpd Configuration Directory
  749. description: Directory used to store the Apache configuration files.
  750. value: "/etc/httpd/conf.d"
  751. - name: HTTPD_AUTH_CONFIG_DIR
  752. displayName: External Authentication Configuration Directory
  753. description: Directory used to store the external authentication configuration files.
  754. value: "/etc/httpd/auth-conf.d"
  755. - name: HTTPD_CPU_REQ
  756. displayName: Apache httpd Min CPU Requested
  757. required: true
  758. description: Minimum amount of CPU time the httpd container will need (expressed in millicores).
  759. value: 500m
  760. - name: HTTPD_MEM_REQ
  761. displayName: Apache httpd Min RAM Requested
  762. required: true
  763. description: Minimum amount of memory the httpd container will need.
  764. value: 512Mi
  765. - name: HTTPD_MEM_LIMIT
  766. displayName: Apache httpd Max RAM Limit
  767. required: true
  768. description: Maximum amount of memory the httpd container can consume.
  769. value: 8192Mi