jws31-tomcat8-mysql-persistent-s2i.json 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "annotations": {
  6. "iconClass": "icon-rh-tomcat",
  7. "openshift.io/provider-display-name": "Red Hat, Inc.",
  8. "tags": "tomcat,tomcat8,java,jboss",
  9. "version": "1.4.7",
  10. "openshift.io/display-name": "JBoss Web Server 3.1 Apache Tomcat 8 + MySQL (with https)",
  11. "description": "An example JBoss Web Server application with a MySQL database. For more information about using this template, see https://github.com/jboss-openshift/application-templates.",
  12. "template.openshift.io/long-description": "This template defines resources needed to develop Red Hat JBoss Web Server 3.1 Apache Tomcat 8 based application, including a build configuration, application deployment configuration, database deployment configuration for MySQL using persistence and secure communication using https.",
  13. "template.openshift.io/documentation-url": "https://access.redhat.com/documentation/en/red-hat-jboss-web-server/",
  14. "template.openshift.io/support-url": "https://access.redhat.com"
  15. },
  16. "name": "jws31-tomcat8-mysql-persistent-s2i"
  17. },
  18. "labels": {
  19. "template": "jws31-tomcat8-mysql-persistent-s2i",
  20. "xpaas": "1.4.7"
  21. },
  22. "message": "A new persistent JWS application for Apache Tomcat 8 (using MySQL) has been created in your project. The username/password for administering your JWS is ${JWS_ADMIN_USERNAME}/${JWS_ADMIN_PASSWORD}. For accessing the MySQL database \"${DB_DATABASE}\" use the credentials ${DB_USERNAME}/${DB_PASSWORD}. Please be sure to create the \"jws-service-account\" service account and the secret named \"${JWS_HTTPS_SECRET}\" containing the ${JWS_HTTPS_CERTIFICATE} file used for serving secure content.",
  23. "parameters": [
  24. {
  25. "displayName": "Application Name",
  26. "description": "The name for the application.",
  27. "name": "APPLICATION_NAME",
  28. "value": "jws-app",
  29. "required": true
  30. },
  31. {
  32. "displayName": "Custom http Route Hostname",
  33. "description": "Custom hostname for http service route. Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>",
  34. "name": "HOSTNAME_HTTP",
  35. "value": "",
  36. "required": false
  37. },
  38. {
  39. "displayName": "Custom https Route Hostname",
  40. "description": "Custom hostname for https service route. Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>",
  41. "name": "HOSTNAME_HTTPS",
  42. "value": "",
  43. "required": false
  44. },
  45. {
  46. "displayName": "Git Repository URL",
  47. "description": "Git source URI for application",
  48. "name": "SOURCE_REPOSITORY_URL",
  49. "value": "https://github.com/jboss-openshift/openshift-quickstarts",
  50. "required": true
  51. },
  52. {
  53. "displayName": "Git Reference",
  54. "description": "Git branch/tag reference",
  55. "name": "SOURCE_REPOSITORY_REF",
  56. "value": "1.2",
  57. "required": false
  58. },
  59. {
  60. "displayName": "Context Directory",
  61. "description": "Path within Git project to build; empty for root project directory.",
  62. "name": "CONTEXT_DIR",
  63. "value": "todolist/todolist-jdbc",
  64. "required": false
  65. },
  66. {
  67. "displayName": "Database JNDI Name",
  68. "description": "Database JNDI name used by application to resolve the datasource, e.g. jboss/datasources/mysqlDS",
  69. "name": "DB_JNDI",
  70. "value": "jboss/datasources/defaultDS",
  71. "required": false
  72. },
  73. {
  74. "displayName": "Database Name",
  75. "description": "Database name",
  76. "name": "DB_DATABASE",
  77. "value": "root",
  78. "required": true
  79. },
  80. {
  81. "displayName": "Database Volume Capacity",
  82. "description": "Size of persistent storage for database volume.",
  83. "name": "VOLUME_CAPACITY",
  84. "value": "512Mi",
  85. "required": true
  86. },
  87. {
  88. "displayName": "Secret Name",
  89. "description": "The name of the secret containing the certificate files",
  90. "name": "JWS_HTTPS_SECRET",
  91. "value": "jws-app-secret",
  92. "required": true
  93. },
  94. {
  95. "displayName": "Certificate Name",
  96. "description": "The name of the certificate file within the secret",
  97. "name": "JWS_HTTPS_CERTIFICATE",
  98. "value": "server.crt",
  99. "required": false
  100. },
  101. {
  102. "displayName": "Certificate Key Name",
  103. "description": "The name of the certificate key file within the secret",
  104. "name": "JWS_HTTPS_CERTIFICATE_KEY",
  105. "value": "server.key",
  106. "required": false
  107. },
  108. {
  109. "displayName": "Certificate Password",
  110. "description": "The certificate password",
  111. "name": "JWS_HTTPS_CERTIFICATE_PASSWORD",
  112. "value": "",
  113. "required": false
  114. },
  115. {
  116. "displayName": "Datasource Minimum Pool Size",
  117. "description": "Sets xa-pool/min-pool-size for the configured datasource.",
  118. "name": "DB_MIN_POOL_SIZE",
  119. "required": false
  120. },
  121. {
  122. "displayName": "Datasource Maximum Pool Size",
  123. "description": "Sets xa-pool/max-pool-size for the configured datasource.",
  124. "name": "DB_MAX_POOL_SIZE",
  125. "required": false
  126. },
  127. {
  128. "displayName": "Datasource Transaction Isolation",
  129. "description": "Sets transaction-isolation for the configured datasource.",
  130. "name": "DB_TX_ISOLATION",
  131. "required": false
  132. },
  133. {
  134. "displayName": "MySQL Lower Case Table Names",
  135. "description": "Sets how the table names are stored and compared.",
  136. "name": "MYSQL_LOWER_CASE_TABLE_NAMES",
  137. "required": false
  138. },
  139. {
  140. "displayName": "MySQL Maximum number of connections",
  141. "description": "The maximum permitted number of simultaneous client connections.",
  142. "name": "MYSQL_MAX_CONNECTIONS",
  143. "required": false
  144. },
  145. {
  146. "displayName": "MySQL FullText Minimum Word Length",
  147. "description": "The minimum length of the word to be included in a FULLTEXT index.",
  148. "name": "MYSQL_FT_MIN_WORD_LEN",
  149. "required": false
  150. },
  151. {
  152. "displayName": "MySQL FullText Maximum Word Length",
  153. "description": "The maximum length of the word to be included in a FULLTEXT index.",
  154. "name": "MYSQL_FT_MAX_WORD_LEN",
  155. "required": false
  156. },
  157. {
  158. "displayName": "MySQL AIO",
  159. "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.",
  160. "name": "MYSQL_AIO",
  161. "required": false
  162. },
  163. {
  164. "displayName": "Database Username",
  165. "description": "Database user name",
  166. "name": "DB_USERNAME",
  167. "from": "user[a-zA-Z0-9]{3}",
  168. "generate": "expression",
  169. "required": true
  170. },
  171. {
  172. "displayName": "Database Password",
  173. "description": "Database user password",
  174. "name": "DB_PASSWORD",
  175. "from": "[a-zA-Z0-9]{8}",
  176. "generate": "expression",
  177. "required": true
  178. },
  179. {
  180. "displayName": "JWS Admin Username",
  181. "description": "JWS Admin User",
  182. "name": "JWS_ADMIN_USERNAME",
  183. "from": "[a-zA-Z0-9]{8}",
  184. "generate": "expression",
  185. "required": true
  186. },
  187. {
  188. "displayName": "JWS Admin Password",
  189. "description": "JWS Admin Password",
  190. "name": "JWS_ADMIN_PASSWORD",
  191. "from": "[a-zA-Z0-9]{8}",
  192. "generate": "expression",
  193. "required": true
  194. },
  195. {
  196. "displayName": "Github Webhook Secret",
  197. "description": "GitHub trigger secret",
  198. "name": "GITHUB_WEBHOOK_SECRET",
  199. "from": "[a-zA-Z0-9]{8}",
  200. "generate": "expression",
  201. "required": true
  202. },
  203. {
  204. "displayName": "Generic Webhook Secret",
  205. "description": "Generic build trigger secret",
  206. "name": "GENERIC_WEBHOOK_SECRET",
  207. "from": "[a-zA-Z0-9]{8}",
  208. "generate": "expression",
  209. "required": true
  210. },
  211. {
  212. "displayName": "ImageStream Namespace",
  213. "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.",
  214. "name": "IMAGE_STREAM_NAMESPACE",
  215. "value": "openshift",
  216. "required": true
  217. },
  218. {
  219. "displayName": "Maven mirror URL",
  220. "description": "Maven mirror to use for S2I builds",
  221. "name": "MAVEN_MIRROR_URL",
  222. "value": "",
  223. "required": false
  224. },
  225. {
  226. "description": "List of directories from which archives will be copied into the deployment folder. If unspecified, all archives in /target will be copied.",
  227. "name": "ARTIFACT_DIR",
  228. "value": "",
  229. "required": false
  230. },
  231. {
  232. "displayName": "MySQL Image Stream Tag",
  233. "description": "The tag to use for the \"mysql\" image stream. Typically, this aligns with the major.minor version of MySQL.",
  234. "name": "MYSQL_IMAGE_STREAM_TAG",
  235. "value": "5.7",
  236. "required": true
  237. }
  238. ],
  239. "objects": [
  240. {
  241. "kind": "Service",
  242. "apiVersion": "v1",
  243. "spec": {
  244. "ports": [
  245. {
  246. "port": 8080,
  247. "targetPort": 8080
  248. }
  249. ],
  250. "selector": {
  251. "deploymentConfig": "${APPLICATION_NAME}"
  252. }
  253. },
  254. "metadata": {
  255. "name": "${APPLICATION_NAME}",
  256. "labels": {
  257. "application": "${APPLICATION_NAME}"
  258. },
  259. "annotations": {
  260. "description": "The web server's http port.",
  261. "service.alpha.openshift.io/dependencies": "[{\"name\": \"${APPLICATION_NAME}-mysql\", \"kind\": \"Service\"}]"
  262. }
  263. }
  264. },
  265. {
  266. "kind": "Service",
  267. "apiVersion": "v1",
  268. "spec": {
  269. "ports": [
  270. {
  271. "port": 8443,
  272. "targetPort": 8443
  273. }
  274. ],
  275. "selector": {
  276. "deploymentConfig": "${APPLICATION_NAME}"
  277. }
  278. },
  279. "metadata": {
  280. "name": "secure-${APPLICATION_NAME}",
  281. "labels": {
  282. "application": "${APPLICATION_NAME}"
  283. },
  284. "annotations": {
  285. "description": "The web server's https port.",
  286. "service.alpha.openshift.io/dependencies": "[{\"name\": \"${APPLICATION_NAME}-mysql\", \"kind\": \"Service\"}]"
  287. }
  288. }
  289. },
  290. {
  291. "kind": "Service",
  292. "apiVersion": "v1",
  293. "spec": {
  294. "ports": [
  295. {
  296. "port": 3306,
  297. "targetPort": 3306
  298. }
  299. ],
  300. "selector": {
  301. "deploymentConfig": "${APPLICATION_NAME}-mysql"
  302. }
  303. },
  304. "metadata": {
  305. "name": "${APPLICATION_NAME}-mysql",
  306. "labels": {
  307. "application": "${APPLICATION_NAME}"
  308. },
  309. "annotations": {
  310. "description": "The database server's port."
  311. }
  312. }
  313. },
  314. {
  315. "kind": "Route",
  316. "apiVersion": "v1",
  317. "id": "${APPLICATION_NAME}-http",
  318. "metadata": {
  319. "name": "${APPLICATION_NAME}",
  320. "labels": {
  321. "application": "${APPLICATION_NAME}"
  322. },
  323. "annotations": {
  324. "description": "Route for application's http service."
  325. }
  326. },
  327. "spec": {
  328. "host": "${HOSTNAME_HTTP}",
  329. "to": {
  330. "name": "${APPLICATION_NAME}"
  331. }
  332. }
  333. },
  334. {
  335. "kind": "Route",
  336. "apiVersion": "v1",
  337. "id": "${APPLICATION_NAME}-https",
  338. "metadata": {
  339. "name": "secure-${APPLICATION_NAME}",
  340. "labels": {
  341. "application": "${APPLICATION_NAME}"
  342. },
  343. "annotations": {
  344. "description": "Route for application's https service."
  345. }
  346. },
  347. "spec": {
  348. "host": "${HOSTNAME_HTTPS}",
  349. "to": {
  350. "name": "secure-${APPLICATION_NAME}"
  351. },
  352. "tls": {
  353. "termination": "passthrough"
  354. }
  355. }
  356. },
  357. {
  358. "kind": "ImageStream",
  359. "apiVersion": "v1",
  360. "metadata": {
  361. "name": "${APPLICATION_NAME}",
  362. "labels": {
  363. "application": "${APPLICATION_NAME}"
  364. }
  365. }
  366. },
  367. {
  368. "kind": "BuildConfig",
  369. "apiVersion": "v1",
  370. "metadata": {
  371. "name": "${APPLICATION_NAME}",
  372. "labels": {
  373. "application": "${APPLICATION_NAME}"
  374. }
  375. },
  376. "spec": {
  377. "source": {
  378. "type": "Git",
  379. "git": {
  380. "uri": "${SOURCE_REPOSITORY_URL}",
  381. "ref": "${SOURCE_REPOSITORY_REF}"
  382. },
  383. "contextDir": "${CONTEXT_DIR}"
  384. },
  385. "strategy": {
  386. "type": "Source",
  387. "sourceStrategy": {
  388. "env": [
  389. {
  390. "name": "MAVEN_MIRROR_URL",
  391. "value": "${MAVEN_MIRROR_URL}"
  392. },
  393. {
  394. "name": "ARTIFACT_DIR",
  395. "value": "${ARTIFACT_DIR}"
  396. }
  397. ],
  398. "forcePull": true,
  399. "from": {
  400. "kind": "ImageStreamTag",
  401. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  402. "name": "jboss-webserver31-tomcat8-openshift:1.1"
  403. }
  404. }
  405. },
  406. "output": {
  407. "to": {
  408. "kind": "ImageStreamTag",
  409. "name": "${APPLICATION_NAME}:latest"
  410. }
  411. },
  412. "triggers": [
  413. {
  414. "type": "GitHub",
  415. "github": {
  416. "secret": "${GITHUB_WEBHOOK_SECRET}"
  417. }
  418. },
  419. {
  420. "type": "Generic",
  421. "generic": {
  422. "secret": "${GENERIC_WEBHOOK_SECRET}"
  423. }
  424. },
  425. {
  426. "type": "ImageChange",
  427. "imageChange": {}
  428. },
  429. {
  430. "type": "ConfigChange"
  431. }
  432. ]
  433. }
  434. },
  435. {
  436. "kind": "DeploymentConfig",
  437. "apiVersion": "v1",
  438. "metadata": {
  439. "name": "${APPLICATION_NAME}",
  440. "labels": {
  441. "application": "${APPLICATION_NAME}"
  442. }
  443. },
  444. "spec": {
  445. "strategy": {
  446. "type": "Recreate"
  447. },
  448. "triggers": [
  449. {
  450. "type": "ImageChange",
  451. "imageChangeParams": {
  452. "automatic": true,
  453. "containerNames": [
  454. "${APPLICATION_NAME}"
  455. ],
  456. "from": {
  457. "kind": "ImageStreamTag",
  458. "name": "${APPLICATION_NAME}:latest"
  459. }
  460. }
  461. },
  462. {
  463. "type": "ConfigChange"
  464. }
  465. ],
  466. "replicas": 1,
  467. "selector": {
  468. "deploymentConfig": "${APPLICATION_NAME}"
  469. },
  470. "template": {
  471. "metadata": {
  472. "name": "${APPLICATION_NAME}",
  473. "labels": {
  474. "deploymentConfig": "${APPLICATION_NAME}",
  475. "application": "${APPLICATION_NAME}"
  476. }
  477. },
  478. "spec": {
  479. "serviceAccountName": "jws-service-account",
  480. "terminationGracePeriodSeconds": 60,
  481. "containers": [
  482. {
  483. "name": "${APPLICATION_NAME}",
  484. "image": "${APPLICATION_NAME}",
  485. "imagePullPolicy": "Always",
  486. "readinessProbe": {
  487. "exec": {
  488. "command": [
  489. "/bin/bash",
  490. "-c",
  491. "curl --noproxy '*' -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'"
  492. ]
  493. }
  494. },
  495. "volumeMounts": [
  496. {
  497. "name": "jws-certificate-volume",
  498. "mountPath": "/etc/jws-secret-volume",
  499. "readOnly": true
  500. }
  501. ],
  502. "ports": [
  503. {
  504. "name": "jolokia",
  505. "containerPort": 8778,
  506. "protocol": "TCP"
  507. },
  508. {
  509. "name": "http",
  510. "containerPort": 8080,
  511. "protocol": "TCP"
  512. },
  513. {
  514. "name": "https",
  515. "containerPort": 8443,
  516. "protocol": "TCP"
  517. }
  518. ],
  519. "env": [
  520. {
  521. "name": "DB_SERVICE_PREFIX_MAPPING",
  522. "value": "${APPLICATION_NAME}-mysql=DB"
  523. },
  524. {
  525. "name": "DB_JNDI",
  526. "value": "${DB_JNDI}"
  527. },
  528. {
  529. "name": "DB_USERNAME",
  530. "value": "${DB_USERNAME}"
  531. },
  532. {
  533. "name": "DB_PASSWORD",
  534. "value": "${DB_PASSWORD}"
  535. },
  536. {
  537. "name": "DB_DATABASE",
  538. "value": "${DB_DATABASE}"
  539. },
  540. {
  541. "name": "DB_MIN_POOL_SIZE",
  542. "value": "${DB_MIN_POOL_SIZE}"
  543. },
  544. {
  545. "name": "DB_MAX_POOL_SIZE",
  546. "value": "${DB_MAX_POOL_SIZE}"
  547. },
  548. {
  549. "name": "DB_TX_ISOLATION",
  550. "value": "${DB_TX_ISOLATION}"
  551. },
  552. {
  553. "name": "JWS_HTTPS_CERTIFICATE_DIR",
  554. "value": "/etc/jws-secret-volume"
  555. },
  556. {
  557. "name": "JWS_HTTPS_CERTIFICATE",
  558. "value": "${JWS_HTTPS_CERTIFICATE}"
  559. },
  560. {
  561. "name": "JWS_HTTPS_CERTIFICATE_KEY",
  562. "value": "${JWS_HTTPS_CERTIFICATE_KEY}"
  563. },
  564. {
  565. "name": "JWS_HTTPS_CERTIFICATE_PASSWORD",
  566. "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}"
  567. },
  568. {
  569. "name": "JWS_ADMIN_USERNAME",
  570. "value": "${JWS_ADMIN_USERNAME}"
  571. },
  572. {
  573. "name": "JWS_ADMIN_PASSWORD",
  574. "value": "${JWS_ADMIN_PASSWORD}"
  575. }
  576. ]
  577. }
  578. ],
  579. "volumes": [
  580. {
  581. "name": "jws-certificate-volume",
  582. "secret": {
  583. "secretName": "${JWS_HTTPS_SECRET}"
  584. }
  585. }
  586. ]
  587. }
  588. }
  589. }
  590. },
  591. {
  592. "kind": "DeploymentConfig",
  593. "apiVersion": "v1",
  594. "metadata": {
  595. "name": "${APPLICATION_NAME}-mysql",
  596. "labels": {
  597. "application": "${APPLICATION_NAME}"
  598. }
  599. },
  600. "spec": {
  601. "strategy": {
  602. "type": "Recreate"
  603. },
  604. "triggers": [
  605. {
  606. "type": "ImageChange",
  607. "imageChangeParams": {
  608. "automatic": true,
  609. "containerNames": [
  610. "${APPLICATION_NAME}-mysql"
  611. ],
  612. "from": {
  613. "kind": "ImageStreamTag",
  614. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  615. "name": "mysql:${MYSQL_IMAGE_STREAM_TAG}"
  616. }
  617. }
  618. },
  619. {
  620. "type": "ConfigChange"
  621. }
  622. ],
  623. "replicas": 1,
  624. "selector": {
  625. "deploymentConfig": "${APPLICATION_NAME}-mysql"
  626. },
  627. "template": {
  628. "metadata": {
  629. "name": "${APPLICATION_NAME}-mysql",
  630. "labels": {
  631. "deploymentConfig": "${APPLICATION_NAME}-mysql",
  632. "application": "${APPLICATION_NAME}"
  633. }
  634. },
  635. "spec": {
  636. "terminationGracePeriodSeconds": 60,
  637. "containers": [
  638. {
  639. "name": "${APPLICATION_NAME}-mysql",
  640. "image": "mysql",
  641. "ports": [
  642. {
  643. "containerPort": 3306,
  644. "protocol": "TCP"
  645. }
  646. ],
  647. "volumeMounts": [
  648. {
  649. "mountPath": "/var/lib/mysql/data",
  650. "name": "${APPLICATION_NAME}-mysql-pvol"
  651. }
  652. ],
  653. "env": [
  654. {
  655. "name": "MYSQL_USER",
  656. "value": "${DB_USERNAME}"
  657. },
  658. {
  659. "name": "MYSQL_PASSWORD",
  660. "value": "${DB_PASSWORD}"
  661. },
  662. {
  663. "name": "MYSQL_DATABASE",
  664. "value": "${DB_DATABASE}"
  665. },
  666. {
  667. "name": "MYSQL_LOWER_CASE_TABLE_NAMES",
  668. "value": "${MYSQL_LOWER_CASE_TABLE_NAMES}"
  669. },
  670. {
  671. "name": "MYSQL_MAX_CONNECTIONS",
  672. "value": "${MYSQL_MAX_CONNECTIONS}"
  673. },
  674. {
  675. "name": "MYSQL_FT_MIN_WORD_LEN",
  676. "value": "${MYSQL_FT_MIN_WORD_LEN}"
  677. },
  678. {
  679. "name": "MYSQL_FT_MAX_WORD_LEN",
  680. "value": "${MYSQL_FT_MAX_WORD_LEN}"
  681. },
  682. {
  683. "name": "MYSQL_AIO",
  684. "value": "${MYSQL_AIO}"
  685. }
  686. ]
  687. }
  688. ],
  689. "volumes": [
  690. {
  691. "name": "${APPLICATION_NAME}-mysql-pvol",
  692. "persistentVolumeClaim": {
  693. "claimName": "${APPLICATION_NAME}-mysql-claim"
  694. }
  695. }
  696. ]
  697. }
  698. }
  699. }
  700. },
  701. {
  702. "apiVersion": "v1",
  703. "kind": "PersistentVolumeClaim",
  704. "metadata": {
  705. "name": "${APPLICATION_NAME}-mysql-claim",
  706. "labels": {
  707. "application": "${APPLICATION_NAME}"
  708. }
  709. },
  710. "spec": {
  711. "accessModes": [
  712. "ReadWriteOnce"
  713. ],
  714. "resources": {
  715. "requests": {
  716. "storage": "${VOLUME_CAPACITY}"
  717. }
  718. }
  719. }
  720. }
  721. ]
  722. }