cfme-template.yaml 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145
  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: RoleBinding
  30. metadata:
  31. name: view
  32. roleRef:
  33. name: view
  34. subjects:
  35. - kind: ServiceAccount
  36. name: cfme-orchestrator
  37. - apiVersion: v1
  38. kind: RoleBinding
  39. metadata:
  40. name: edit
  41. roleRef:
  42. name: edit
  43. subjects:
  44. - kind: ServiceAccount
  45. name: cfme-orchestrator
  46. - apiVersion: v1
  47. kind: Secret
  48. metadata:
  49. name: "${NAME}-secrets"
  50. stringData:
  51. pg-password: "${DATABASE_PASSWORD}"
  52. admin-password: "${APPLICATION_ADMIN_PASSWORD}"
  53. database-url: postgresql://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_SERVICE_NAME}/${DATABASE_NAME}?encoding=utf8&pool=5&wait_timeout=5
  54. v2-key: "${V2_KEY}"
  55. - apiVersion: v1
  56. kind: Secret
  57. metadata:
  58. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  59. stringData:
  60. rabbit-password: "${ANSIBLE_RABBITMQ_PASSWORD}"
  61. secret-key: "${ANSIBLE_SECRET_KEY}"
  62. admin-password: "${ANSIBLE_ADMIN_PASSWORD}"
  63. - apiVersion: v1
  64. kind: ConfigMap
  65. metadata:
  66. name: "${DATABASE_SERVICE_NAME}-configs"
  67. data:
  68. 01_miq_overrides.conf: |
  69. #------------------------------------------------------------------------------
  70. # CONNECTIONS AND AUTHENTICATION
  71. #------------------------------------------------------------------------------
  72. tcp_keepalives_count = 9
  73. tcp_keepalives_idle = 3
  74. tcp_keepalives_interval = 75
  75. #------------------------------------------------------------------------------
  76. # RESOURCE USAGE (except WAL)
  77. #------------------------------------------------------------------------------
  78. shared_preload_libraries = 'pglogical,repmgr_funcs'
  79. max_worker_processes = 10
  80. #------------------------------------------------------------------------------
  81. # WRITE AHEAD LOG
  82. #------------------------------------------------------------------------------
  83. wal_level = 'logical'
  84. wal_log_hints = on
  85. wal_buffers = 16MB
  86. checkpoint_completion_target = 0.9
  87. #------------------------------------------------------------------------------
  88. # REPLICATION
  89. #------------------------------------------------------------------------------
  90. max_wal_senders = 10
  91. wal_sender_timeout = 0
  92. max_replication_slots = 10
  93. hot_standby = on
  94. #------------------------------------------------------------------------------
  95. # ERROR REPORTING AND LOGGING
  96. #------------------------------------------------------------------------------
  97. log_filename = 'postgresql.log'
  98. log_rotation_age = 0
  99. log_min_duration_statement = 5000
  100. log_connections = on
  101. log_disconnections = on
  102. log_line_prefix = '%t:%r:%c:%u@%d:[%p]:'
  103. log_lock_waits = on
  104. #------------------------------------------------------------------------------
  105. # AUTOVACUUM PARAMETERS
  106. #------------------------------------------------------------------------------
  107. log_autovacuum_min_duration = 0
  108. autovacuum_naptime = 5min
  109. autovacuum_vacuum_threshold = 500
  110. autovacuum_analyze_threshold = 500
  111. autovacuum_vacuum_scale_factor = 0.05
  112. #------------------------------------------------------------------------------
  113. # LOCK MANAGEMENT
  114. #------------------------------------------------------------------------------
  115. deadlock_timeout = 5s
  116. #------------------------------------------------------------------------------
  117. # VERSION/PLATFORM COMPATIBILITY
  118. #------------------------------------------------------------------------------
  119. escape_string_warning = off
  120. standard_conforming_strings = off
  121. - apiVersion: v1
  122. kind: ConfigMap
  123. metadata:
  124. name: "${HTTPD_SERVICE_NAME}-configs"
  125. data:
  126. application.conf: |
  127. # Timeout: The number of seconds before receives and sends time out.
  128. Timeout 120
  129. RewriteEngine On
  130. Options SymLinksIfOwnerMatch
  131. <VirtualHost *:80>
  132. KeepAlive on
  133. # Without ServerName mod_auth_mellon compares against http:// and not https:// from the IdP
  134. ServerName https://%{REQUEST_HOST}
  135. ProxyPreserveHost on
  136. RewriteCond %{REQUEST_URI} ^/ws [NC]
  137. RewriteCond %{HTTP:UPGRADE} ^websocket$ [NC]
  138. RewriteCond %{HTTP:CONNECTION} ^Upgrade$ [NC]
  139. RewriteRule .* ws://${NAME}%{REQUEST_URI} [P,QSA,L]
  140. # For httpd, some ErrorDocuments must by served by the httpd pod
  141. RewriteCond %{REQUEST_URI} !^/proxy_pages
  142. # For SAML /saml2 is only served by mod_auth_mellon in the httpd pod
  143. RewriteCond %{REQUEST_URI} !^/saml2
  144. RewriteRule ^/ http://${NAME}%{REQUEST_URI} [P,QSA,L]
  145. ProxyPassReverse / http://${NAME}/
  146. # Ensures httpd stdout/stderr are seen by 'docker logs'.
  147. ErrorLog "| /usr/bin/tee /proc/1/fd/2 /var/log/httpd/error_log"
  148. CustomLog "| /usr/bin/tee /proc/1/fd/1 /var/log/httpd/access_log" common
  149. </VirtualHost>
  150. authentication.conf: |
  151. # Load appropriate authentication configuration files
  152. #
  153. Include "conf.d/configuration-${HTTPD_AUTH_TYPE}-auth"
  154. configuration-internal-auth: |
  155. # Internal authentication
  156. #
  157. configuration-external-auth: |
  158. Include "conf.d/external-auth-load-modules-conf"
  159. <Location /dashboard/kerberos_authenticate>
  160. AuthType Kerberos
  161. AuthName "Kerberos Login"
  162. KrbMethodNegotiate On
  163. KrbMethodK5Passwd Off
  164. KrbAuthRealms ${HTTPD_AUTH_KERBEROS_REALMS}
  165. Krb5KeyTab /etc/http.keytab
  166. KrbServiceName Any
  167. Require pam-account httpd-auth
  168. ErrorDocument 401 /proxy_pages/invalid_sso_credentials.js
  169. </Location>
  170. Include "conf.d/external-auth-login-form-conf"
  171. Include "conf.d/external-auth-application-api-conf"
  172. Include "conf.d/external-auth-lookup-user-details-conf"
  173. Include "conf.d/external-auth-remote-user-conf"
  174. configuration-active-directory-auth: |
  175. Include "conf.d/external-auth-load-modules-conf"
  176. <Location /dashboard/kerberos_authenticate>
  177. AuthType Kerberos
  178. AuthName "Kerberos Login"
  179. KrbMethodNegotiate On
  180. KrbMethodK5Passwd Off
  181. KrbAuthRealms ${HTTPD_AUTH_KERBEROS_REALMS}
  182. Krb5KeyTab /etc/krb5.keytab
  183. KrbServiceName Any
  184. Require pam-account httpd-auth
  185. ErrorDocument 401 /proxy_pages/invalid_sso_credentials.js
  186. </Location>
  187. Include "conf.d/external-auth-login-form-conf"
  188. Include "conf.d/external-auth-application-api-conf"
  189. Include "conf.d/external-auth-lookup-user-details-conf"
  190. Include "conf.d/external-auth-remote-user-conf"
  191. configuration-saml-auth: |
  192. LoadModule auth_mellon_module modules/mod_auth_mellon.so
  193. <Location />
  194. MellonEnable "info"
  195. MellonIdPMetadataFile "/etc/httpd/saml2/idp-metadata.xml"
  196. MellonSPPrivateKeyFile "/etc/httpd/saml2/sp-key.key"
  197. MellonSPCertFile "/etc/httpd/saml2/sp-cert.cert"
  198. MellonSPMetadataFile "/etc/httpd/saml2/sp-metadata.xml"
  199. MellonVariable "sp-cookie"
  200. MellonSecureCookie On
  201. MellonCookiePath "/"
  202. MellonIdP "IDP"
  203. MellonEndpointPath "/saml2"
  204. MellonUser username
  205. MellonMergeEnvVars On
  206. MellonSetEnvNoPrefix "REMOTE_USER" username
  207. MellonSetEnvNoPrefix "REMOTE_USER_EMAIL" email
  208. MellonSetEnvNoPrefix "REMOTE_USER_FIRSTNAME" firstname
  209. MellonSetEnvNoPrefix "REMOTE_USER_LASTNAME" lastname
  210. MellonSetEnvNoPrefix "REMOTE_USER_FULLNAME" fullname
  211. MellonSetEnvNoPrefix "REMOTE_USER_GROUPS" groups
  212. </Location>
  213. <Location /saml_login>
  214. AuthType "Mellon"
  215. MellonEnable "auth"
  216. Require valid-user
  217. </Location>
  218. Include "conf.d/external-auth-remote-user-conf"
  219. external-auth-load-modules-conf: |
  220. LoadModule authnz_pam_module modules/mod_authnz_pam.so
  221. LoadModule intercept_form_submit_module modules/mod_intercept_form_submit.so
  222. LoadModule lookup_identity_module modules/mod_lookup_identity.so
  223. LoadModule auth_kerb_module modules/mod_auth_kerb.so
  224. external-auth-login-form-conf: |
  225. <Location /dashboard/external_authenticate>
  226. InterceptFormPAMService httpd-auth
  227. InterceptFormLogin user_name
  228. InterceptFormPassword user_password
  229. InterceptFormLoginSkip admin
  230. InterceptFormClearRemoteUserForSkipped on
  231. </Location>
  232. external-auth-application-api-conf: |
  233. <LocationMatch ^/api>
  234. SetEnvIf Authorization '^Basic +YWRtaW46' let_admin_in
  235. SetEnvIf X-Auth-Token '^.+$' let_api_token_in
  236. SetEnvIf X-MIQ-Token '^.+$' let_sys_token_in
  237. AuthType Basic
  238. AuthName "External Authentication (httpd) for API"
  239. AuthBasicProvider PAM
  240. AuthPAMService httpd-auth
  241. Require valid-user
  242. Order Allow,Deny
  243. Allow from env=let_admin_in
  244. Allow from env=let_api_token_in
  245. Allow from env=let_sys_token_in
  246. Satisfy Any
  247. </LocationMatch>
  248. external-auth-lookup-user-details-conf: |
  249. <LocationMatch ^/dashboard/external_authenticate$|^/dashboard/kerberos_authenticate$|^/api>
  250. LookupUserAttr mail REMOTE_USER_EMAIL
  251. LookupUserAttr givenname REMOTE_USER_FIRSTNAME
  252. LookupUserAttr sn REMOTE_USER_LASTNAME
  253. LookupUserAttr displayname REMOTE_USER_FULLNAME
  254. LookupUserAttr domainname REMOTE_USER_DOMAIN
  255. LookupUserGroups REMOTE_USER_GROUPS ":"
  256. LookupDbusTimeout 5000
  257. </LocationMatch>
  258. external-auth-remote-user-conf: |
  259. RequestHeader unset X_REMOTE_USER
  260. RequestHeader set X_REMOTE_USER %{REMOTE_USER}e env=REMOTE_USER
  261. RequestHeader set X_EXTERNAL_AUTH_ERROR %{EXTERNAL_AUTH_ERROR}e env=EXTERNAL_AUTH_ERROR
  262. RequestHeader set X_REMOTE_USER_EMAIL %{REMOTE_USER_EMAIL}e env=REMOTE_USER_EMAIL
  263. RequestHeader set X_REMOTE_USER_FIRSTNAME %{REMOTE_USER_FIRSTNAME}e env=REMOTE_USER_FIRSTNAME
  264. RequestHeader set X_REMOTE_USER_LASTNAME %{REMOTE_USER_LASTNAME}e env=REMOTE_USER_LASTNAME
  265. RequestHeader set X_REMOTE_USER_FULLNAME %{REMOTE_USER_FULLNAME}e env=REMOTE_USER_FULLNAME
  266. RequestHeader set X_REMOTE_USER_GROUPS %{REMOTE_USER_GROUPS}e env=REMOTE_USER_GROUPS
  267. RequestHeader set X_REMOTE_USER_DOMAIN %{REMOTE_USER_DOMAIN}e env=REMOTE_USER_DOMAIN
  268. - apiVersion: v1
  269. kind: ConfigMap
  270. metadata:
  271. name: "${HTTPD_SERVICE_NAME}-auth-configs"
  272. data:
  273. auth-type: internal
  274. auth-kerberos-realms: undefined
  275. auth-configuration.conf: |
  276. # External Authentication Configuration File
  277. #
  278. # For details on usage please see https://github.com/ManageIQ/manageiq-pods/blob/master/README.md#configuring-external-authentication
  279. - apiVersion: v1
  280. kind: Service
  281. metadata:
  282. annotations:
  283. description: Exposes and load balances CloudForms pods
  284. service.alpha.openshift.io/dependencies: '[{"name":"${DATABASE_SERVICE_NAME}","namespace":"","kind":"Service"},{"name":"${MEMCACHED_SERVICE_NAME}","namespace":"","kind":"Service"}]'
  285. name: "${NAME}"
  286. spec:
  287. clusterIP: None
  288. ports:
  289. - name: http
  290. port: 80
  291. protocol: TCP
  292. targetPort: 80
  293. selector:
  294. name: "${NAME}"
  295. - apiVersion: v1
  296. kind: Route
  297. metadata:
  298. name: "${HTTPD_SERVICE_NAME}"
  299. spec:
  300. host: "${APPLICATION_DOMAIN}"
  301. port:
  302. targetPort: http
  303. tls:
  304. termination: edge
  305. insecureEdgeTerminationPolicy: Redirect
  306. to:
  307. kind: Service
  308. name: "${HTTPD_SERVICE_NAME}"
  309. - apiVersion: v1
  310. kind: PersistentVolumeClaim
  311. metadata:
  312. name: "${NAME}-${DATABASE_SERVICE_NAME}"
  313. spec:
  314. accessModes:
  315. - ReadWriteOnce
  316. resources:
  317. requests:
  318. storage: "${DATABASE_VOLUME_CAPACITY}"
  319. - apiVersion: apps/v1beta1
  320. kind: StatefulSet
  321. metadata:
  322. name: "${NAME}"
  323. annotations:
  324. description: Defines how to deploy the CloudForms appliance
  325. spec:
  326. serviceName: "${NAME}"
  327. replicas: "${APPLICATION_REPLICA_COUNT}"
  328. template:
  329. metadata:
  330. labels:
  331. name: "${NAME}"
  332. name: "${NAME}"
  333. spec:
  334. containers:
  335. - name: cloudforms
  336. image: "${FRONTEND_APPLICATION_IMG_NAME}:${FRONTEND_APPLICATION_IMG_TAG}"
  337. livenessProbe:
  338. exec:
  339. command:
  340. - pidof
  341. - MIQ Server
  342. initialDelaySeconds: 480
  343. timeoutSeconds: 3
  344. readinessProbe:
  345. tcpSocket:
  346. port: 80
  347. initialDelaySeconds: 200
  348. timeoutSeconds: 3
  349. ports:
  350. - containerPort: 80
  351. protocol: TCP
  352. volumeMounts:
  353. - name: "${NAME}-server"
  354. mountPath: "/persistent"
  355. env:
  356. - name: MY_POD_NAMESPACE
  357. valueFrom:
  358. fieldRef:
  359. fieldPath: metadata.namespace
  360. - name: APPLICATION_INIT_DELAY
  361. value: "${APPLICATION_INIT_DELAY}"
  362. - name: DATABASE_REGION
  363. value: "${DATABASE_REGION}"
  364. - name: DATABASE_URL
  365. valueFrom:
  366. secretKeyRef:
  367. name: "${NAME}-secrets"
  368. key: database-url
  369. - name: V2_KEY
  370. valueFrom:
  371. secretKeyRef:
  372. name: "${NAME}-secrets"
  373. key: v2-key
  374. - name: APPLICATION_ADMIN_PASSWORD
  375. valueFrom:
  376. secretKeyRef:
  377. name: "${NAME}-secrets"
  378. key: admin-password
  379. - name: ANSIBLE_ADMIN_PASSWORD
  380. valueFrom:
  381. secretKeyRef:
  382. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  383. key: admin-password
  384. resources:
  385. requests:
  386. memory: "${APPLICATION_MEM_REQ}"
  387. cpu: "${APPLICATION_CPU_REQ}"
  388. limits:
  389. memory: "${APPLICATION_MEM_LIMIT}"
  390. lifecycle:
  391. preStop:
  392. exec:
  393. command:
  394. - "/opt/rh/cfme-container-scripts/sync-pv-data"
  395. serviceAccount: cfme-orchestrator
  396. serviceAccountName: cfme-orchestrator
  397. terminationGracePeriodSeconds: 90
  398. volumeClaimTemplates:
  399. - metadata:
  400. name: "${NAME}-server"
  401. annotations:
  402. spec:
  403. accessModes:
  404. - ReadWriteOnce
  405. resources:
  406. requests:
  407. storage: "${APPLICATION_VOLUME_CAPACITY}"
  408. - apiVersion: v1
  409. kind: Service
  410. metadata:
  411. annotations:
  412. description: Headless service for CloudForms backend pods
  413. name: "${NAME}-backend"
  414. spec:
  415. clusterIP: None
  416. selector:
  417. name: "${NAME}-backend"
  418. - apiVersion: apps/v1beta1
  419. kind: StatefulSet
  420. metadata:
  421. name: "${NAME}-backend"
  422. annotations:
  423. description: Defines how to deploy the CloudForms appliance
  424. spec:
  425. serviceName: "${NAME}-backend"
  426. replicas: 0
  427. template:
  428. metadata:
  429. labels:
  430. name: "${NAME}-backend"
  431. name: "${NAME}-backend"
  432. spec:
  433. containers:
  434. - name: cloudforms
  435. image: "${BACKEND_APPLICATION_IMG_NAME}:${BACKEND_APPLICATION_IMG_TAG}"
  436. livenessProbe:
  437. exec:
  438. command:
  439. - pidof
  440. - MIQ Server
  441. initialDelaySeconds: 480
  442. timeoutSeconds: 3
  443. volumeMounts:
  444. - name: "${NAME}-server"
  445. mountPath: "/persistent"
  446. env:
  447. - name: APPLICATION_INIT_DELAY
  448. value: "${APPLICATION_INIT_DELAY}"
  449. - name: DATABASE_URL
  450. valueFrom:
  451. secretKeyRef:
  452. name: "${NAME}-secrets"
  453. key: database-url
  454. - name: MIQ_SERVER_DEFAULT_ROLES
  455. value: database_operations,event,reporting,scheduler,smartstate,ems_operations,ems_inventory,automate
  456. - name: FRONTEND_SERVICE_NAME
  457. value: "${NAME}"
  458. - name: V2_KEY
  459. valueFrom:
  460. secretKeyRef:
  461. name: "${NAME}-secrets"
  462. key: v2-key
  463. - name: ANSIBLE_ADMIN_PASSWORD
  464. valueFrom:
  465. secretKeyRef:
  466. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  467. key: admin-password
  468. resources:
  469. requests:
  470. memory: "${APPLICATION_MEM_REQ}"
  471. cpu: "${APPLICATION_CPU_REQ}"
  472. limits:
  473. memory: "${APPLICATION_MEM_LIMIT}"
  474. lifecycle:
  475. preStop:
  476. exec:
  477. command:
  478. - "/opt/rh/cfme-container-scripts/sync-pv-data"
  479. serviceAccount: cfme-orchestrator
  480. serviceAccountName: cfme-orchestrator
  481. terminationGracePeriodSeconds: 90
  482. volumeClaimTemplates:
  483. - metadata:
  484. name: "${NAME}-server"
  485. annotations:
  486. spec:
  487. accessModes:
  488. - ReadWriteOnce
  489. resources:
  490. requests:
  491. storage: "${APPLICATION_VOLUME_CAPACITY}"
  492. - apiVersion: v1
  493. kind: Service
  494. metadata:
  495. name: "${MEMCACHED_SERVICE_NAME}"
  496. annotations:
  497. description: Exposes the memcached server
  498. spec:
  499. ports:
  500. - name: memcached
  501. port: 11211
  502. targetPort: 11211
  503. selector:
  504. name: "${MEMCACHED_SERVICE_NAME}"
  505. - apiVersion: v1
  506. kind: DeploymentConfig
  507. metadata:
  508. name: "${MEMCACHED_SERVICE_NAME}"
  509. annotations:
  510. description: Defines how to deploy memcached
  511. spec:
  512. strategy:
  513. type: Recreate
  514. triggers:
  515. - type: ConfigChange
  516. replicas: 1
  517. selector:
  518. name: "${MEMCACHED_SERVICE_NAME}"
  519. template:
  520. metadata:
  521. name: "${MEMCACHED_SERVICE_NAME}"
  522. labels:
  523. name: "${MEMCACHED_SERVICE_NAME}"
  524. spec:
  525. volumes: []
  526. containers:
  527. - name: memcached
  528. image: "${MEMCACHED_IMG_NAME}:${MEMCACHED_IMG_TAG}"
  529. ports:
  530. - containerPort: 11211
  531. readinessProbe:
  532. timeoutSeconds: 1
  533. initialDelaySeconds: 5
  534. tcpSocket:
  535. port: 11211
  536. livenessProbe:
  537. timeoutSeconds: 1
  538. initialDelaySeconds: 30
  539. tcpSocket:
  540. port: 11211
  541. volumeMounts: []
  542. env:
  543. - name: MEMCACHED_MAX_MEMORY
  544. value: "${MEMCACHED_MAX_MEMORY}"
  545. - name: MEMCACHED_MAX_CONNECTIONS
  546. value: "${MEMCACHED_MAX_CONNECTIONS}"
  547. - name: MEMCACHED_SLAB_PAGE_SIZE
  548. value: "${MEMCACHED_SLAB_PAGE_SIZE}"
  549. resources:
  550. requests:
  551. memory: "${MEMCACHED_MEM_REQ}"
  552. cpu: "${MEMCACHED_CPU_REQ}"
  553. limits:
  554. memory: "${MEMCACHED_MEM_LIMIT}"
  555. - apiVersion: v1
  556. kind: Service
  557. metadata:
  558. name: "${DATABASE_SERVICE_NAME}"
  559. annotations:
  560. description: Exposes the database server
  561. spec:
  562. ports:
  563. - name: postgresql
  564. port: 5432
  565. targetPort: 5432
  566. selector:
  567. name: "${DATABASE_SERVICE_NAME}"
  568. - apiVersion: v1
  569. kind: DeploymentConfig
  570. metadata:
  571. name: "${DATABASE_SERVICE_NAME}"
  572. annotations:
  573. description: Defines how to deploy the database
  574. spec:
  575. strategy:
  576. type: Recreate
  577. triggers:
  578. - type: ConfigChange
  579. replicas: 1
  580. selector:
  581. name: "${DATABASE_SERVICE_NAME}"
  582. template:
  583. metadata:
  584. name: "${DATABASE_SERVICE_NAME}"
  585. labels:
  586. name: "${DATABASE_SERVICE_NAME}"
  587. spec:
  588. volumes:
  589. - name: cfme-pgdb-volume
  590. persistentVolumeClaim:
  591. claimName: "${NAME}-${DATABASE_SERVICE_NAME}"
  592. - name: cfme-pg-configs
  593. configMap:
  594. name: "${DATABASE_SERVICE_NAME}-configs"
  595. containers:
  596. - name: postgresql
  597. image: "${POSTGRESQL_IMG_NAME}:${POSTGRESQL_IMG_TAG}"
  598. ports:
  599. - containerPort: 5432
  600. readinessProbe:
  601. timeoutSeconds: 1
  602. initialDelaySeconds: 15
  603. exec:
  604. command:
  605. - "/bin/sh"
  606. - "-i"
  607. - "-c"
  608. - psql -h 127.0.0.1 -U ${POSTGRESQL_USER} -q -d ${POSTGRESQL_DATABASE} -c 'SELECT 1'
  609. livenessProbe:
  610. timeoutSeconds: 1
  611. initialDelaySeconds: 60
  612. tcpSocket:
  613. port: 5432
  614. volumeMounts:
  615. - name: cfme-pgdb-volume
  616. mountPath: "/var/lib/pgsql/data"
  617. - name: cfme-pg-configs
  618. mountPath: "/opt/app-root/src/postgresql-cfg/"
  619. env:
  620. - name: POSTGRESQL_USER
  621. value: "${DATABASE_USER}"
  622. - name: POSTGRESQL_PASSWORD
  623. valueFrom:
  624. secretKeyRef:
  625. name: "${NAME}-secrets"
  626. key: pg-password
  627. - name: POSTGRESQL_DATABASE
  628. value: "${DATABASE_NAME}"
  629. - name: POSTGRESQL_MAX_CONNECTIONS
  630. value: "${POSTGRESQL_MAX_CONNECTIONS}"
  631. - name: POSTGRESQL_SHARED_BUFFERS
  632. value: "${POSTGRESQL_SHARED_BUFFERS}"
  633. resources:
  634. requests:
  635. memory: "${POSTGRESQL_MEM_REQ}"
  636. cpu: "${POSTGRESQL_CPU_REQ}"
  637. limits:
  638. memory: "${POSTGRESQL_MEM_LIMIT}"
  639. - apiVersion: v1
  640. kind: Service
  641. metadata:
  642. annotations:
  643. description: Exposes and load balances Ansible pods
  644. service.alpha.openshift.io/dependencies: '[{"name":"${DATABASE_SERVICE_NAME}","namespace":"","kind":"Service"}]'
  645. name: "${ANSIBLE_SERVICE_NAME}"
  646. spec:
  647. ports:
  648. - name: http
  649. port: 80
  650. protocol: TCP
  651. targetPort: 80
  652. - name: https
  653. port: 443
  654. protocol: TCP
  655. targetPort: 443
  656. selector:
  657. name: "${ANSIBLE_SERVICE_NAME}"
  658. - apiVersion: v1
  659. kind: DeploymentConfig
  660. metadata:
  661. name: "${ANSIBLE_SERVICE_NAME}"
  662. annotations:
  663. description: Defines how to deploy the Ansible appliance
  664. spec:
  665. strategy:
  666. type: Recreate
  667. serviceName: "${ANSIBLE_SERVICE_NAME}"
  668. replicas: 0
  669. template:
  670. metadata:
  671. labels:
  672. name: "${ANSIBLE_SERVICE_NAME}"
  673. name: "${ANSIBLE_SERVICE_NAME}"
  674. spec:
  675. containers:
  676. - name: ansible
  677. image: "${ANSIBLE_IMG_NAME}:${ANSIBLE_IMG_TAG}"
  678. livenessProbe:
  679. tcpSocket:
  680. port: 443
  681. initialDelaySeconds: 480
  682. timeoutSeconds: 3
  683. readinessProbe:
  684. httpGet:
  685. path: "/"
  686. port: 443
  687. scheme: HTTPS
  688. initialDelaySeconds: 200
  689. timeoutSeconds: 3
  690. ports:
  691. - containerPort: 80
  692. protocol: TCP
  693. - containerPort: 443
  694. protocol: TCP
  695. securityContext:
  696. privileged: true
  697. env:
  698. - name: ADMIN_PASSWORD
  699. valueFrom:
  700. secretKeyRef:
  701. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  702. key: admin-password
  703. - name: RABBITMQ_USER_NAME
  704. value: "${ANSIBLE_RABBITMQ_USER_NAME}"
  705. - name: RABBITMQ_PASSWORD
  706. valueFrom:
  707. secretKeyRef:
  708. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  709. key: rabbit-password
  710. - name: ANSIBLE_SECRET_KEY
  711. valueFrom:
  712. secretKeyRef:
  713. name: "${ANSIBLE_SERVICE_NAME}-secrets"
  714. key: secret-key
  715. - name: DATABASE_SERVICE_NAME
  716. value: "${DATABASE_SERVICE_NAME}"
  717. - name: POSTGRESQL_USER
  718. value: "${DATABASE_USER}"
  719. - name: POSTGRESQL_PASSWORD
  720. valueFrom:
  721. secretKeyRef:
  722. name: "${NAME}-secrets"
  723. key: pg-password
  724. - name: POSTGRESQL_DATABASE
  725. value: "${ANSIBLE_DATABASE_NAME}"
  726. resources:
  727. requests:
  728. memory: "${ANSIBLE_MEM_REQ}"
  729. cpu: "${ANSIBLE_CPU_REQ}"
  730. limits:
  731. memory: "${ANSIBLE_MEM_LIMIT}"
  732. serviceAccount: cfme-privileged
  733. serviceAccountName: cfme-privileged
  734. - apiVersion: v1
  735. kind: Service
  736. metadata:
  737. name: "${HTTPD_SERVICE_NAME}"
  738. annotations:
  739. description: Exposes the httpd server
  740. service.alpha.openshift.io/dependencies: '[{"name":"${NAME}","namespace":"","kind":"Service"}]'
  741. spec:
  742. ports:
  743. - name: http
  744. port: 80
  745. targetPort: 80
  746. selector:
  747. name: httpd
  748. - apiVersion: v1
  749. kind: Service
  750. metadata:
  751. name: "${HTTPD_DBUS_API_SERVICE_NAME}"
  752. annotations:
  753. description: Exposes the httpd server dbus api
  754. service.alpha.openshift.io/dependencies: '[{"name":"${NAME}","namespace":"","kind":"Service"}]'
  755. spec:
  756. ports:
  757. - name: http-dbus-api
  758. port: 8080
  759. targetPort: 8080
  760. selector:
  761. name: httpd
  762. - apiVersion: v1
  763. kind: DeploymentConfig
  764. metadata:
  765. name: "${HTTPD_SERVICE_NAME}"
  766. annotations:
  767. description: Defines how to deploy httpd
  768. spec:
  769. strategy:
  770. type: Recreate
  771. recreateParams:
  772. timeoutSeconds: 1200
  773. triggers:
  774. - type: ConfigChange
  775. replicas: 1
  776. selector:
  777. name: "${HTTPD_SERVICE_NAME}"
  778. template:
  779. metadata:
  780. name: "${HTTPD_SERVICE_NAME}"
  781. labels:
  782. name: "${HTTPD_SERVICE_NAME}"
  783. spec:
  784. volumes:
  785. - name: httpd-config
  786. configMap:
  787. name: "${HTTPD_SERVICE_NAME}-configs"
  788. - name: httpd-auth-config
  789. configMap:
  790. name: "${HTTPD_SERVICE_NAME}-auth-configs"
  791. containers:
  792. - name: httpd
  793. image: "${HTTPD_IMG_NAME}:${HTTPD_IMG_TAG}"
  794. ports:
  795. - containerPort: 80
  796. protocol: TCP
  797. - containerPort: 8080
  798. protocol: TCP
  799. livenessProbe:
  800. exec:
  801. command:
  802. - pidof
  803. - httpd
  804. initialDelaySeconds: 15
  805. timeoutSeconds: 3
  806. readinessProbe:
  807. tcpSocket:
  808. port: 80
  809. initialDelaySeconds: 10
  810. timeoutSeconds: 3
  811. volumeMounts:
  812. - name: httpd-config
  813. mountPath: "${HTTPD_CONFIG_DIR}"
  814. - name: httpd-auth-config
  815. mountPath: "${HTTPD_AUTH_CONFIG_DIR}"
  816. resources:
  817. requests:
  818. memory: "${HTTPD_MEM_REQ}"
  819. cpu: "${HTTPD_CPU_REQ}"
  820. limits:
  821. memory: "${HTTPD_MEM_LIMIT}"
  822. env:
  823. - name: HTTPD_AUTH_TYPE
  824. valueFrom:
  825. configMapKeyRef:
  826. name: "${HTTPD_SERVICE_NAME}-auth-configs"
  827. key: auth-type
  828. - name: HTTPD_AUTH_KERBEROS_REALMS
  829. valueFrom:
  830. configMapKeyRef:
  831. name: "${HTTPD_SERVICE_NAME}-auth-configs"
  832. key: auth-kerberos-realms
  833. lifecycle:
  834. postStart:
  835. exec:
  836. command:
  837. - "/usr/bin/save-container-environment"
  838. serviceAccount: cfme-httpd
  839. serviceAccountName: cfme-httpd
  840. parameters:
  841. - name: NAME
  842. displayName: Name
  843. required: true
  844. description: The name assigned to all of the frontend objects defined in this template.
  845. value: cloudforms
  846. - name: V2_KEY
  847. displayName: CloudForms Encryption Key
  848. required: true
  849. description: Encryption Key for CloudForms Passwords
  850. from: "[a-zA-Z0-9]{43}"
  851. generate: expression
  852. - name: DATABASE_SERVICE_NAME
  853. displayName: PostgreSQL Service Name
  854. required: true
  855. description: The name of the OpenShift Service exposed for the PostgreSQL container.
  856. value: postgresql
  857. - name: DATABASE_USER
  858. displayName: PostgreSQL User
  859. required: true
  860. description: PostgreSQL user that will access the database.
  861. value: root
  862. - name: DATABASE_PASSWORD
  863. displayName: PostgreSQL Password
  864. required: true
  865. description: Password for the PostgreSQL user.
  866. from: "[a-zA-Z0-9]{8}"
  867. generate: expression
  868. - name: DATABASE_NAME
  869. required: true
  870. displayName: PostgreSQL Database Name
  871. description: Name of the PostgreSQL database accessed.
  872. value: vmdb_production
  873. - name: DATABASE_REGION
  874. required: true
  875. displayName: Application Database Region
  876. description: Database region that will be used for application.
  877. value: '0'
  878. - name: APPLICATION_ADMIN_PASSWORD
  879. displayName: Application Admin Password
  880. required: true
  881. description: Admin password that will be set on the application.
  882. value: smartvm
  883. - name: ANSIBLE_DATABASE_NAME
  884. displayName: Ansible PostgreSQL database name
  885. required: true
  886. description: The database to be used by the Ansible continer
  887. value: awx
  888. - name: MEMCACHED_SERVICE_NAME
  889. required: true
  890. displayName: Memcached Service Name
  891. description: The name of the OpenShift Service exposed for the Memcached container.
  892. value: memcached
  893. - name: MEMCACHED_MAX_MEMORY
  894. displayName: Memcached Max Memory
  895. description: Memcached maximum memory for memcached object storage in MB.
  896. value: '64'
  897. - name: MEMCACHED_MAX_CONNECTIONS
  898. displayName: Memcached Max Connections
  899. description: Memcached maximum number of connections allowed.
  900. value: '1024'
  901. - name: MEMCACHED_SLAB_PAGE_SIZE
  902. displayName: Memcached Slab Page Size
  903. description: Memcached size of each slab page.
  904. value: 1m
  905. - name: POSTGRESQL_MAX_CONNECTIONS
  906. displayName: PostgreSQL Max Connections
  907. description: PostgreSQL maximum number of database connections allowed.
  908. value: '1000'
  909. - name: POSTGRESQL_SHARED_BUFFERS
  910. displayName: PostgreSQL Shared Buffer Amount
  911. description: Amount of memory dedicated for PostgreSQL shared memory buffers.
  912. value: 1GB
  913. - name: ANSIBLE_SERVICE_NAME
  914. displayName: Ansible Service Name
  915. description: The name of the OpenShift Service exposed for the Ansible container.
  916. value: ansible
  917. - name: ANSIBLE_ADMIN_PASSWORD
  918. displayName: Ansible admin User password
  919. required: true
  920. description: The password for the Ansible container admin user
  921. from: "[a-zA-Z0-9]{32}"
  922. generate: expression
  923. - name: ANSIBLE_SECRET_KEY
  924. displayName: Ansible Secret Key
  925. required: true
  926. description: Encryption key for the Ansible container
  927. from: "[a-f0-9]{32}"
  928. generate: expression
  929. - name: ANSIBLE_RABBITMQ_USER_NAME
  930. displayName: RabbitMQ Username
  931. required: true
  932. description: Username for the Ansible RabbitMQ Server
  933. value: ansible
  934. - name: ANSIBLE_RABBITMQ_PASSWORD
  935. displayName: RabbitMQ Server Password
  936. required: true
  937. description: Password for the Ansible RabbitMQ Server
  938. from: "[a-zA-Z0-9]{32}"
  939. generate: expression
  940. - name: APPLICATION_CPU_REQ
  941. displayName: Application Min CPU Requested
  942. required: true
  943. description: Minimum amount of CPU time the Application container will need (expressed in millicores).
  944. value: 1000m
  945. - name: POSTGRESQL_CPU_REQ
  946. displayName: PostgreSQL Min CPU Requested
  947. required: true
  948. description: Minimum amount of CPU time the PostgreSQL container will need (expressed in millicores).
  949. value: 500m
  950. - name: MEMCACHED_CPU_REQ
  951. displayName: Memcached Min CPU Requested
  952. required: true
  953. description: Minimum amount of CPU time the Memcached container will need (expressed in millicores).
  954. value: 200m
  955. - name: ANSIBLE_CPU_REQ
  956. displayName: Ansible Min CPU Requested
  957. required: true
  958. description: Minimum amount of CPU time the Ansible container will need (expressed in millicores).
  959. value: 1000m
  960. - name: APPLICATION_MEM_REQ
  961. displayName: Application Min RAM Requested
  962. required: true
  963. description: Minimum amount of memory the Application container will need.
  964. value: 6144Mi
  965. - name: POSTGRESQL_MEM_REQ
  966. displayName: PostgreSQL Min RAM Requested
  967. required: true
  968. description: Minimum amount of memory the PostgreSQL container will need.
  969. value: 4Gi
  970. - name: MEMCACHED_MEM_REQ
  971. displayName: Memcached Min RAM Requested
  972. required: true
  973. description: Minimum amount of memory the Memcached container will need.
  974. value: 64Mi
  975. - name: ANSIBLE_MEM_REQ
  976. displayName: Ansible Min RAM Requested
  977. required: true
  978. description: Minimum amount of memory the Ansible container will need.
  979. value: 2048Mi
  980. - name: APPLICATION_MEM_LIMIT
  981. displayName: Application Max RAM Limit
  982. required: true
  983. description: Maximum amount of memory the Application container can consume.
  984. value: 16384Mi
  985. - name: POSTGRESQL_MEM_LIMIT
  986. displayName: PostgreSQL Max RAM Limit
  987. required: true
  988. description: Maximum amount of memory the PostgreSQL container can consume.
  989. value: 8Gi
  990. - name: MEMCACHED_MEM_LIMIT
  991. displayName: Memcached Max RAM Limit
  992. required: true
  993. description: Maximum amount of memory the Memcached container can consume.
  994. value: 256Mi
  995. - name: ANSIBLE_MEM_LIMIT
  996. displayName: Ansible Max RAM Limit
  997. required: true
  998. description: Maximum amount of memory the Ansible container can consume.
  999. value: 8096Mi
  1000. - name: POSTGRESQL_IMG_NAME
  1001. displayName: PostgreSQL Image Name
  1002. description: This is the PostgreSQL image name requested to deploy.
  1003. value: registry.access.redhat.com/cloudforms46/cfme-openshift-postgresql
  1004. - name: POSTGRESQL_IMG_TAG
  1005. displayName: PostgreSQL Image Tag
  1006. description: This is the PostgreSQL image tag/version requested to deploy.
  1007. value: latest
  1008. - name: MEMCACHED_IMG_NAME
  1009. displayName: Memcached Image Name
  1010. description: This is the Memcached image name requested to deploy.
  1011. value: registry.access.redhat.com/cloudforms46/cfme-openshift-memcached
  1012. - name: MEMCACHED_IMG_TAG
  1013. displayName: Memcached Image Tag
  1014. description: This is the Memcached image tag/version requested to deploy.
  1015. value: latest
  1016. - name: FRONTEND_APPLICATION_IMG_NAME
  1017. displayName: Frontend Application Image Name
  1018. description: This is the Frontend Application image name requested to deploy.
  1019. value: registry.access.redhat.com/cloudforms46/cfme-openshift-app-ui
  1020. - name: BACKEND_APPLICATION_IMG_NAME
  1021. displayName: Backend Application Image Name
  1022. description: This is the Backend Application image name requested to deploy.
  1023. value: registry.access.redhat.com/cloudforms46/cfme-openshift-app
  1024. - name: FRONTEND_APPLICATION_IMG_TAG
  1025. displayName: Front end Application Image Tag
  1026. description: This is the CloudForms Frontend Application image tag/version requested to deploy.
  1027. value: latest
  1028. - name: BACKEND_APPLICATION_IMG_TAG
  1029. displayName: Back end Application Image Tag
  1030. description: This is the CloudForms Backend Application image tag/version requested to deploy.
  1031. value: latest
  1032. - name: ANSIBLE_IMG_NAME
  1033. displayName: Ansible Image Name
  1034. description: This is the Ansible image name requested to deploy.
  1035. value: registry.access.redhat.com/cloudforms46/cfme-openshift-embedded-ansible
  1036. - name: ANSIBLE_IMG_TAG
  1037. displayName: Ansible Image Tag
  1038. description: This is the Ansible image tag/version requested to deploy.
  1039. value: latest
  1040. - name: APPLICATION_DOMAIN
  1041. displayName: Application Hostname
  1042. description: The exposed hostname that will route to the application service, if left blank a value will be defaulted.
  1043. value: ''
  1044. - name: APPLICATION_REPLICA_COUNT
  1045. displayName: Application Replica Count
  1046. description: This is the number of Application replicas requested to deploy.
  1047. value: '1'
  1048. - name: APPLICATION_INIT_DELAY
  1049. displayName: Application Init Delay
  1050. required: true
  1051. description: Delay in seconds before we attempt to initialize the application.
  1052. value: '15'
  1053. - name: APPLICATION_VOLUME_CAPACITY
  1054. displayName: Application Volume Capacity
  1055. required: true
  1056. description: Volume space available for application data.
  1057. value: 5Gi
  1058. - name: DATABASE_VOLUME_CAPACITY
  1059. displayName: Database Volume Capacity
  1060. required: true
  1061. description: Volume space available for database.
  1062. value: 15Gi
  1063. - name: HTTPD_SERVICE_NAME
  1064. required: true
  1065. displayName: Apache httpd Service Name
  1066. description: The name of the OpenShift Service exposed for the httpd container.
  1067. value: httpd
  1068. - name: HTTPD_DBUS_API_SERVICE_NAME
  1069. required: true
  1070. displayName: Apache httpd DBus API Service Name
  1071. description: The name of httpd dbus api service.
  1072. value: httpd-dbus-api
  1073. - name: HTTPD_IMG_NAME
  1074. displayName: Apache httpd Image Name
  1075. description: This is the httpd image name requested to deploy.
  1076. value: registry.access.redhat.com/cloudforms46/cfme-openshift-httpd
  1077. - name: HTTPD_IMG_TAG
  1078. displayName: Apache httpd Image Tag
  1079. description: This is the httpd image tag/version requested to deploy.
  1080. value: latest
  1081. - name: HTTPD_CONFIG_DIR
  1082. displayName: Apache Configuration Directory
  1083. description: Directory used to store the Apache configuration files.
  1084. value: "/etc/httpd/conf.d"
  1085. - name: HTTPD_AUTH_CONFIG_DIR
  1086. displayName: External Authentication Configuration Directory
  1087. description: Directory used to store the external authentication configuration files.
  1088. value: "/etc/httpd/auth-conf.d"
  1089. - name: HTTPD_CPU_REQ
  1090. displayName: Apache httpd Min CPU Requested
  1091. required: true
  1092. description: Minimum amount of CPU time the httpd container will need (expressed in millicores).
  1093. value: 500m
  1094. - name: HTTPD_MEM_REQ
  1095. displayName: Apache httpd Min RAM Requested
  1096. required: true
  1097. description: Minimum amount of memory the httpd container will need.
  1098. value: 512Mi
  1099. - name: HTTPD_MEM_LIMIT
  1100. displayName: Apache httpd Max RAM Limit
  1101. required: true
  1102. description: Maximum amount of memory the httpd container can consume.
  1103. value: 8192Mi