cfme-template-ext-db.yaml 23 KB

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