Skip to content

Commit 52e21ce

Browse files
authored
Disable Docker containerd image store in integration test workflow (Python, Airflow) (#4696)
This makes the change in #4693 to the Python Client and Airflow Operator GitHub Actions workflows. --------- Signed-off-by: Maurice Yap <mauriceyap@hotmail.co.uk>
1 parent 8a90eb6 commit 52e21ce

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/airflow-operator.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ jobs:
7878
DOCKER_BUILDX_BUILDER: "builder"
7979
steps:
8080
- uses: actions/checkout@v6
81+
- name: Setup Docker
82+
uses: docker/setup-docker-action@v4
83+
with:
84+
daemon-config: '{"features":{"containerd-snapshotter":false}}'
8185
- run: docker buildx create --name ${DOCKER_BUILDX_BUILDER} --driver docker-container --use
8286
- run: docker buildx install
8387

.github/workflows/python-client.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ jobs:
5151
python-version: '3.12'
5252
steps:
5353
- uses: actions/checkout@v6
54+
- name: Setup Docker
55+
uses: docker/setup-docker-action@v4
56+
with:
57+
daemon-config: '{"features":{"containerd-snapshotter":false}}'
5458
- name: Setup Go
5559
uses: ./.github/actions/setup-go-cache
5660
with:
@@ -72,6 +76,10 @@ jobs:
7276
DOCKER_BUILDX_BUILDER: "builder"
7377
steps:
7478
- uses: actions/checkout@v6
79+
- name: Setup Docker
80+
uses: docker/setup-docker-action@v4
81+
with:
82+
daemon-config: '{"features":{"containerd-snapshotter":false}}'
7583
- run: docker buildx create --name ${DOCKER_BUILDX_BUILDER} --driver docker-container --use
7684
- run: docker buildx install
7785

0 commit comments

Comments
 (0)