jws30-tomcat7-mongodb-persistent-s2i.json 28 KB

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