cfme-template-ext-db.yaml 32 KB

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