Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chart/docs/setting-resources-for-containers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Possible containers where resources can be configured include:
* Main Airflow containers and their sidecars. You can add the resources for these containers through the following parameters:

* ``workers.resources``
* ``workers.logGroomerSidecar.resources``
* ``workers.celery.logGroomerSidecar.resources``
* ``workers.kerberosSidecar.resources``
* ``workers.kerberosInitContainer.resources``
* ``scheduler.resources``
Expand Down
1 change: 1 addition & 0 deletions chart/newsfragments/65033.significant.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
``workers.logGroomerSidecar`` section is now deprecated in favor of ``workers.celery.logGroomerSidecar``. Please update your configuration accordingly.
96 changes: 96 additions & 0 deletions chart/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,102 @@ DEPRECATION WARNING:

{{- end }}

{{- if not .Values.workers.logGroomerSidecar.enabled }}

DEPRECATION WARNING:
`workers.logGroomerSidecar.enabled` has been renamed to `workers.celery.logGroomerSidecar.enabled`.
Please change your values as support for the old name will be dropped in a future release.

{{- end }}

{{- if not (empty .Values.workers.logGroomerSidecar.command) }}

DEPRECATION WARNING:
`workers.logGroomerSidecar.command` has been renamed to `workers.celery.logGroomerSidecar.command`.
Please change your values as support for the old name will be dropped in a future release.

{{- end }}

{{- if ne (.Values.workers.logGroomerSidecar.args | toJson) (list "bash" "/clean-logs" | toJson) }}

DEPRECATION WARNING:
`workers.logGroomerSidecar.args` has been renamed to `workers.celery.logGroomerSidecar.args`.
Please change your values as support for the old name will be dropped in a future release.

{{- end }}

{{- if ne (int .Values.workers.logGroomerSidecar.retentionDays) 15 }}

DEPRECATION WARNING:
`workers.logGroomerSidecar.retentionDays` has been renamed to `workers.celery.logGroomerSidecar.retentionDays`.
Please change your values as support for the old name will be dropped in a future release.

{{- end }}

{{- if ne (int .Values.workers.logGroomerSidecar.retentionMinutes) 0 }}

DEPRECATION WARNING:
`workers.logGroomerSidecar.retentionMinutes` has been renamed to `workers.celery.logGroomerSidecar.retentionMinutes`.
Please change your values as support for the old name will be dropped in a future release.

{{- end }}

{{- if ne (int .Values.workers.logGroomerSidecar.frequencyMinutes) 15 }}

DEPRECATION WARNING:
`workers.logGroomerSidecar.frequencyMinutes` has been renamed to `workers.celery.logGroomerSidecar.frequencyMinutes`.
Please change your values as support for the old name will be dropped in a future release.

{{- end }}

{{- if ne (int .Values.workers.logGroomerSidecar.maxSizeBytes) 0 }}

DEPRECATION WARNING:
`workers.logGroomerSidecar.maxSizeBytes` has been renamed to `workers.celery.logGroomerSidecar.maxSizeBytes`.
Please change your values as support for the old name will be dropped in a future release.

{{- end }}

{{- if ne (int .Values.workers.logGroomerSidecar.maxSizePercent) 0 }}

DEPRECATION WARNING:
`workers.logGroomerSidecar.maxSizePercent` has been renamed to `workers.celery.logGroomerSidecar.maxSizePercent`.
Please change your values as support for the old name will be dropped in a future release.

{{- end }}

{{- if not (empty .Values.workers.logGroomerSidecar.resources) }}

DEPRECATION WARNING:
`workers.logGroomerSidecar.resources` has been renamed to `workers.celery.logGroomerSidecar.resources`.
Please change your values as support for the old name will be dropped in a future release.

{{- end }}

{{- if not (empty .Values.workers.logGroomerSidecar.securityContexts.container) }}

DEPRECATION WARNING:
`workers.logGroomerSidecar.securityContexts.container` has been renamed to `workers.celery.logGroomerSidecar.securityContexts.container`.
Please change your values as support for the old name will be dropped in a future release.

{{- end }}

{{- if not (empty .Values.workers.logGroomerSidecar.env) }}

DEPRECATION WARNING:
`workers.logGroomerSidecar.env` has been renamed to `workers.celery.logGroomerSidecar.env`.
Please change your values as support for the old name will be dropped in a future release.

{{- end }}

{{- if not (empty .Values.workers.logGroomerSidecar.containerLifecycleHooks) }}

DEPRECATION WARNING:
`workers.logGroomerSidecar.containerLifecycleHooks` has been renamed to `workers.celery.logGroomerSidecar.containerLifecycleHooks`.
Please change your values as support for the old name will be dropped in a future release.

{{- end }}

{{- if not .Values.workers.waitForMigrations.enabled }}

DEPRECATION WARNING:
Expand Down
Loading
Loading