cfme-template-ext-db.yaml 31 KB

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