Skip to content

Commit 2ceff65

Browse files
PINF-272: Add airflow_logs_dir helper template to add release-name for worker component (#704) (#705)
* add vols * use custom2 * lock * update config * custom3 * update lock file * add 1.17.5-astro * update lock * add 1.17.22
1 parent 51f121f commit 2ceff65

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ jobs:
172172
run_pre_commit:
173173
resource_class: small
174174
docker:
175-
- image: quay.io/astronomer/ci-pre-commit:2026-02
175+
- image: quay.io/astronomer/ci-pre-commit:2026-03
176176
steps:
177177
- checkout
178178
- run:
@@ -207,7 +207,7 @@ jobs:
207207

208208
unittest-charts:
209209
docker:
210-
- image: quay.io/astronomer/ci-helm-release:2026-02
210+
- image: quay.io/astronomer/ci-helm-release:2026-03
211211
parallelism: 8
212212
steps:
213213
- setup_remote_docker:
@@ -226,7 +226,7 @@ jobs:
226226

227227
build-and-release-internal:
228228
docker:
229-
- image: quay.io/astronomer/ci-helm-release:2026-02
229+
- image: quay.io/astronomer/ci-helm-release:2026-03
230230
steps:
231231
- checkout
232232
- run:
@@ -267,7 +267,7 @@ jobs:
267267
path: test-results
268268
release-internal:
269269
docker:
270-
- image: quay.io/astronomer/ci-helm-release:2026-02
270+
- image: quay.io/astronomer/ci-helm-release:2026-03
271271
steps:
272272
- checkout
273273
- run:
@@ -276,7 +276,7 @@ jobs:
276276

277277
release-public:
278278
docker:
279-
- image: quay.io/astronomer/ci-helm-release:2026-02
279+
- image: quay.io/astronomer/ci-helm-release:2026-03
280280
steps:
281281
- checkout
282282
- publish-github-release

Chart.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
22
- name: airflow
3-
repository: https://github.com/astronomer/apc-airflow/releases/download/oss-helm-chart/1.17.4-astro
4-
version: 1.17.4-astro
5-
digest: sha256:2dd1cd6fca6521e95ba2c4bf78e2afed2067134a163e3e8ea02f5dc89915e993
6-
generated: "2026-02-16T17:59:53.733401+05:30"
3+
repository: https://github.com/astronomer/apc-airflow/releases/download/oss-helm-chart/1.17.5-astro
4+
version: 1.17.5-astro
5+
digest: sha256:0173630494f843797e8a7abd810279d1a96054297bfec62db596fbaf1058f0b7
6+
generated: "2026-02-25T20:00:28.812495+05:30"

Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# apiVersion v2 is Helm 3
22
apiVersion: v2
33
name: airflow
4-
version: 1.17.21
4+
version: 1.17.22
55
description: Helm chart to deploy the Astronomer Platform Airflow module
66
icon: https://airflow.apache.org/docs/apache-airflow/stable/_images/pin_large.png
77
keywords:
88
- astronomer
99
- airflow
1010
dependencies:
1111
- name: airflow
12-
version: 1.17.4-astro
13-
repository: https://github.com/astronomer/apc-airflow/releases/download/oss-helm-chart/1.17.4-astro
12+
version: 1.17.5-astro
13+
repository: https://github.com/astronomer/apc-airflow/releases/download/oss-helm-chart/1.17.5-astro

values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ airflow:
291291
resources: {{- toYaml .Values.workers.resources | nindent 8 }}
292292
volumeMounts:
293293
- mountPath: {{ template "airflow_logs" . }}
294-
name: logs
294+
name: {{ template "airflow_logs_dir" . }}
295295
- name: config
296296
mountPath: {{ template "airflow_config_path" . }}
297297
subPath: airflow.cfg
@@ -346,7 +346,7 @@ airflow:
346346
claimName: {{ template "airflow_logs_volume_claim" . }}
347347
{{- else }}
348348
- emptyDir: {}
349-
name: logs
349+
name: {{ template "airflow_logs_dir" . }}
350350
{{- end }}
351351
{{- if and .Values.dags.gitSync.enabled .Values.dags.gitSync.sshKeySecret }}
352352
{{- include "git_sync_ssh_key_volume" . | nindent 2 }}

0 commit comments

Comments
 (0)