Skip to content

Commit cee4e69

Browse files
authored
Use bitnami legacy images for postgres and mysql (#84)
1 parent 4058ee0 commit cee4e69

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.github/workflows/helm-workflow.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches:
88
- main
99
env:
10-
HELM_VERSION: v3.18.3
10+
HELM_VERSION: v3.19.0
1111
HELMFILE_VERSION: v1.1.2
1212
PYTHON_VERSION: 3.13
1313
jobs:
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Go
2222
uses: actions/setup-go@v3
2323
- name: Set up Helm
24-
uses: azure/setup-helm@v3
24+
uses: azure/setup-helm@v4.3.0
2525
with:
2626
version: ${{ env.HELM_VERSION }}
2727
- uses: actions/setup-python@v4

charts/db-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
type: application
33
name: db-operator
4-
version: 1.42.0
4+
version: 1.42.1
55
# ---------------------------------------------------------------------------------
66
# -- All supported k8s versions are in the test:
77
# -- https://github.com/db-operator/charts/blob/main/.github/workflows/test.yaml

charts/db-operator/templates/test/mysql-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ metadata:
9797
spec:
9898
containers:
9999
- name: mysql-writer
100-
image: bitnami/mysql
100+
image: bitnamilegacy/mysql
101101
command:
102102
- sh
103103
- -c
@@ -134,7 +134,7 @@ spec:
134134
cpu: 100m
135135
memory: 128Mi
136136
- name: mysql-reader
137-
image: bitnami/mysql
137+
image: bitnamilegacy/mysql
138138
command:
139139
- sh
140140
- -c

helmfile.yaml.gotmpl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ releases:
2626
chart: bitnami/postgresql
2727
version: 16.0.6
2828
values:
29+
- image:
30+
repository: bitnamilegacy/postgresql
2931
- global:
3032
postgresql:
3133
auth:
@@ -36,6 +38,8 @@ releases:
3638
chart: bitnami/mysql
3739
version: 11.1.19
3840
values:
41+
- image:
42+
repository: bitnamilegacy/mysql
3943
- auth:
4044
rootPassword: 123123!!
4145
password: 123123!!

0 commit comments

Comments
 (0)