eap64-mysql-s2i.json 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "annotations": {
  6. "description": "Application template for EAP 6 MySQL applications built using S2I.",
  7. "iconClass": "icon-jboss",
  8. "tags": "eap,mysql,javaee,java,database,jboss,xpaas",
  9. "version": "1.3.2"
  10. },
  11. "name": "eap64-mysql-s2i"
  12. },
  13. "labels": {
  14. "template": "eap64-mysql-s2i",
  15. "xpaas": "1.3.2"
  16. },
  17. "parameters": [
  18. {
  19. "description": "The name for the application.",
  20. "name": "APPLICATION_NAME",
  21. "value": "eap-app",
  22. "required": true
  23. },
  24. {
  25. "description": "Custom hostname for http service route. Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>",
  26. "name": "HOSTNAME_HTTP",
  27. "value": "",
  28. "required": false
  29. },
  30. {
  31. "description": "Custom hostname for https service route. Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>",
  32. "name": "HOSTNAME_HTTPS",
  33. "value": "",
  34. "required": false
  35. },
  36. {
  37. "description": "Git source URI for application",
  38. "name": "SOURCE_REPOSITORY_URL",
  39. "value": "https://github.com/jboss-openshift/openshift-quickstarts",
  40. "required": true
  41. },
  42. {
  43. "description": "Git branch/tag reference",
  44. "name": "SOURCE_REPOSITORY_REF",
  45. "value": "1.2",
  46. "required": false
  47. },
  48. {
  49. "description": "Path within Git project to build; empty for root project directory.",
  50. "name": "CONTEXT_DIR",
  51. "value": "todolist/todolist-jdbc",
  52. "required": false
  53. },
  54. {
  55. "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mysql",
  56. "name": "DB_JNDI",
  57. "value": "java:jboss/datasources/TodoListDS",
  58. "required": false
  59. },
  60. {
  61. "description": "Database name",
  62. "name": "DB_DATABASE",
  63. "value": "root",
  64. "required": true
  65. },
  66. {
  67. "description": "Queue names",
  68. "name": "HORNETQ_QUEUES",
  69. "value": "",
  70. "required": false
  71. },
  72. {
  73. "description": "Topic names",
  74. "name": "HORNETQ_TOPICS",
  75. "value": "",
  76. "required": false
  77. },
  78. {
  79. "description": "The name of the service account to use for the deployment. The service account should be configured to allow useage of the secret(s) specified by HTTPS_SECRET and JGROUPS_ENCRYPT_SECRET.",
  80. "name": "SERVICE_ACCOUNT_NAME",
  81. "value": "eap-service-account",
  82. "required": true
  83. },
  84. {
  85. "description": "The name of the secret containing the keystore file",
  86. "name": "HTTPS_SECRET",
  87. "value": "eap-app-secret",
  88. "required": false
  89. },
  90. {
  91. "description": "The name of the keystore file within the secret",
  92. "name": "HTTPS_KEYSTORE",
  93. "value": "keystore.jks",
  94. "required": false
  95. },
  96. {
  97. "description": "The type of the keystore file (JKS or JCEKS)",
  98. "name": "HTTPS_KEYSTORE_TYPE",
  99. "value": "",
  100. "required": false
  101. },
  102. {
  103. "description": "The name associated with the server certificate",
  104. "name": "HTTPS_NAME",
  105. "value": "",
  106. "required": false
  107. },
  108. {
  109. "description": "The password for the keystore and certificate",
  110. "name": "HTTPS_PASSWORD",
  111. "value": "",
  112. "required": false
  113. },
  114. {
  115. "description": "Sets xa-pool/min-pool-size for the configured datasource.",
  116. "name": "DB_MIN_POOL_SIZE",
  117. "required": false
  118. },
  119. {
  120. "description": "Sets xa-pool/max-pool-size for the configured datasource.",
  121. "name": "DB_MAX_POOL_SIZE",
  122. "required": false
  123. },
  124. {
  125. "description": "Sets transaction-isolation for the configured datasource.",
  126. "name": "DB_TX_ISOLATION",
  127. "required": false
  128. },
  129. {
  130. "description": "Sets how the table names are stored and compared.",
  131. "name": "MYSQL_LOWER_CASE_TABLE_NAMES",
  132. "required": false
  133. },
  134. {
  135. "description": "The maximum permitted number of simultaneous client connections.",
  136. "name": "MYSQL_MAX_CONNECTIONS",
  137. "required": false
  138. },
  139. {
  140. "description": "The minimum length of the word to be included in a FULLTEXT index.",
  141. "name": "MYSQL_FT_MIN_WORD_LEN",
  142. "required": false
  143. },
  144. {
  145. "description": "The maximum length of the word to be included in a FULLTEXT index.",
  146. "name": "MYSQL_FT_MAX_WORD_LEN",
  147. "required": false
  148. },
  149. {
  150. "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.",
  151. "name": "MYSQL_AIO",
  152. "required": false
  153. },
  154. {
  155. "description": "HornetQ cluster admin password",
  156. "name": "HORNETQ_CLUSTER_PASSWORD",
  157. "from": "[a-zA-Z0-9]{8}",
  158. "generate": "expression",
  159. "required": true
  160. },
  161. {
  162. "description": "Database user name",
  163. "name": "DB_USERNAME",
  164. "from": "user[a-zA-Z0-9]{3}",
  165. "generate": "expression",
  166. "required": true
  167. },
  168. {
  169. "description": "Database user password",
  170. "name": "DB_PASSWORD",
  171. "from": "[a-zA-Z0-9]{8}",
  172. "generate": "expression",
  173. "required": true
  174. },
  175. {
  176. "description": "GitHub trigger secret",
  177. "name": "GITHUB_WEBHOOK_SECRET",
  178. "from": "[a-zA-Z0-9]{8}",
  179. "generate": "expression",
  180. "required": true
  181. },
  182. {
  183. "description": "Generic build trigger secret",
  184. "name": "GENERIC_WEBHOOK_SECRET",
  185. "from": "[a-zA-Z0-9]{8}",
  186. "generate": "expression",
  187. "required": true
  188. },
  189. {
  190. "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.",
  191. "name": "IMAGE_STREAM_NAMESPACE",
  192. "value": "openshift",
  193. "required": true
  194. },
  195. {
  196. "description": "The name of the secret containing the keystore file",
  197. "name": "JGROUPS_ENCRYPT_SECRET",
  198. "value": "eap-app-secret",
  199. "required": false
  200. },
  201. {
  202. "description": "The name of the keystore file within the secret",
  203. "name": "JGROUPS_ENCRYPT_KEYSTORE",
  204. "value": "jgroups.jceks",
  205. "required": false
  206. },
  207. {
  208. "description": "The name associated with the server certificate",
  209. "name": "JGROUPS_ENCRYPT_NAME",
  210. "value": "",
  211. "required": false
  212. },
  213. {
  214. "description": "The password for the keystore and certificate",
  215. "name": "JGROUPS_ENCRYPT_PASSWORD",
  216. "value": "",
  217. "required": false
  218. },
  219. {
  220. "description": "JGroups cluster password",
  221. "name": "JGROUPS_CLUSTER_PASSWORD",
  222. "from": "[a-zA-Z0-9]{8}",
  223. "generate": "expression",
  224. "required": true
  225. },
  226. {
  227. "description": "Controls whether exploded deployment content should be automatically deployed",
  228. "name": "AUTO_DEPLOY_EXPLODED",
  229. "value": "false",
  230. "required": false
  231. }
  232. ],
  233. "objects": [
  234. {
  235. "kind": "Service",
  236. "apiVersion": "v1",
  237. "spec": {
  238. "ports": [
  239. {
  240. "port": 8080,
  241. "targetPort": 8080
  242. }
  243. ],
  244. "selector": {
  245. "deploymentConfig": "${APPLICATION_NAME}"
  246. }
  247. },
  248. "metadata": {
  249. "name": "${APPLICATION_NAME}",
  250. "labels": {
  251. "application": "${APPLICATION_NAME}"
  252. },
  253. "annotations": {
  254. "description": "The web server's http port."
  255. }
  256. }
  257. },
  258. {
  259. "kind": "Service",
  260. "apiVersion": "v1",
  261. "spec": {
  262. "ports": [
  263. {
  264. "port": 8443,
  265. "targetPort": 8443
  266. }
  267. ],
  268. "selector": {
  269. "deploymentConfig": "${APPLICATION_NAME}"
  270. }
  271. },
  272. "metadata": {
  273. "name": "secure-${APPLICATION_NAME}",
  274. "labels": {
  275. "application": "${APPLICATION_NAME}"
  276. },
  277. "annotations": {
  278. "description": "The web server's https port."
  279. }
  280. }
  281. },
  282. {
  283. "kind": "Service",
  284. "apiVersion": "v1",
  285. "spec": {
  286. "ports": [
  287. {
  288. "port": 3306,
  289. "targetPort": 3306
  290. }
  291. ],
  292. "selector": {
  293. "deploymentConfig": "${APPLICATION_NAME}-mysql"
  294. }
  295. },
  296. "metadata": {
  297. "name": "${APPLICATION_NAME}-mysql",
  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. "forcePull": true,
  381. "from": {
  382. "kind": "ImageStreamTag",
  383. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  384. "name": "jboss-eap64-openshift:1.4"
  385. }
  386. }
  387. },
  388. "output": {
  389. "to": {
  390. "kind": "ImageStreamTag",
  391. "name": "${APPLICATION_NAME}:latest"
  392. }
  393. },
  394. "triggers": [
  395. {
  396. "type": "GitHub",
  397. "github": {
  398. "secret": "${GITHUB_WEBHOOK_SECRET}"
  399. }
  400. },
  401. {
  402. "type": "Generic",
  403. "generic": {
  404. "secret": "${GENERIC_WEBHOOK_SECRET}"
  405. }
  406. },
  407. {
  408. "type": "ImageChange",
  409. "imageChange": {}
  410. },
  411. {
  412. "type": "ConfigChange"
  413. }
  414. ]
  415. }
  416. },
  417. {
  418. "kind": "DeploymentConfig",
  419. "apiVersion": "v1",
  420. "metadata": {
  421. "name": "${APPLICATION_NAME}",
  422. "labels": {
  423. "application": "${APPLICATION_NAME}"
  424. }
  425. },
  426. "spec": {
  427. "strategy": {
  428. "type": "Recreate"
  429. },
  430. "triggers": [
  431. {
  432. "type": "ImageChange",
  433. "imageChangeParams": {
  434. "automatic": true,
  435. "containerNames": [
  436. "${APPLICATION_NAME}"
  437. ],
  438. "from": {
  439. "kind": "ImageStreamTag",
  440. "name": "${APPLICATION_NAME}:latest"
  441. }
  442. }
  443. },
  444. {
  445. "type": "ConfigChange"
  446. }
  447. ],
  448. "replicas": 1,
  449. "selector": {
  450. "deploymentConfig": "${APPLICATION_NAME}"
  451. },
  452. "template": {
  453. "metadata": {
  454. "name": "${APPLICATION_NAME}",
  455. "labels": {
  456. "deploymentConfig": "${APPLICATION_NAME}",
  457. "application": "${APPLICATION_NAME}"
  458. }
  459. },
  460. "spec": {
  461. "serviceAccountName": "${SERVICE_ACCOUNT_NAME}",
  462. "terminationGracePeriodSeconds": 60,
  463. "containers": [
  464. {
  465. "name": "${APPLICATION_NAME}",
  466. "image": "${APPLICATION_NAME}",
  467. "imagePullPolicy": "Always",
  468. "volumeMounts": [
  469. {
  470. "name": "eap-keystore-volume",
  471. "mountPath": "/etc/eap-secret-volume",
  472. "readOnly": true
  473. },
  474. {
  475. "name": "eap-jgroups-keystore-volume",
  476. "mountPath": "/etc/jgroups-encrypt-secret-volume",
  477. "readOnly": true
  478. }
  479. ],
  480. "livenessProbe": {
  481. "exec": {
  482. "command": [
  483. "/bin/bash",
  484. "-c",
  485. "/opt/eap/bin/livenessProbe.sh"
  486. ]
  487. }
  488. },
  489. "readinessProbe": {
  490. "exec": {
  491. "command": [
  492. "/bin/bash",
  493. "-c",
  494. "/opt/eap/bin/readinessProbe.sh"
  495. ]
  496. }
  497. },
  498. "ports": [
  499. {
  500. "name": "jolokia",
  501. "containerPort": 8778,
  502. "protocol": "TCP"
  503. },
  504. {
  505. "name": "http",
  506. "containerPort": 8080,
  507. "protocol": "TCP"
  508. },
  509. {
  510. "name": "https",
  511. "containerPort": 8443,
  512. "protocol": "TCP"
  513. },
  514. {
  515. "name": "ping",
  516. "containerPort": 8888,
  517. "protocol": "TCP"
  518. }
  519. ],
  520. "env": [
  521. {
  522. "name": "DB_SERVICE_PREFIX_MAPPING",
  523. "value": "${APPLICATION_NAME}-mysql=DB"
  524. },
  525. {
  526. "name": "DB_JNDI",
  527. "value": "${DB_JNDI}"
  528. },
  529. {
  530. "name": "DB_USERNAME",
  531. "value": "${DB_USERNAME}"
  532. },
  533. {
  534. "name": "DB_PASSWORD",
  535. "value": "${DB_PASSWORD}"
  536. },
  537. {
  538. "name": "DB_DATABASE",
  539. "value": "${DB_DATABASE}"
  540. },
  541. {
  542. "name": "TX_DATABASE_PREFIX_MAPPING",
  543. "value": "${APPLICATION_NAME}-mysql=DB"
  544. },
  545. {
  546. "name": "DB_MIN_POOL_SIZE",
  547. "value": "${DB_MIN_POOL_SIZE}"
  548. },
  549. {
  550. "name": "DB_MAX_POOL_SIZE",
  551. "value": "${DB_MAX_POOL_SIZE}"
  552. },
  553. {
  554. "name": "DB_TX_ISOLATION",
  555. "value": "${DB_TX_ISOLATION}"
  556. },
  557. {
  558. "name": "OPENSHIFT_KUBE_PING_LABELS",
  559. "value": "application=${APPLICATION_NAME}"
  560. },
  561. {
  562. "name": "OPENSHIFT_KUBE_PING_NAMESPACE",
  563. "valueFrom": {
  564. "fieldRef": {
  565. "fieldPath": "metadata.namespace"
  566. }
  567. }
  568. },
  569. {
  570. "name": "HTTPS_KEYSTORE_DIR",
  571. "value": "/etc/eap-secret-volume"
  572. },
  573. {
  574. "name": "HTTPS_KEYSTORE",
  575. "value": "${HTTPS_KEYSTORE}"
  576. },
  577. {
  578. "name": "HTTPS_KEYSTORE_TYPE",
  579. "value": "${HTTPS_KEYSTORE_TYPE}"
  580. },
  581. {
  582. "name": "HTTPS_NAME",
  583. "value": "${HTTPS_NAME}"
  584. },
  585. {
  586. "name": "HTTPS_PASSWORD",
  587. "value": "${HTTPS_PASSWORD}"
  588. },
  589. {
  590. "name": "HORNETQ_CLUSTER_PASSWORD",
  591. "value": "${HORNETQ_CLUSTER_PASSWORD}"
  592. },
  593. {
  594. "name": "HORNETQ_QUEUES",
  595. "value": "${HORNETQ_QUEUES}"
  596. },
  597. {
  598. "name": "HORNETQ_TOPICS",
  599. "value": "${HORNETQ_TOPICS}"
  600. },
  601. {
  602. "name": "JGROUPS_ENCRYPT_SECRET",
  603. "value": "${JGROUPS_ENCRYPT_SECRET}"
  604. },
  605. {
  606. "name": "JGROUPS_ENCRYPT_KEYSTORE_DIR",
  607. "value": "/etc/jgroups-encrypt-secret-volume"
  608. },
  609. {
  610. "name": "JGROUPS_ENCRYPT_KEYSTORE",
  611. "value": "${JGROUPS_ENCRYPT_KEYSTORE}"
  612. },
  613. {
  614. "name": "JGROUPS_ENCRYPT_NAME",
  615. "value": "${JGROUPS_ENCRYPT_NAME}"
  616. },
  617. {
  618. "name": "JGROUPS_ENCRYPT_PASSWORD",
  619. "value": "${JGROUPS_ENCRYPT_PASSWORD}"
  620. },
  621. {
  622. "name": "JGROUPS_CLUSTER_PASSWORD",
  623. "value": "${JGROUPS_CLUSTER_PASSWORD}"
  624. },
  625. {
  626. "name": "TIMER_SERVICE_DATA_STORE",
  627. "value": "${APPLICATION_NAME}-mysql"
  628. },
  629. {
  630. "name": "AUTO_DEPLOY_EXPLODED",
  631. "value": "${AUTO_DEPLOY_EXPLODED}"
  632. }
  633. ]
  634. }
  635. ],
  636. "volumes": [
  637. {
  638. "name": "eap-keystore-volume",
  639. "secret": {
  640. "secretName": "${HTTPS_SECRET}"
  641. }
  642. },
  643. {
  644. "name": "eap-jgroups-keystore-volume",
  645. "secret": {
  646. "secretName": "${JGROUPS_ENCRYPT_SECRET}"
  647. }
  648. }
  649. ]
  650. }
  651. }
  652. }
  653. },
  654. {
  655. "kind": "DeploymentConfig",
  656. "apiVersion": "v1",
  657. "metadata": {
  658. "name": "${APPLICATION_NAME}-mysql",
  659. "labels": {
  660. "application": "${APPLICATION_NAME}"
  661. }
  662. },
  663. "spec": {
  664. "strategy": {
  665. "type": "Recreate"
  666. },
  667. "triggers": [
  668. {
  669. "type": "ImageChange",
  670. "imageChangeParams": {
  671. "automatic": true,
  672. "containerNames": [
  673. "${APPLICATION_NAME}-mysql"
  674. ],
  675. "from": {
  676. "kind": "ImageStreamTag",
  677. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  678. "name": "mysql:latest"
  679. }
  680. }
  681. },
  682. {
  683. "type": "ConfigChange"
  684. }
  685. ],
  686. "replicas": 1,
  687. "selector": {
  688. "deploymentConfig": "${APPLICATION_NAME}-mysql"
  689. },
  690. "template": {
  691. "metadata": {
  692. "name": "${APPLICATION_NAME}-mysql",
  693. "labels": {
  694. "deploymentConfig": "${APPLICATION_NAME}-mysql",
  695. "application": "${APPLICATION_NAME}"
  696. }
  697. },
  698. "spec": {
  699. "terminationGracePeriodSeconds": 60,
  700. "containers": [
  701. {
  702. "name": "${APPLICATION_NAME}-mysql",
  703. "image": "mysql",
  704. "imagePullPolicy": "Always",
  705. "ports": [
  706. {
  707. "containerPort": 3306,
  708. "protocol": "TCP"
  709. }
  710. ],
  711. "env": [
  712. {
  713. "name": "MYSQL_USER",
  714. "value": "${DB_USERNAME}"
  715. },
  716. {
  717. "name": "MYSQL_PASSWORD",
  718. "value": "${DB_PASSWORD}"
  719. },
  720. {
  721. "name": "MYSQL_DATABASE",
  722. "value": "${DB_DATABASE}"
  723. },
  724. {
  725. "name": "MYSQL_LOWER_CASE_TABLE_NAMES",
  726. "value": "${MYSQL_LOWER_CASE_TABLE_NAMES}"
  727. },
  728. {
  729. "name": "MYSQL_MAX_CONNECTIONS",
  730. "value": "${MYSQL_MAX_CONNECTIONS}"
  731. },
  732. {
  733. "name": "MYSQL_FT_MIN_WORD_LEN",
  734. "value": "${MYSQL_FT_MIN_WORD_LEN}"
  735. },
  736. {
  737. "name": "MYSQL_FT_MAX_WORD_LEN",
  738. "value": "${MYSQL_FT_MAX_WORD_LEN}"
  739. },
  740. {
  741. "name": "MYSQL_AIO",
  742. "value": "${MYSQL_AIO}"
  743. }
  744. ]
  745. }
  746. ]
  747. }
  748. }
  749. }
  750. }
  751. ]
  752. }