Skip to content

Commit ceb0ed6

Browse files
committed
fixup(addons): image tag tostring error
1 parent b5f6f25 commit ceb0ed6

8 files changed

Lines changed: 23 additions & 23 deletions

File tree

addons/mariadb-1.1.0/chart/mariadb/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ diagnosticMode:
7373
image:
7474
registry: registry.drycc.cc
7575
repository: drycc-addons/mariadb
76-
tag: 11.0
76+
tag: "11.0"
7777
## Specify a imagePullPolicy
7878
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
7979
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
@@ -939,7 +939,7 @@ volumePermissions:
939939
image:
940940
registry: registry.drycc.cc
941941
repository: drycc/base
942-
tag: bookworm
942+
tag: "bookworm"
943943
pullPolicy: IfNotPresent
944944
## Optionally specify an array of imagePullSecrets (secrets must be manually created in the namespace)
945945
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
@@ -973,7 +973,7 @@ metrics:
973973
image:
974974
registry: registry.drycc.cc
975975
repository: drycc-addons/mysqld-exporter
976-
tag: 0
976+
tag: "0"
977977
pullPolicy: IfNotPresent
978978
## Optionally specify an array of imagePullSecrets (secrets must be manually created in the namespace)
979979
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/

addons/minio-1.1.0/chart/minio/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ extraDeploy: []
5454
image:
5555
registry: registry.drycc.cc
5656
repository: drycc-addons/minio
57-
tag: 2023
57+
tag: "2023"
5858
## Specify a imagePullPolicy
5959
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
6060
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
@@ -80,7 +80,7 @@ image:
8080
clientImage:
8181
registry: registry.drycc.cc
8282
repository: drycc-addons/minio-client
83-
tag: 2023
83+
tag: "2023"
8484
## @param mode MinIO® server mode (`standalone` or `distributed`)
8585
## ref: https://docs.minio.io/docs/distributed-minio-quickstart-guide
8686
##
@@ -905,7 +905,7 @@ volumePermissions:
905905
image:
906906
registry: registry.drycc.cc
907907
repository: drycc/base
908-
tag: bookworm
908+
tag: "bookworm"
909909
pullPolicy: IfNotPresent
910910
## Optionally specify an array of imagePullSecrets.
911911
## Secrets must be manually created in the namespace.

addons/postgresql-1.1.0/chart/postgresql/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ diagnosticMode:
8787
image:
8888
registry: registry.drycc.cc
8989
repository: drycc-addons/postgresql
90-
tag: 15
90+
tag: "15"
9191
## Specify a imagePullPolicy
9292
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
9393
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
@@ -1059,7 +1059,7 @@ volumePermissions:
10591059
image:
10601060
registry: registry.drycc.cc
10611061
repository: drycc/base
1062-
tag: bookworm
1062+
tag: "bookworm"
10631063
pullPolicy: IfNotPresent
10641064
## Optionally specify an array of imagePullSecrets.
10651065
## Secrets must be manually created in the namespace.
@@ -1145,7 +1145,7 @@ metrics:
11451145
image:
11461146
registry: registry.drycc.cc
11471147
repository: drycc-addons/postgres-exporter
1148-
tag: 0
1148+
tag: "0"
11491149
pullPolicy: IfNotPresent
11501150
## Optionally specify an array of imagePullSecrets.
11511151
## Secrets must be manually created in the namespace.

addons/rabbitmq-1.1.0/chart/rabbitmq/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ global:
3131
image:
3232
registry: registry.drycc.cc
3333
repository: drycc-addons/rabbitmq
34-
tag: 3.12
34+
tag: "3.12"
3535
digest: ""
3636
## set to true if you would like to see extra information on logs
3737
## It turns BASH and/or NAMI debugging in the image
@@ -1263,7 +1263,7 @@ volumePermissions:
12631263
image:
12641264
registry: registry.drycc.cc
12651265
repository: drycc/base
1266-
tag: bookworm
1266+
tag: "bookworm"
12671267
digest: ""
12681268
## Specify a imagePullPolicy
12691269
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'

addons/redis-1.1.0/chart/redis/templates/master/application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ spec:
9494
terminationGracePeriodSeconds: {{ .Values.master.terminationGracePeriodSeconds }}
9595
containers:
9696
- name: redis
97-
image: {{ template "redis.image" . }}
97+
image: {{ .Values.global.image.tag }}
9898
imagePullPolicy: {{ .Values.image.pullPolicy | quote }}
9999
{{- if .Values.master.lifecycleHooks }}
100100
lifecycle: {{- include "common.tplvalues.render" (dict "value" .Values.master.lifecycleHooks "context" $) | nindent 12 }}

addons/redis-1.1.0/chart/redis/values.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ diagnosticMode:
7878
image:
7979
registry: registry.drycc.cc
8080
repository: drycc-addons/redis
81-
tag: 7.0
81+
tag: "7.0"
8282
## Specify a imagePullPolicy
8383
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
8484
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
@@ -889,7 +889,7 @@ sentinel:
889889
image:
890890
registry: registry.drycc.cc
891891
repository: drycc-addons/redis-sentinel
892-
tag: 7.0
892+
tag: "7.0"
893893
## Specify a imagePullPolicy
894894
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
895895
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
@@ -1293,7 +1293,7 @@ metrics:
12931293
image:
12941294
registry: registry.drycc.cc
12951295
repository: drycc-addons/redis-exporter
1296-
tag: 1
1296+
tag: "1"
12971297
pullPolicy: IfNotPresent
12981298
## Optionally specify an array of imagePullSecrets.
12991299
## Secrets must be manually created in the namespace.
@@ -1486,7 +1486,7 @@ volumePermissions:
14861486
image:
14871487
registry: registry.drycc.cc
14881488
repository: drycc/base
1489-
tag: bookworm
1489+
tag: "bookworm"
14901490
pullPolicy: IfNotPresent
14911491
## Optionally specify an array of imagePullSecrets.
14921492
## Secrets must be manually created in the namespace.
@@ -1532,7 +1532,7 @@ sysctl:
15321532
image:
15331533
registry: registry.drycc.cc
15341534
repository: drycc/base
1535-
tag: bookworm
1535+
tag: "bookworm"
15361536
pullPolicy: IfNotPresent
15371537
## Optionally specify an array of imagePullSecrets.
15381538
## Secrets must be manually created in the namespace.

addons/redis-cluster-1.1.0/chart/redis-cluster/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ image:
7373
## Bitnami Redis® image tag
7474
## ref: https://github.com/bitnami/containers/tree/main/bitnami/redis#supported-tags-and-respective-dockerfile-links
7575
##
76-
tag: 7.0
76+
tag: "7.0"
7777
digest: ""
7878
## Specify a imagePullPolicy
7979
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
@@ -339,7 +339,7 @@ volumePermissions:
339339
image:
340340
registry: registry.drycc.cc
341341
repository: drycc/base
342-
tag: bookworm
342+
tag: "bookworm"
343343
digest: ""
344344
pullPolicy: IfNotPresent
345345
## Optionally specify an array of imagePullSecrets.
@@ -801,7 +801,7 @@ metrics:
801801
image:
802802
registry: registry.drycc.cc
803803
repository: drycc-addons/redis-exporter
804-
tag: 1
804+
tag: "1"
805805
digest: ""
806806
pullPolicy: IfNotPresent
807807
## Optionally specify an array of imagePullSecrets.
@@ -963,7 +963,7 @@ sysctlImage:
963963
##
964964
registry: registry.drycc.cc
965965
repository: drycc/base
966-
tag: bookworm
966+
tag: "bookworm"
967967
digest: ""
968968
pullPolicy: IfNotPresent
969969
## Optionally specify an array of imagePullSecrets.

addons/zookeeper-1.1.0/chart/zookeeper/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ diagnosticMode:
7676
image:
7777
registry: registry.drycc.cc
7878
repository: drycc-addons/zookeeper
79-
tag: 3.9
79+
tag: "3.9"
8080
digest: ""
8181
## Specify a imagePullPolicy
8282
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
@@ -657,7 +657,7 @@ volumePermissions:
657657
image:
658658
registry: registry.drycc.cc
659659
repository: drycc/base
660-
tag: bookworm
660+
tag: "bookworm"
661661
digest: ""
662662
pullPolicy: IfNotPresent
663663
## Optionally specify an array of imagePullSecrets.

0 commit comments

Comments
 (0)