amp.yml 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261
  1. base_env: &base_env
  2. - name: RAILS_ENV
  3. value: "production"
  4. - name: DATABASE_URL
  5. value: "mysql2://root:${MYSQL_ROOT_PASSWORD}@system-mysql/${MYSQL_DATABASE}"
  6. - name: FORCE_SSL
  7. value: "true"
  8. - name: THREESCALE_SUPERDOMAIN
  9. value: "${WILDCARD_DOMAIN}"
  10. - name: TENANT_NAME
  11. value: "${TENANT_NAME}"
  12. - name: APICAST_ACCESS_TOKEN
  13. value: "${APICAST_ACCESS_TOKEN}"
  14. - name: ADMIN_ACCESS_TOKEN
  15. value: "${ADMIN_ACCESS_TOKEN}"
  16. - name: PROVIDER_PLAN
  17. value: 'enterprise'
  18. - name: USER_LOGIN
  19. value: "${ADMIN_USERNAME}"
  20. - name: USER_PASSWORD
  21. value: "${ADMIN_PASSWORD}"
  22. - name: RAILS_LOG_TO_STDOUT
  23. value: "true"
  24. - name: RAILS_LOG_LEVEL
  25. value: "info"
  26. - name: THINKING_SPHINX_ADDRESS
  27. value: "system-sphinx"
  28. - name: THINKING_SPHINX_PORT
  29. value: "9306"
  30. - name: THINKING_SPHINX_CONFIGURATION_FILE
  31. value: "/tmp/sphinx.conf"
  32. - name: EVENTS_SHARED_SECRET
  33. value: "${SYSTEM_BACKEND_SHARED_SECRET}"
  34. - name: THREESCALE_SANDBOX_PROXY_OPENSSL_VERIFY_MODE
  35. value: "VERIFY_NONE"
  36. - name: APICAST_BACKEND_ROOT_ENDPOINT
  37. value: "https://backend-${TENANT_NAME}.${WILDCARD_DOMAIN}"
  38. - name: CONFIG_INTERNAL_API_USER
  39. value: "${SYSTEM_BACKEND_USERNAME}"
  40. - name: CONFIG_INTERNAL_API_PASSWORD
  41. value: "${SYSTEM_BACKEND_PASSWORD}"
  42. - name: SECRET_KEY_BASE
  43. value: "${SYSTEM_APP_SECRET_KEY_BASE}"
  44. - name: AMP_RELEASE
  45. value: "${AMP_RELEASE}"
  46. - name: SMTP_ADDRESS
  47. valueFrom:
  48. configMapKeyRef:
  49. name: smtp
  50. key: address
  51. - name: SMTP_USER_NAME
  52. valueFrom:
  53. configMapKeyRef:
  54. name: smtp
  55. key: username
  56. - name: SMTP_PASSWORD
  57. valueFrom:
  58. configMapKeyRef:
  59. name: smtp
  60. key: password
  61. - name: SMTP_DOMAIN
  62. valueFrom:
  63. configMapKeyRef:
  64. name: smtp
  65. key: domain
  66. - name: SMTP_PORT
  67. valueFrom:
  68. configMapKeyRef:
  69. name: smtp
  70. key: port
  71. - name: SMTP_AUTHENTICATION
  72. valueFrom:
  73. configMapKeyRef:
  74. name: smtp
  75. key: authentication
  76. - name: SMTP_OPENSSL_VERIFY_MODE
  77. valueFrom:
  78. configMapKeyRef:
  79. name: smtp
  80. key: openssl.verify.mode
  81. - name: BACKEND_ROUTE
  82. value: "https://backend-${TENANT_NAME}.${WILDCARD_DOMAIN}"
  83. apiVersion: v1
  84. kind: Template
  85. metadata:
  86. name: "system"
  87. message: "Login on https://${TENANT_NAME}-admin.${WILDCARD_DOMAIN} as ${ADMIN_USERNAME}/${ADMIN_PASSWORD}"
  88. objects:
  89. - apiVersion: "v1"
  90. kind: "PersistentVolumeClaim"
  91. metadata:
  92. name: "system-storage"
  93. spec:
  94. accessModes:
  95. - "ReadWriteMany"
  96. resources:
  97. requests:
  98. storage: "100Mi"
  99. - apiVersion: "v1"
  100. kind: "PersistentVolumeClaim"
  101. metadata:
  102. name: "mysql-storage"
  103. spec:
  104. accessModes:
  105. - "ReadWriteOnce"
  106. resources:
  107. requests:
  108. storage: "1Gi"
  109. - apiVersion: "v1"
  110. kind: "PersistentVolumeClaim"
  111. metadata:
  112. name: "system-redis-storage"
  113. spec:
  114. accessModes:
  115. - "ReadWriteOnce"
  116. resources:
  117. requests:
  118. storage: "1Gi"
  119. - apiVersion: "v1"
  120. kind: "PersistentVolumeClaim"
  121. metadata:
  122. name: "backend-redis-storage"
  123. spec:
  124. accessModes:
  125. - "ReadWriteOnce"
  126. resources:
  127. requests:
  128. storage: "1Gi"
  129. - apiVersion: v1
  130. kind: DeploymentConfig
  131. metadata:
  132. name: backend-cron
  133. spec:
  134. replicas: 1
  135. selector:
  136. name: backend-cron
  137. strategy:
  138. rollingParams:
  139. intervalSeconds: 1
  140. maxSurge: 25%
  141. maxUnavailable: 25%
  142. timeoutSeconds: 600
  143. updatePeriodSeconds: 1
  144. type: Rolling
  145. template:
  146. metadata:
  147. labels:
  148. name: backend-cron
  149. spec:
  150. containers:
  151. - args:
  152. - backend-cron
  153. env:
  154. - name: CONFIG_REDIS_PROXY
  155. value: "backend-redis:6379"
  156. - name: CONFIG_QUEUES_MASTER_NAME
  157. value: "backend-redis:6379/1"
  158. - name: RACK_ENV
  159. value: "production"
  160. image: 3scale-amp20/backend:1.0-2
  161. imagePullPolicy: IfNotPresent
  162. name: backend-cron
  163. triggers:
  164. - type: ConfigChange
  165. - apiVersion: v1
  166. kind: DeploymentConfig
  167. metadata:
  168. name: backend-redis
  169. spec:
  170. replicas: 1
  171. selector:
  172. name: backend-redis
  173. strategy:
  174. type: Recreate
  175. template:
  176. metadata:
  177. labels:
  178. name: backend-redis
  179. spec:
  180. containers:
  181. - image: ${REDIS_IMAGE}
  182. imagePullPolicy: IfNotPresent
  183. name: backend-redis
  184. readinessProbe:
  185. exec:
  186. command:
  187. - "container-entrypoint"
  188. - "bash"
  189. - "-c"
  190. - "redis-cli set liveness-probe \"`date`\" | grep OK"
  191. initialDelaySeconds: 10
  192. periodSeconds: 30
  193. timeoutSeconds: 1
  194. livenessProbe:
  195. tcpSocket:
  196. port: 6379
  197. initialDelaySeconds: 10
  198. periodSeconds: 10
  199. volumeMounts:
  200. - name: backend-redis-storage
  201. mountPath: "/var/lib/redis/data"
  202. - name: redis-config
  203. mountPath: /etc/redis.conf
  204. subPath: redis.conf
  205. volumes:
  206. - name: backend-redis-storage
  207. persistentVolumeClaim:
  208. claimName: backend-redis-storage
  209. - name: redis-config
  210. configMap:
  211. name: redis-config
  212. items:
  213. - key: redis.conf
  214. path: redis.conf
  215. triggers:
  216. - type: ConfigChange
  217. - apiVersion: v1
  218. kind: DeploymentConfig
  219. metadata:
  220. name: backend-listener
  221. spec:
  222. replicas: 1
  223. selector:
  224. name: backend-listener
  225. strategy:
  226. rollingParams:
  227. intervalSeconds: 1
  228. maxSurge: 25%
  229. maxUnavailable: 25%
  230. timeoutSeconds: 600
  231. updatePeriodSeconds: 1
  232. type: Rolling
  233. template:
  234. metadata:
  235. labels:
  236. name: backend-listener
  237. spec:
  238. containers:
  239. - args:
  240. - 3scale_backend
  241. - start
  242. - "-e"
  243. - production
  244. - "-p"
  245. - '3000'
  246. - "-x"
  247. - "/dev/stdout"
  248. env:
  249. - name: CONFIG_REDIS_PROXY
  250. value: "backend-redis:6379"
  251. - name: CONFIG_QUEUES_MASTER_NAME
  252. value: "backend-redis:6379/1"
  253. - name: RACK_ENV
  254. value: "production"
  255. - name: CONFIG_INTERNAL_API_USER
  256. value: "${SYSTEM_BACKEND_USERNAME}"
  257. - name: CONFIG_INTERNAL_API_PASSWORD
  258. value: "${SYSTEM_BACKEND_PASSWORD}"
  259. image: 3scale-amp20/backend:1.0-2
  260. imagePullPolicy: IfNotPresent
  261. name: backend-listener
  262. livenessProbe:
  263. initialDelaySeconds: 30
  264. periodSeconds: 10
  265. tcpSocket:
  266. port: 3000
  267. readinessProbe:
  268. httpGet:
  269. path: "/status"
  270. port: 3000
  271. initialDelaySeconds: 30
  272. timeoutSeconds: 5
  273. ports:
  274. - containerPort: 3000
  275. protocol: TCP
  276. triggers:
  277. - type: ConfigChange
  278. - apiVersion: v1
  279. kind: Service
  280. metadata:
  281. name: backend-redis
  282. spec:
  283. ports:
  284. - port: 6379
  285. protocol: TCP
  286. targetPort: 6379
  287. selector:
  288. name: backend-redis
  289. - apiVersion: v1
  290. kind: Service
  291. metadata:
  292. name: backend-listener
  293. spec:
  294. ports:
  295. - port: 3000
  296. protocol: TCP
  297. targetPort: 3000
  298. name: http
  299. selector:
  300. name: backend-listener
  301. - apiVersion: v1
  302. kind: Service
  303. metadata:
  304. name: system-provider
  305. spec:
  306. ports:
  307. - port: 3000
  308. protocol: TCP
  309. targetPort: provider
  310. name: http
  311. selector:
  312. name: system-app
  313. - apiVersion: v1
  314. kind: Service
  315. metadata:
  316. name: system-developer
  317. spec:
  318. ports:
  319. - port: 3000
  320. protocol: TCP
  321. targetPort: developer
  322. name: http
  323. selector:
  324. name: system-app
  325. - apiVersion: v1
  326. kind: DeploymentConfig
  327. metadata:
  328. name: backend-worker
  329. spec:
  330. replicas: 1
  331. selector:
  332. name: backend-worker
  333. strategy:
  334. rollingParams:
  335. intervalSeconds: 1
  336. maxSurge: 25%
  337. maxUnavailable: 25%
  338. timeoutSeconds: 600
  339. updatePeriodSeconds: 1
  340. type: Rolling
  341. template:
  342. metadata:
  343. labels:
  344. name: backend-worker
  345. spec:
  346. containers:
  347. - args:
  348. - 3scale_backend_worker
  349. - run
  350. env:
  351. - name: CONFIG_REDIS_PROXY
  352. value: "backend-redis:6379"
  353. - name: CONFIG_QUEUES_MASTER_NAME
  354. value: "backend-redis:6379/1"
  355. - name: RACK_ENV
  356. value: "production"
  357. - name: CONFIG_EVENTS_HOOK
  358. value: http://system-provider:3000/master/events/import
  359. - name: CONFIG_EVENTS_HOOK_SHARED_SECRET
  360. value: ${SYSTEM_BACKEND_SHARED_SECRET}
  361. image: 3scale-amp20/backend:1.0-2
  362. imagePullPolicy: IfNotPresent
  363. name: backend-worker
  364. triggers:
  365. - type: ConfigChange
  366. - kind: Service
  367. apiVersion: v1
  368. metadata:
  369. name: 'system-mysql'
  370. spec:
  371. ports:
  372. - name: system-mysql
  373. protocol: TCP
  374. port: 3306
  375. targetPort: 3306
  376. nodePort: 0
  377. selector:
  378. name: 'system-mysql'
  379. - apiVersion: v1
  380. kind: Service
  381. metadata:
  382. name: system-redis
  383. spec:
  384. ports:
  385. - port: 6379
  386. protocol: TCP
  387. targetPort: 6379
  388. name: redis
  389. selector:
  390. name: system-redis
  391. - apiVersion: v1
  392. kind: DeploymentConfig
  393. metadata:
  394. name: system-redis
  395. spec:
  396. replicas: 1
  397. selector:
  398. name: system-redis
  399. strategy:
  400. type: Recreate
  401. template:
  402. metadata:
  403. labels:
  404. name: system-redis
  405. spec:
  406. containers:
  407. - args:
  408. image: ${REDIS_IMAGE}
  409. imagePullPolicy: IfNotPresent
  410. name: system-redis
  411. terminationMessagePath: /dev/termination-log
  412. volumeMounts:
  413. - name: system-redis-storage
  414. mountPath: "/var/lib/redis/data"
  415. - name: redis-config
  416. mountPath: /etc/redis.conf
  417. subPath: redis.conf
  418. readinessProbe:
  419. exec:
  420. command:
  421. - "container-entrypoint"
  422. - "bash"
  423. - "-c"
  424. - "redis-cli set liveness-probe \"`date`\" | grep OK"
  425. initialDelaySeconds: 30
  426. periodSeconds: 10
  427. timeoutSeconds: 5
  428. livenessProbe:
  429. tcpSocket:
  430. port: 6379
  431. initialDelaySeconds: 10
  432. periodSeconds: 5
  433. volumes:
  434. - name: system-redis-storage
  435. persistentVolumeClaim:
  436. claimName: system-redis-storage
  437. - name: redis-config
  438. configMap:
  439. name: redis-config
  440. items:
  441. - key: redis.conf
  442. path: redis.conf
  443. triggers:
  444. - type: ConfigChange
  445. - apiVersion: v1
  446. kind: Service
  447. metadata:
  448. name: system-sphinx
  449. spec:
  450. ports:
  451. - port: 9306
  452. protocol: TCP
  453. targetPort: 9306
  454. name: sphinx
  455. selector:
  456. name: system-sphinx
  457. - apiVersion: v1
  458. kind: DeploymentConfig
  459. metadata:
  460. name: system-sphinx
  461. spec:
  462. replicas: 1
  463. selector:
  464. name: system-sphinx
  465. strategy:
  466. rollingParams:
  467. intervalSeconds: 1
  468. maxSurge: 25%
  469. maxUnavailable: 25%
  470. timeoutSeconds: 600
  471. updatePeriodSeconds: 1
  472. type: Rolling
  473. template:
  474. metadata:
  475. labels:
  476. name: system-sphinx
  477. spec:
  478. volumes:
  479. - name: system-sphinx-database
  480. emptyDir: {}
  481. containers:
  482. - args:
  483. - rake
  484. - 'openshift:thinking_sphinx:start'
  485. volumeMounts:
  486. - name: system-sphinx-database
  487. mountPath: "/opt/system/db/sphinx"
  488. env:
  489. - name: RAILS_ENV
  490. value: production
  491. - name: DATABASE_URL
  492. value: "mysql2://root:${MYSQL_ROOT_PASSWORD}@system-mysql/${MYSQL_DATABASE}"
  493. - name: THINKING_SPHINX_ADDRESS
  494. value: 0.0.0.0
  495. - name: THINKING_SPHINX_CONFIGURATION_FILE
  496. value: "db/sphinx/production.conf"
  497. - name: THINKING_SPHINX_PID_FILE
  498. value: db/sphinx/searchd.pid
  499. - name: DELTA_INDEX_INTERVAL
  500. value: '5'
  501. - name: FULL_REINDEX_INTERVAL
  502. value: '60'
  503. image: 3scale-amp20/system:1.0-2
  504. imagePullPolicy: IfNotPresent
  505. name: system-sphinx
  506. livenessProbe:
  507. tcpSocket:
  508. port: 9306
  509. initialDelaySeconds: 60
  510. periodSeconds: 10
  511. triggers:
  512. - type: ConfigChange
  513. - apiVersion: v1
  514. kind: Service
  515. metadata:
  516. name: system-memcache
  517. spec:
  518. ports:
  519. - port: 11211
  520. protocol: TCP
  521. targetPort: 11211
  522. name: memcache
  523. selector:
  524. name: system-memcache
  525. - apiVersion: v1
  526. kind: DeploymentConfig
  527. metadata:
  528. name: system-memcache
  529. spec:
  530. replicas: 1
  531. selector:
  532. name: system-memcache
  533. strategy:
  534. rollingParams:
  535. intervalSeconds: 1
  536. maxSurge: 25%
  537. maxUnavailable: 25%
  538. timeoutSeconds: 600
  539. updatePeriodSeconds: 1
  540. type: Rolling
  541. template:
  542. metadata:
  543. labels:
  544. name: system-memcache
  545. spec:
  546. containers:
  547. - args:
  548. env:
  549. image: 3scale-amp20/memcached:1.4.15-7
  550. imagePullPolicy: IfNotPresent
  551. name: memcache
  552. readinessProbe:
  553. exec:
  554. command:
  555. - "sh"
  556. - "-c"
  557. - "echo version | nc $HOSTNAME 11211 | grep VERSION"
  558. initialDelaySeconds: 10
  559. periodSeconds: 30
  560. timeoutSeconds: 5
  561. livenessProbe:
  562. tcpSocket:
  563. port: 11211
  564. initialDelaySeconds: 10
  565. periodSeconds: 10
  566. command:
  567. - "memcached"
  568. - "-m"
  569. - "64"
  570. ports:
  571. - containerPort: 6379
  572. protocol: TCP
  573. triggers:
  574. - type: ConfigChange
  575. - apiVersion: v1
  576. kind: Route
  577. metadata:
  578. name: system-provider-admin-route
  579. labels:
  580. app: system-route
  581. spec:
  582. host: ${TENANT_NAME}-admin.${WILDCARD_DOMAIN}
  583. to:
  584. kind: Service
  585. name: system-provider
  586. port:
  587. targetPort: http
  588. tls:
  589. termination: edge
  590. insecureEdgeTerminationPolicy: Allow
  591. - apiVersion: v1
  592. kind: Route
  593. metadata:
  594. name: backend-route
  595. labels:
  596. app: system-route
  597. spec:
  598. host: backend-${TENANT_NAME}.${WILDCARD_DOMAIN}
  599. to:
  600. kind: Service
  601. name: backend-listener
  602. port:
  603. targetPort: http
  604. tls:
  605. termination: edge
  606. insecureEdgeTerminationPolicy: Allow
  607. - apiVersion: v1
  608. kind: Route
  609. metadata:
  610. name: system-developer-route
  611. labels:
  612. app: system-route
  613. spec:
  614. host: ${TENANT_NAME}.${WILDCARD_DOMAIN}
  615. to:
  616. kind: Service
  617. name: system-developer
  618. port:
  619. targetPort: http
  620. tls:
  621. termination: edge
  622. insecureEdgeTerminationPolicy: Allow
  623. - apiVersion: v1
  624. kind: DeploymentConfig
  625. metadata:
  626. name: apicast-staging
  627. spec:
  628. replicas: 1
  629. selector:
  630. deploymentconfig: apicast-staging
  631. strategy:
  632. rollingParams:
  633. intervalSeconds: 1
  634. maxSurge: 25%
  635. maxUnavailable: 25%
  636. timeoutSeconds: 1800
  637. updatePeriodSeconds: 1
  638. type: Rolling
  639. template:
  640. metadata:
  641. labels:
  642. deploymentconfig: apicast-staging
  643. spec:
  644. containers:
  645. - env:
  646. - name: THREESCALE_PORTAL_ENDPOINT
  647. value: http://${APICAST_ACCESS_TOKEN}@system-provider:3000
  648. - name: APICAST_CONFIGURATION_LOADER
  649. value: "lazy"
  650. - name: APICAST_CONFIGURATION_CACHE
  651. value: "0"
  652. - name: THREESCALE_DEPLOYMENT_ENV
  653. value: "sandbox"
  654. - name: APICAST_MANAGEMENT_API
  655. value: "${APICAST_MANAGEMENT_API}"
  656. - name: BACKEND_ENDPOINT_OVERRIDE
  657. value: http://backend-listener:3000
  658. - name: OPENSSL_VERIFY
  659. value: '${APICAST_OPENSSL_VERIFY}'
  660. - name: APICAST_RESPONSE_CODES
  661. value: '${APICAST_RESPONSE_CODES}'
  662. - name: REDIS_URL
  663. value: "redis://system-redis:6379/2"
  664. image: 3scale-amp20/apicast-gateway:1.0-3
  665. imagePullPolicy: IfNotPresent
  666. name: apicast-staging
  667. livenessProbe:
  668. httpGet:
  669. path: /status/live
  670. port: 8090
  671. initialDelaySeconds: 10
  672. timeoutSeconds: 5
  673. periodSeconds: 10
  674. readinessProbe:
  675. httpGet:
  676. path: /status/ready
  677. port: 8090
  678. initialDelaySeconds: 15
  679. timeoutSeconds: 5
  680. periodSeconds: 30
  681. ports:
  682. - containerPort: 8080
  683. protocol: TCP
  684. - containerPort: 8090
  685. protocol: TCP
  686. triggers:
  687. - type: ConfigChange
  688. - apiVersion: v1
  689. kind: Service
  690. metadata:
  691. name: apicast-staging
  692. spec:
  693. ports:
  694. - name: gateway
  695. port: 8080
  696. protocol: TCP
  697. targetPort: 8080
  698. - name: management
  699. port: 8090
  700. protocol: TCP
  701. targetPort: 8090
  702. selector:
  703. deploymentconfig: apicast-staging
  704. - apiVersion: v1
  705. kind: DeploymentConfig
  706. metadata:
  707. name: apicast-production
  708. spec:
  709. replicas: 1
  710. selector:
  711. deploymentconfig: apicast-production
  712. strategy:
  713. rollingParams:
  714. intervalSeconds: 1
  715. maxSurge: 25%
  716. maxUnavailable: 25%
  717. timeoutSeconds: 1800
  718. updatePeriodSeconds: 1
  719. type: Rolling
  720. template:
  721. metadata:
  722. labels:
  723. deploymentconfig: apicast-production
  724. spec:
  725. containers:
  726. - env:
  727. - name: THREESCALE_PORTAL_ENDPOINT
  728. value: "http://${APICAST_ACCESS_TOKEN}@system-provider:3000"
  729. - name: APICAST_CONFIGURATION_LOADER
  730. value: "boot"
  731. - name: APICAST_CONFIGURATION_CACHE
  732. value: "300"
  733. - name: THREESCALE_DEPLOYMENT_ENV
  734. value: "production"
  735. - name: APICAST_MANAGEMENT_API
  736. value: "${APICAST_MANAGEMENT_API}"
  737. - name: BACKEND_ENDPOINT_OVERRIDE
  738. value: http://backend-listener:3000
  739. - name: OPENSSL_VERIFY
  740. value: '${APICAST_OPENSSL_VERIFY}'
  741. - name: APICAST_RESPONSE_CODES
  742. value: '${APICAST_RESPONSE_CODES}'
  743. - name: REDIS_URL
  744. value: "redis://system-redis:6379/1"
  745. image: 3scale-amp20/apicast-gateway:1.0-3
  746. imagePullPolicy: IfNotPresent
  747. name: apicast-production
  748. livenessProbe:
  749. httpGet:
  750. path: /status/live
  751. port: 8090
  752. initialDelaySeconds: 10
  753. timeoutSeconds: 5
  754. periodSeconds: 10
  755. readinessProbe:
  756. httpGet:
  757. path: /status/ready
  758. port: 8090
  759. initialDelaySeconds: 15
  760. timeoutSeconds: 5
  761. periodSeconds: 30
  762. ports:
  763. - containerPort: 8080
  764. protocol: TCP
  765. - containerPort: 8090
  766. protocol: TCP
  767. triggers:
  768. - type: ConfigChange
  769. - apiVersion: v1
  770. kind: Service
  771. metadata:
  772. name: apicast-production
  773. spec:
  774. ports:
  775. - name: gateway
  776. port: 8080
  777. protocol: TCP
  778. targetPort: 8080
  779. - name: management
  780. port: 8090
  781. protocol: TCP
  782. targetPort: 8090
  783. selector:
  784. deploymentconfig: apicast-production
  785. - apiVersion: v1
  786. kind: Route
  787. metadata:
  788. name: api-apicast-staging-route
  789. labels:
  790. app: apicast-staging
  791. spec:
  792. host: api-${TENANT_NAME}-apicast-staging.${WILDCARD_DOMAIN}
  793. to:
  794. kind: Service
  795. name: apicast-staging
  796. port:
  797. targetPort: gateway
  798. tls:
  799. termination: edge
  800. insecureEdgeTerminationPolicy: Allow
  801. - apiVersion: v1
  802. kind: Route
  803. metadata:
  804. name: api-apicast-production-route
  805. labels:
  806. app: apicast-production
  807. spec:
  808. host: api-${TENANT_NAME}-apicast-production.${WILDCARD_DOMAIN}
  809. to:
  810. kind: Service
  811. name: apicast-production
  812. port:
  813. targetPort: gateway
  814. tls:
  815. termination: edge
  816. insecureEdgeTerminationPolicy: Allow
  817. - apiVersion: v1
  818. kind: DeploymentConfig
  819. metadata:
  820. name: system-app
  821. spec:
  822. replicas: 1
  823. selector:
  824. name: system-app
  825. strategy:
  826. rollingParams:
  827. intervalSeconds: 1
  828. maxSurge: 25%
  829. maxUnavailable: 25%
  830. timeoutSeconds: 600
  831. updatePeriodSeconds: 1
  832. pre:
  833. failurePolicy: Retry
  834. execNewPod:
  835. containerName: system-provider
  836. command:
  837. - bash
  838. - -c
  839. - bundle exec rake boot openshift:deploy
  840. env: *base_env
  841. volumes:
  842. - system-storage
  843. post:
  844. failurePolicy: Abort
  845. execNewPod:
  846. containerName: system-provider
  847. command:
  848. - bash
  849. - -c
  850. - bundle exec rake boot openshift:post_deploy
  851. type: Rolling
  852. template:
  853. metadata:
  854. labels:
  855. name: system-app
  856. spec:
  857. containers:
  858. - args:
  859. env: *base_env
  860. image: 3scale-amp20/system:1.0-2
  861. imagePullPolicy: IfNotPresent
  862. command: ['env', 'TENANT_MODE=provider', 'PORT=3000', 'container-entrypoint', 'bundle', 'exec', 'unicorn', '-c', 'config/unicorn.rb']
  863. name: system-provider
  864. livenessProbe:
  865. timeoutSeconds: 10
  866. initialDelaySeconds: 20
  867. tcpSocket:
  868. port: provider
  869. periodSeconds: 10
  870. readinessProbe:
  871. httpGet:
  872. path: /check.txt
  873. port: provider
  874. scheme: HTTP
  875. httpHeaders:
  876. - name: X-Forwarded-Proto
  877. value: https
  878. initialDelaySeconds: 30
  879. timeoutSeconds: 10
  880. periodSeconds: 30
  881. ports:
  882. - containerPort: 3000
  883. protocol: TCP
  884. name: provider
  885. volumeMounts:
  886. - name: system-storage
  887. mountPath: /opt/system/public/system
  888. - args:
  889. env: *base_env
  890. image: 3scale-amp20/system:1.0-2
  891. command: ['env', 'TENANT_MODE=developer', 'PORT=3001', 'container-entrypoint', 'bundle', 'exec', 'unicorn', '-c', 'config/unicorn.rb']
  892. imagePullPolicy: IfNotPresent
  893. name: system-developer
  894. livenessProbe:
  895. timeoutSeconds: 10
  896. initialDelaySeconds: 20
  897. tcpSocket:
  898. port: developer
  899. periodSeconds: 10
  900. readinessProbe:
  901. httpGet:
  902. path: /check.txt
  903. port: developer
  904. scheme: HTTP
  905. httpHeaders:
  906. - name: X-Forwarded-Proto
  907. value: https
  908. initialDelaySeconds: 30
  909. timeoutSeconds: 10
  910. periodSeconds: 30
  911. ports:
  912. - containerPort: 3001
  913. protocol: TCP
  914. name: developer
  915. volumeMounts:
  916. - name: system-storage
  917. mountPath: /opt/system/public/system
  918. readOnly: true
  919. volumes:
  920. - name: system-storage
  921. persistentVolumeClaim:
  922. claimName: system-storage
  923. triggers:
  924. - type: ConfigChange
  925. - apiVersion: v1
  926. kind: DeploymentConfig
  927. metadata:
  928. name: system-resque
  929. spec:
  930. replicas: 1
  931. selector:
  932. name: system-resque
  933. strategy:
  934. rollingParams:
  935. intervalSeconds: 1
  936. maxSurge: 25%
  937. maxUnavailable: 25%
  938. timeoutSeconds: 600
  939. updatePeriodSeconds: 1
  940. type: Rolling
  941. template:
  942. metadata:
  943. labels:
  944. name: system-resque
  945. spec:
  946. containers:
  947. - args:
  948. - 'rake'
  949. - 'resque:work'
  950. - 'QUEUE=*'
  951. env: *base_env
  952. image: 3scale-amp20/system:1.0-2
  953. imagePullPolicy: IfNotPresent
  954. name: system-resque
  955. volumeMounts:
  956. - name: system-storage
  957. mountPath: /opt/system/public/system
  958. - args:
  959. - 'rake'
  960. - 'resque:scheduler'
  961. - 'QUEUE=*'
  962. env: *base_env
  963. image: 3scale-amp20/system:1.0-2
  964. imagePullPolicy: IfNotPresent
  965. name: system-scheduler
  966. volumes:
  967. - name: system-storage
  968. persistentVolumeClaim:
  969. claimName: system-storage
  970. triggers:
  971. - type: ConfigChange
  972. - apiVersion: v1
  973. kind: DeploymentConfig
  974. metadata:
  975. name: system-sidekiq
  976. spec:
  977. replicas: 1
  978. selector:
  979. name: system-sidekiq
  980. strategy:
  981. rollingParams:
  982. intervalSeconds: 1
  983. maxSurge: 25%
  984. maxUnavailable: 25%
  985. timeoutSeconds: 600
  986. updatePeriodSeconds: 1
  987. type: Rolling
  988. template:
  989. metadata:
  990. labels:
  991. name: system-sidekiq
  992. spec:
  993. containers:
  994. - args:
  995. - rake
  996. - sidekiq:worker
  997. env: *base_env
  998. image: 3scale-amp20/system:1.0-2
  999. imagePullPolicy: IfNotPresent
  1000. name: system-sidekiq
  1001. volumeMounts:
  1002. - name: system-storage
  1003. mountPath: /opt/system/public/system
  1004. volumes:
  1005. - name: system-storage
  1006. persistentVolumeClaim:
  1007. claimName: system-storage
  1008. triggers:
  1009. - type: ConfigChange
  1010. - kind: DeploymentConfig
  1011. apiVersion: v1
  1012. metadata:
  1013. name: 'system-mysql'
  1014. spec:
  1015. strategy:
  1016. type: Recreate
  1017. triggers:
  1018. - type: ConfigChange
  1019. replicas: 1
  1020. selector:
  1021. name: 'system-mysql'
  1022. template:
  1023. metadata:
  1024. labels:
  1025. name: 'system-mysql'
  1026. spec:
  1027. containers:
  1028. - name: system-mysql
  1029. image: ${MYSQL_IMAGE}
  1030. ports:
  1031. - containerPort: 3306
  1032. protocol: TCP
  1033. resources:
  1034. limits:
  1035. memory: 2Gi
  1036. requests:
  1037. cpu: '1'
  1038. memory: 1Gi
  1039. readinessProbe:
  1040. timeoutSeconds: 5
  1041. initialDelaySeconds: 10
  1042. periodSeconds: 30
  1043. exec:
  1044. command:
  1045. - /bin/sh
  1046. - '-i'
  1047. - '-c'
  1048. - MYSQL_PWD="$MYSQL_PASSWORD" mysql -h 127.0.0.1 -u $MYSQL_USER -D $MYSQL_DATABASE -e 'SELECT 1'
  1049. livenessProbe:
  1050. initialDelaySeconds: 30
  1051. periodSeconds: 10
  1052. tcpSocket:
  1053. port: 3306
  1054. env:
  1055. - name: MYSQL_USER
  1056. value: ${MYSQL_USER}
  1057. - name: MYSQL_PASSWORD
  1058. value: ${MYSQL_PASSWORD}
  1059. - name: MYSQL_DATABASE
  1060. value: ${MYSQL_DATABASE}
  1061. - name: MYSQL_ROOT_PASSWORD
  1062. value: ${MYSQL_ROOT_PASSWORD}
  1063. - name: MYSQL_LOWER_CASE_TABLE_NAMES
  1064. value: "1"
  1065. volumeMounts:
  1066. - name: 'mysql-storage'
  1067. mountPath: /var/lib/mysql/data
  1068. imagePullPolicy: IfNotPresent
  1069. volumes:
  1070. - name: 'mysql-storage'
  1071. persistentVolumeClaim:
  1072. claimName: 'mysql-storage'
  1073. - kind: ConfigMap
  1074. apiVersion: v1
  1075. metadata:
  1076. name: redis-config
  1077. data:
  1078. redis.conf: |
  1079. protected-mode no
  1080. port 6379
  1081. timeout 0
  1082. tcp-keepalive 300
  1083. daemonize no
  1084. supervised no
  1085. loglevel notice
  1086. databases 16
  1087. save 900 1
  1088. save 300 10
  1089. save 60 10000
  1090. stop-writes-on-bgsave-error yes
  1091. rdbcompression yes
  1092. rdbchecksum yes
  1093. dbfilename dump.rdb
  1094. slave-serve-stale-data yes
  1095. slave-read-only yes
  1096. repl-diskless-sync no
  1097. repl-disable-tcp-nodelay no
  1098. appendonly yes
  1099. appendfilename "appendonly.aof"
  1100. appendfsync everysec
  1101. no-appendfsync-on-rewrite no
  1102. auto-aof-rewrite-percentage 100
  1103. auto-aof-rewrite-min-size 64mb
  1104. aof-load-truncated yes
  1105. lua-time-limit 5000
  1106. activerehashing no
  1107. aof-rewrite-incremental-fsync yes
  1108. dir /var/lib/redis/data
  1109. - kind: ConfigMap
  1110. apiVersion: v1
  1111. metadata:
  1112. name: smtp
  1113. data:
  1114. address: ""
  1115. username: ""
  1116. password: ""
  1117. domain: ""
  1118. port: ""
  1119. authentication: ""
  1120. openssl.verify.mode: ""
  1121. parameters:
  1122. - name: AMP_RELEASE
  1123. description: "AMP release tag."
  1124. value: 2.0.0-CR2-redhat-1
  1125. required: true
  1126. - name: ADMIN_PASSWORD
  1127. required: true
  1128. generate: expression
  1129. from: "[a-z0-9]{8}"
  1130. - name: ADMIN_USERNAME
  1131. value: admin
  1132. required: true
  1133. - name: APICAST_ACCESS_TOKEN
  1134. required: true
  1135. generate: expression
  1136. from: "[a-z0-9]{8}"
  1137. description: "Read Only Access Token that is APIcast going to use to download its configuration."
  1138. - name: ADMIN_ACCESS_TOKEN
  1139. required: false
  1140. generate: expression
  1141. from: "[a-z0-9]{16}"
  1142. description: "Admin Access Token with all scopes and write permissions for API access."
  1143. - name: WILDCARD_DOMAIN
  1144. description: Root domain for the wildcard routes. Eg. example.com will generate 3scale-admin.example.com.
  1145. required: true
  1146. - name: TENANT_NAME
  1147. description: "Tenant name under the root that Admin UI will be available with -admin suffix."
  1148. required: true
  1149. value: "3scale"
  1150. - name: MYSQL_USER
  1151. displayName: MySQL User
  1152. description: Username for MySQL user that will be used for accessing the database.
  1153. value: "mysql"
  1154. required: true
  1155. - name: MYSQL_PASSWORD
  1156. displayName: MySQL Password
  1157. description: Password for the MySQL user.
  1158. generate: expression
  1159. from: "[a-z0-9]{8}"
  1160. required: true
  1161. - name: MYSQL_DATABASE
  1162. displayName: MySQL Database Name
  1163. description: Name of the MySQL database accessed.
  1164. value: "system"
  1165. required: true
  1166. - name: MYSQL_ROOT_PASSWORD
  1167. displayName: MySQL Root password.
  1168. description: Password for Root user.
  1169. generate: expression
  1170. from: "[a-z0-9]{8}"
  1171. required: true
  1172. - name: SYSTEM_BACKEND_USERNAME
  1173. description: Internal 3scale API username for internal 3scale api auth.
  1174. value: "3scale_api_user"
  1175. required: true
  1176. - name: SYSTEM_BACKEND_PASSWORD
  1177. description: Internal 3scale API password for internal 3scale api auth.
  1178. generate: expression
  1179. from: "[a-z0-9]{8}"
  1180. required: true
  1181. - name: REDIS_IMAGE
  1182. description: Redis image to use
  1183. required: true
  1184. value: rhscl/redis-32-rhel7:3.2-5.7
  1185. - name: MYSQL_IMAGE
  1186. description: Mysql image to use
  1187. required: true
  1188. value: rhscl/mysql-56-rhel7:5.6-13.14
  1189. - name: SYSTEM_BACKEND_SHARED_SECRET
  1190. description: Shared secret to import events from backend to system.
  1191. generate: expression
  1192. from: "[a-z0-9]{8}"
  1193. required: true
  1194. - name: SYSTEM_APP_SECRET_KEY_BASE
  1195. description: System application secret key base
  1196. generate: expression
  1197. from: "[a-f0-9]{128}"
  1198. required: true
  1199. - name: APICAST_MANAGEMENT_API
  1200. description: "Scope of the APIcast Management API. Can be disabled, status or debug. At least status required for health checks."
  1201. required: false
  1202. value: "status"
  1203. - name: APICAST_OPENSSL_VERIFY
  1204. description: "Turn on/off the OpenSSL peer verification when downloading the configuration. Can be set to true/false."
  1205. required: false
  1206. value: "false"
  1207. - name: APICAST_RESPONSE_CODES
  1208. description: "Enable logging response codes in APIcast."
  1209. value: "true"
  1210. required: false