|
39 | 39 | The celery executor. |
40 | 40 | Deployed with an explicit number of replicas. |
41 | 41 | properties: |
42 | | - celeryBroker: |
| 42 | + broker: |
43 | 43 | description: Connection information for the celery broker queue. |
44 | 44 | oneOf: |
45 | 45 | - required: |
|
99 | 99 | - host |
100 | 100 | type: object |
101 | 101 | type: object |
102 | | - celeryResultBackend: |
103 | | - description: Connection information for the celery backend database. |
104 | | - oneOf: |
105 | | - - required: |
106 | | - - postgresql |
107 | | - - required: |
108 | | - - generic |
109 | | - properties: |
110 | | - generic: |
111 | | - description: |- |
112 | | - A generic Celery database connection for broker or result backend types not covered by a |
113 | | - dedicated variant. |
114 | | - |
115 | | - Use this when you need a Celery-compatible connection that does not have a first-class |
116 | | - connection type. The complete connection URL is read from a Secret, giving the user full |
117 | | - control over the connection string. |
118 | | - properties: |
119 | | - connectionUrlSecretName: |
120 | | - description: The name of the Secret that contains an `connectionUrl` key with the complete Celery URL. |
121 | | - type: string |
122 | | - required: |
123 | | - - connectionUrlSecretName |
124 | | - type: object |
125 | | - postgresql: |
126 | | - description: Connection settings for a [PostgreSQL](https://www.postgresql.org/) database. |
127 | | - properties: |
128 | | - credentialsSecretName: |
129 | | - description: |- |
130 | | - Name of a Secret containing the `username` and `password` keys used to authenticate |
131 | | - against the PostgreSQL server. |
132 | | - type: string |
133 | | - database: |
134 | | - description: Name of the database (schema) to connect to. |
135 | | - type: string |
136 | | - host: |
137 | | - description: Hostname or IP address of the PostgreSQL server. |
138 | | - type: string |
139 | | - parameters: |
140 | | - additionalProperties: |
141 | | - type: string |
142 | | - default: {} |
143 | | - description: |- |
144 | | - Additional map of JDBC connection parameters to append to the connection URL. The given |
145 | | - `HashMap<String, String>` will be converted to query parameters in the form of |
146 | | - `?param1=value1¶m2=value2`. |
147 | | - type: object |
148 | | - port: |
149 | | - default: 5432 |
150 | | - description: Port the PostgreSQL server is listening on. Defaults to `5432`. |
151 | | - format: uint16 |
152 | | - maximum: 65535.0 |
153 | | - minimum: 0.0 |
154 | | - type: integer |
155 | | - required: |
156 | | - - credentialsSecretName |
157 | | - - database |
158 | | - - host |
159 | | - type: object |
160 | | - type: object |
161 | 102 | cliOverrides: |
162 | 103 | additionalProperties: |
163 | 104 | type: string |
@@ -634,6 +575,65 @@ spec: |
634 | 575 | for more information. |
635 | 576 | type: object |
636 | 577 | x-kubernetes-preserve-unknown-fields: true |
| 578 | + resultBackend: |
| 579 | + description: Connection information for the celery backend database. |
| 580 | + oneOf: |
| 581 | + - required: |
| 582 | + - postgresql |
| 583 | + - required: |
| 584 | + - generic |
| 585 | + properties: |
| 586 | + generic: |
| 587 | + description: |- |
| 588 | + A generic Celery database connection for broker or result backend types not covered by a |
| 589 | + dedicated variant. |
| 590 | + |
| 591 | + Use this when you need a Celery-compatible connection that does not have a first-class |
| 592 | + connection type. The complete connection URL is read from a Secret, giving the user full |
| 593 | + control over the connection string. |
| 594 | + properties: |
| 595 | + connectionUrlSecretName: |
| 596 | + description: The name of the Secret that contains an `connectionUrl` key with the complete Celery URL. |
| 597 | + type: string |
| 598 | + required: |
| 599 | + - connectionUrlSecretName |
| 600 | + type: object |
| 601 | + postgresql: |
| 602 | + description: Connection settings for a [PostgreSQL](https://www.postgresql.org/) database. |
| 603 | + properties: |
| 604 | + credentialsSecretName: |
| 605 | + description: |- |
| 606 | + Name of a Secret containing the `username` and `password` keys used to authenticate |
| 607 | + against the PostgreSQL server. |
| 608 | + type: string |
| 609 | + database: |
| 610 | + description: Name of the database (schema) to connect to. |
| 611 | + type: string |
| 612 | + host: |
| 613 | + description: Hostname or IP address of the PostgreSQL server. |
| 614 | + type: string |
| 615 | + parameters: |
| 616 | + additionalProperties: |
| 617 | + type: string |
| 618 | + default: {} |
| 619 | + description: |- |
| 620 | + Additional map of JDBC connection parameters to append to the connection URL. The given |
| 621 | + `HashMap<String, String>` will be converted to query parameters in the form of |
| 622 | + `?param1=value1¶m2=value2`. |
| 623 | + type: object |
| 624 | + port: |
| 625 | + default: 5432 |
| 626 | + description: Port the PostgreSQL server is listening on. Defaults to `5432`. |
| 627 | + format: uint16 |
| 628 | + maximum: 65535.0 |
| 629 | + minimum: 0.0 |
| 630 | + type: integer |
| 631 | + required: |
| 632 | + - credentialsSecretName |
| 633 | + - database |
| 634 | + - host |
| 635 | + type: object |
| 636 | + type: object |
637 | 637 | roleConfig: |
638 | 638 | default: |
639 | 639 | podDisruptionBudget: |
@@ -1161,8 +1161,8 @@ spec: |
1161 | 1161 | type: object |
1162 | 1162 | type: object |
1163 | 1163 | required: |
1164 | | - - celeryBroker |
1165 | | - - celeryResultBackend |
| 1164 | + - broker |
| 1165 | + - resultBackend |
1166 | 1166 | - roleGroups |
1167 | 1167 | type: object |
1168 | 1168 | clusterConfig: |
@@ -6222,7 +6222,7 @@ spec: |
6222 | 6222 | The celery executor. |
6223 | 6223 | Deployed with an explicit number of replicas. |
6224 | 6224 | properties: |
6225 | | - celeryBroker: |
| 6225 | + broker: |
6226 | 6226 | description: Connection information for the celery broker queue. |
6227 | 6227 | oneOf: |
6228 | 6228 | - required: |
@@ -6282,65 +6282,6 @@ spec: |
6282 | 6282 | - host |
6283 | 6283 | type: object |
6284 | 6284 | type: object |
6285 | | - celeryResultBackend: |
6286 | | - description: Connection information for the celery backend database. |
6287 | | - oneOf: |
6288 | | - - required: |
6289 | | - - postgresql |
6290 | | - - required: |
6291 | | - - generic |
6292 | | - properties: |
6293 | | - generic: |
6294 | | - description: |- |
6295 | | - A generic Celery database connection for broker or result backend types not covered by a |
6296 | | - dedicated variant. |
6297 | | - |
6298 | | - Use this when you need a Celery-compatible connection that does not have a first-class |
6299 | | - connection type. The complete connection URL is read from a Secret, giving the user full |
6300 | | - control over the connection string. |
6301 | | - properties: |
6302 | | - connectionUrlSecretName: |
6303 | | - description: The name of the Secret that contains an `connectionUrl` key with the complete Celery URL. |
6304 | | - type: string |
6305 | | - required: |
6306 | | - - connectionUrlSecretName |
6307 | | - type: object |
6308 | | - postgresql: |
6309 | | - description: Connection settings for a [PostgreSQL](https://www.postgresql.org/) database. |
6310 | | - properties: |
6311 | | - credentialsSecretName: |
6312 | | - description: |- |
6313 | | - Name of a Secret containing the `username` and `password` keys used to authenticate |
6314 | | - against the PostgreSQL server. |
6315 | | - type: string |
6316 | | - database: |
6317 | | - description: Name of the database (schema) to connect to. |
6318 | | - type: string |
6319 | | - host: |
6320 | | - description: Hostname or IP address of the PostgreSQL server. |
6321 | | - type: string |
6322 | | - parameters: |
6323 | | - additionalProperties: |
6324 | | - type: string |
6325 | | - default: {} |
6326 | | - description: |- |
6327 | | - Additional map of JDBC connection parameters to append to the connection URL. The given |
6328 | | - `HashMap<String, String>` will be converted to query parameters in the form of |
6329 | | - `?param1=value1¶m2=value2`. |
6330 | | - type: object |
6331 | | - port: |
6332 | | - default: 5432 |
6333 | | - description: Port the PostgreSQL server is listening on. Defaults to `5432`. |
6334 | | - format: uint16 |
6335 | | - maximum: 65535.0 |
6336 | | - minimum: 0.0 |
6337 | | - type: integer |
6338 | | - required: |
6339 | | - - credentialsSecretName |
6340 | | - - database |
6341 | | - - host |
6342 | | - type: object |
6343 | | - type: object |
6344 | 6285 | cliOverrides: |
6345 | 6286 | additionalProperties: |
6346 | 6287 | type: string |
@@ -6817,6 +6758,65 @@ spec: |
6817 | 6758 | for more information. |
6818 | 6759 | type: object |
6819 | 6760 | x-kubernetes-preserve-unknown-fields: true |
| 6761 | + resultBackend: |
| 6762 | + description: Connection information for the celery backend database. |
| 6763 | + oneOf: |
| 6764 | + - required: |
| 6765 | + - postgresql |
| 6766 | + - required: |
| 6767 | + - generic |
| 6768 | + properties: |
| 6769 | + generic: |
| 6770 | + description: |- |
| 6771 | + A generic Celery database connection for broker or result backend types not covered by a |
| 6772 | + dedicated variant. |
| 6773 | + |
| 6774 | + Use this when you need a Celery-compatible connection that does not have a first-class |
| 6775 | + connection type. The complete connection URL is read from a Secret, giving the user full |
| 6776 | + control over the connection string. |
| 6777 | + properties: |
| 6778 | + connectionUrlSecretName: |
| 6779 | + description: The name of the Secret that contains an `connectionUrl` key with the complete Celery URL. |
| 6780 | + type: string |
| 6781 | + required: |
| 6782 | + - connectionUrlSecretName |
| 6783 | + type: object |
| 6784 | + postgresql: |
| 6785 | + description: Connection settings for a [PostgreSQL](https://www.postgresql.org/) database. |
| 6786 | + properties: |
| 6787 | + credentialsSecretName: |
| 6788 | + description: |- |
| 6789 | + Name of a Secret containing the `username` and `password` keys used to authenticate |
| 6790 | + against the PostgreSQL server. |
| 6791 | + type: string |
| 6792 | + database: |
| 6793 | + description: Name of the database (schema) to connect to. |
| 6794 | + type: string |
| 6795 | + host: |
| 6796 | + description: Hostname or IP address of the PostgreSQL server. |
| 6797 | + type: string |
| 6798 | + parameters: |
| 6799 | + additionalProperties: |
| 6800 | + type: string |
| 6801 | + default: {} |
| 6802 | + description: |- |
| 6803 | + Additional map of JDBC connection parameters to append to the connection URL. The given |
| 6804 | + `HashMap<String, String>` will be converted to query parameters in the form of |
| 6805 | + `?param1=value1¶m2=value2`. |
| 6806 | + type: object |
| 6807 | + port: |
| 6808 | + default: 5432 |
| 6809 | + description: Port the PostgreSQL server is listening on. Defaults to `5432`. |
| 6810 | + format: uint16 |
| 6811 | + maximum: 65535.0 |
| 6812 | + minimum: 0.0 |
| 6813 | + type: integer |
| 6814 | + required: |
| 6815 | + - credentialsSecretName |
| 6816 | + - database |
| 6817 | + - host |
| 6818 | + type: object |
| 6819 | + type: object |
6820 | 6820 | roleConfig: |
6821 | 6821 | default: |
6822 | 6822 | podDisruptionBudget: |
@@ -7344,8 +7344,8 @@ spec: |
7344 | 7344 | type: object |
7345 | 7345 | type: object |
7346 | 7346 | required: |
7347 | | - - celeryBroker |
7348 | | - - celeryResultBackend |
| 7347 | + - broker |
| 7348 | + - resultBackend |
7349 | 7349 | - roleGroups |
7350 | 7350 | type: object |
7351 | 7351 | clusterConfig: |
|
0 commit comments