You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
``workers.waitForMigrations`` section is now deprecated in favor of ``workers.celery.waitForMigrations``. Please update your configuration accordingly.
Copy file name to clipboardExpand all lines: chart/values.schema.json
+65-5Lines changed: 65 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2520,17 +2520,17 @@
2520
2520
}
2521
2521
},
2522
2522
"waitForMigrations": {
2523
-
"description": "Configuration of wait-for-airflow-migration init container for Airflow Celery workers.",
2523
+
"description": "Configuration of wait-for-airflow-migration init container for Airflow Celery workers (deprecated, use ``workers.celery.waitForMigrations`` instead).",
"description": "Enable wait-for-airflow-migrations init container (deprecated, use ``workers.celery.waitForMigrations.enabled`` instead).",
2529
2529
"type": "boolean",
2530
2530
"default": true
2531
2531
},
2532
2532
"env": {
2533
-
"description": "Add additional env vars to wait-for-airflow-migrations init container.",
2533
+
"description": "Add additional env vars to wait-for-airflow-migrations init container (deprecated, use ``workers.celery.waitForMigrations.env`` instead).",
2534
2534
"type": "array",
2535
2535
"default": [],
2536
2536
"items": {
@@ -2551,12 +2551,12 @@
2551
2551
}
2552
2552
},
2553
2553
"securityContexts": {
2554
-
"description": "Security context definition for the wait-for-airflow-migrations container. If not set, the values from global `securityContexts` will be used.",
2554
+
"description": "Security context definition for the wait-for-airflow-migrations container (deprecated, use ``workers.celery.waitForMigrations.securityContexts`` instead). If not set, the values from global `securityContexts` will be used.",
2555
2555
"type": "object",
2556
2556
"x-docsSection": "Kubernetes",
2557
2557
"properties": {
2558
2558
"container": {
2559
-
"description": "Container security context definition for the wait-for-airflow-migrations container.",
2559
+
"description": "Container security context definition for the wait-for-airflow-migrations container (deprecated, use ``workers.celery.waitForMigrations.securityContexts.container`` instead).",
"description": "Configuration of wait-for-airflow-migration init container for Airflow Celery workers.",
3353
+
"type": "object",
3354
+
"additionalProperties": false,
3355
+
"properties": {
3356
+
"enabled": {
3357
+
"description": "Whether to create init container to wait for db migrations.",
3358
+
"type": [
3359
+
"boolean",
3360
+
"null"
3361
+
],
3362
+
"default": null
3363
+
},
3364
+
"env": {
3365
+
"description": "Add additional env vars to wait-for-airflow-migrations init container.",
3366
+
"type": "array",
3367
+
"default": [],
3368
+
"items": {
3369
+
"type": "object",
3370
+
"properties": {
3371
+
"name": {
3372
+
"type": "string"
3373
+
},
3374
+
"value": {
3375
+
"type": "string"
3376
+
}
3377
+
},
3378
+
"required": [
3379
+
"name",
3380
+
"value"
3381
+
],
3382
+
"additionalProperties": false
3383
+
}
3384
+
},
3385
+
"securityContexts": {
3386
+
"description": "Security context definition for the wait-for-airflow-migrations container. If not set, the values from ``workers.waitForMigrations.securityContexts`` will be used.",
3387
+
"type": "object",
3388
+
"x-docsSection": "Kubernetes",
3389
+
"properties": {
3390
+
"container": {
3391
+
"description": "Container security context definition for the wait-for-airflow-migrations container.",
0 commit comments