Skip to content

Commit f4a9a0f

Browse files
committed
chore(ci): Update to trixie container images...
when possible, as redis doesn't have it. Signed-off-by: Paulo Vital <[email protected]>
1 parent b42438a commit f4a9a0f

File tree

6 files changed

+22
-19
lines changed

6 files changed

+22
-19
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
type: string
136136
docker:
137137
- image: public.ecr.aws/docker/library/python:<<parameters.py-version>>
138-
- image: public.ecr.aws/docker/library/postgres:16.2-bookworm
138+
- image: public.ecr.aws/docker/library/postgres:16.10-trixie
139139
environment:
140140
POSTGRES_USER: root
141141
POSTGRES_PASSWORD: passw0rd

.tekton/.currency/currency-tasks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
mountPath: /workspace
3333
steps:
3434
- name: generate-currency-report
35-
image: public.ecr.aws/docker/library/python:3.12-bookworm
35+
image: public.ecr.aws/docker/library/python:3.12-trixie
3636
script: |
3737
#!/usr/bin/env bash
3838
cd /workspace/python-sensor/.tekton/.currency

.tekton/github-pr-pipeline.yaml.part

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ spec:
1010
type: string
1111
- name: py-39-imageDigest
1212
type: string
13-
default: public.ecr.aws/docker/library/python:3.9-bookworm
13+
default: public.ecr.aws/docker/library/python:3.9-trixie
1414
- name: py-310-imageDigest
1515
type: string
16-
default: public.ecr.aws/docker/library/python:3.10-bookworm
16+
default: public.ecr.aws/docker/library/python:3.10-trixie
1717
- name: py-311-imageDigest
1818
type: string
19-
default: public.ecr.aws/docker/library/python:3.11-bookworm
19+
default: public.ecr.aws/docker/library/python:3.11-trixie
2020
- name: py-312-imageDigest
2121
type: string
22-
default: public.ecr.aws/docker/library/python:3.12-bookworm
22+
default: public.ecr.aws/docker/library/python:3.12-trixie
2323
- name: py-313-imageDigest
2424
type: string
25-
default: public.ecr.aws/docker/library/python:3.13-bookworm
25+
default: public.ecr.aws/docker/library/python:3.13-trixie
2626
- name: py-314-imageDigest
2727
type: string
28-
default: public.ecr.aws/docker/library/python:3.14-bookworm
28+
default: public.ecr.aws/docker/library/python:3.14-trixie
2929
workspaces:
3030
- name: python-tracer-ci-pipeline-pvc
3131
tasks:

.tekton/pipeline.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@ spec:
88
type: string
99
- name: py-312-imageDigest
1010
type: string
11-
default: public.ecr.aws/docker/library/python:3.12-bookworm
11+
default: public.ecr.aws/docker/library/python:3.12-trixie
1212
- name: py-313-imageDigest
1313
type: string
14-
default: public.ecr.aws/docker/library/python:3.13-bookworm
14+
default: public.ecr.aws/docker/library/python:3.13-trixie
15+
- name: py-314-imageDigest
16+
type: string
17+
default: public.ecr.aws/docker/library/python:3.14-trixie
1518
workspaces:
1619
- name: python-tracer-ci-pipeline-pvc
1720
tasks:

.tekton/python-tracer-prepuller.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,28 +35,28 @@ spec:
3535
image: public.ecr.aws/docker/library/mariadb:11.3.2
3636
command: ["sh", "-c", "'true'"]
3737
- name: prepuller-postgres
38-
image: public.ecr.aws/docker/library/postgres:16.2-bookworm
38+
image: public.ecr.aws/docker/library/postgres:16.10-trixie
3939
command: ["sh", "-c", "'true'"]
4040
- name: prepuller-kafka
4141
image: public.ecr.aws/bitnami/kafka:3.9.0
4242
command: ["sh", "-c", "'true'"]
4343
- name: prepuller-39
44-
image: public.ecr.aws/docker/library/python:3.9-bookworm
44+
image: public.ecr.aws/docker/library/python:3.9-trixie
4545
command: ["sh", "-c", "'true'"]
4646
- name: prepuller-310
47-
image: public.ecr.aws/docker/library/python:3.10-bookworm
47+
image: public.ecr.aws/docker/library/python:3.10-trixie
4848
command: ["sh", "-c", "'true'"]
4949
- name: prepuller-311
50-
image: public.ecr.aws/docker/library/python:3.11-bookworm
50+
image: public.ecr.aws/docker/library/python:3.11-trixie
5151
command: ["sh", "-c", "'true'"]
5252
- name: prepuller-312
53-
image: public.ecr.aws/docker/library/python:3.12-bookworm
53+
image: public.ecr.aws/docker/library/python:3.12-trixie
5454
command: ["sh", "-c", "'true'"]
5555
- name: prepuller-313
56-
image: public.ecr.aws/docker/library/python:3.13-bookworm
56+
image: public.ecr.aws/docker/library/python:3.13-trixie
5757
command: ["sh", "-c", "'true'"]
5858
- name: prepuller-314
59-
image: public.ecr.aws/docker/library/python:3.14-bookworm
59+
image: public.ecr.aws/docker/library/python:3.14-trixie
6060
command: ["sh", "-c", "'true'"]
6161

6262
# Use the pause container to ensure the Pod goes into a `Running` phase

.tekton/task.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ spec:
104104
- name: mongo
105105
image: public.ecr.aws/docker/library/mongo:7.0.6
106106
- name: postgres
107-
image: public.ecr.aws/docker/library/postgres:16.2-bookworm
107+
image: public.ecr.aws/docker/library/postgres:16.10-trixie
108108
env:
109109
- name: POSTGRES_USER
110110
value: root
@@ -248,7 +248,7 @@ spec:
248248
- name: mongo
249249
image: public.ecr.aws/docker/library/mongo:7.0.6
250250
- name: postgres
251-
image: public.ecr.aws/docker/library/postgres:16.2-bookworm
251+
image: public.ecr.aws/docker/library/postgres:16.10-trixie
252252
env:
253253
- name: POSTGRES_USER
254254
value: root

0 commit comments

Comments
 (0)