Skip to content

Commit bcc566c

Browse files
[universal] Fix imagepullsecret in vales.schema.json (CloudPirates-io#374)
* chore: update CHANGELOG.md for merged changes Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * [clusterpirate] fix values-schema for imagepullsecrets * [etcd] fix values-schema for imagepullsecrets * [keycloak] fix values-schema for imagepullsecrets * [mariadb] fix values-schema for imagepullsecrets * [memcached] fix values-schema for imagepullsecrets * [minio] fix values-schema for imagepullsecrets * [postgres] fix values-schema for imagepullsecrets * [rabbitmq] fix values-schema for imagepullsecrets * [redis] fix values-schema for imagepullsecrets * [timescaledb] fix values-schema for imagepullsecrets * [valkey] fix values-schema for imagepullsecrets * [zookeeper] fix values-schema for imagepullsecrets --------- Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent a67d12a commit bcc566c

29 files changed

+85
-225
lines changed

charts/clusterpirate/CHANGELOG.md

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,11 @@
11
# Changelog
22

33

4-
## 1.1.3 (2025-10-13)
5-
6-
* Fix clusterpirate (#372) ([e659f51](https://github.com/CloudPirates-io/helm-charts/commit/e659f51))
7-
8-
## 1.1.2 (2025-10-13)
9-
10-
* Fix formatting (#371) ([cf4670a](https://github.com/CloudPirates-io/helm-charts/commit/cf4670a))
11-
* Bugfix/lint workflow (#365) ([adeac21](https://github.com/CloudPirates-io/helm-charts/commit/adeac21))
12-
13-
## 1.1.1 (2025-10-13)
14-
15-
* Bugfix/lint workflow (#363) ([ce5c550](https://github.com/CloudPirates-io/helm-charts/commit/ce5c550))
16-
* Bugfix/lint workflow (#362) ([bbf7bd5](https://github.com/CloudPirates-io/helm-charts/commit/bbf7bd5))
17-
18-
## 1.1.0 (2025-10-13)
19-
20-
* Bump dependencies (#357) ([c2909cd](https://github.com/CloudPirates-io/helm-charts/commit/c2909cd))
21-
224
## 1.0.7 (2025-08-27)
235

24-
* Fix linting for values.yaml ([504ac61](https://github.com/CloudPirates-io/helm-charts/commit/504ac61))
25-
* Fix values.yaml / Chart.yaml linting issues ([043c7e0](https://github.com/CloudPirates-io/helm-charts/commit/043c7e0))
26-
* Add initial Changelogs to all Charts ([68f10ca](https://github.com/CloudPirates-io/helm-charts/commit/68f10ca))
6+
* Fix linting for values.yaml ([504ac61](https://github.com/dloewen2/helm-charts/commit/504ac61))
7+
* Fix values.yaml / Chart.yaml linting issues ([043c7e0](https://github.com/dloewen2/helm-charts/commit/043c7e0))
8+
* Add initial Changelogs to all Charts ([68f10ca](https://github.com/dloewen2/helm-charts/commit/68f10ca))
279

2810
## 1.0.6 (2025-08-26)
2911

charts/clusterpirate/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: clusterpirate
33
description: Client agent for the CloudPirates Managed Observability Platform to connect your Kubernetes cluster to our infrastructure
44
type: application
5-
version: 1.1.3
5+
version: 1.1.4
66
appVersion: "1.0.1"
77
keywords:
88
- kubernetes

charts/clusterpirate/values.schema.json

Lines changed: 7 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,10 @@
2222
},
2323
"imagePullSecrets": {
2424
"type": "array",
25-
"title": "Image Pull Secrets",
26-
"description": "Registry secret names as an array of objects",
2725
"items": {
28-
"type": "object",
26+
"type": ["string", "object"],
2927
"properties": {
30-
"name": {
31-
"type": "string",
32-
"title": "Secret Name",
33-
"description": "Name of the image pull secret"
34-
}
28+
"name": { "type": "string" }
3529
},
3630
"required": ["name"]
3731
}
@@ -60,11 +54,7 @@
6054
"type": "string",
6155
"title": "Image Pull Policy",
6256
"description": "ClusterPirate image pull policy",
63-
"enum": [
64-
"Always",
65-
"Never",
66-
"IfNotPresent"
67-
]
57+
"enum": ["Always", "Never", "IfNotPresent"]
6858
}
6959
}
7060
},
@@ -151,9 +141,7 @@
151141
"description": "Source for the environment variable value"
152142
}
153143
},
154-
"required": [
155-
"name"
156-
]
144+
"required": ["name"]
157145
}
158146
},
159147
"probes": {
@@ -258,13 +246,7 @@
258246
"type": "string",
259247
"title": "Log Level",
260248
"description": "Application logging level",
261-
"enum": [
262-
"debug",
263-
"info",
264-
"warn",
265-
"error",
266-
"fatal"
267-
]
249+
"enum": ["debug", "info", "warn", "error", "fatal"]
268250
},
269251
"healthPort": {
270252
"type": "integer",
@@ -419,7 +401,7 @@
419401
"type": "object",
420402
"title": "Valkey persistence settings",
421403
"properties": {
422-
"enabled": {
404+
"enabled": {
423405
"type": "boolean",
424406
"title": "Enable persistence"
425407
}
@@ -455,4 +437,4 @@
455437
}
456438
}
457439
}
458-
}
440+
}

charts/etcd/CHANGELOG.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,2 @@
11
# Changelog
22

3-
4-
## 0.1.1 (2025-10-10)
5-
6-
* artifact hub repository id (#333) ([36ca7c7](https://github.com/CloudPirates-io/helm-charts/commit/36ca7c7))
7-
* [etcd]: Invalid repo used (#331) ([92617cf](https://github.com/CloudPirates-io/helm-charts/commit/92617cf))
8-
9-
## 0.1.0 (2025-10-10)
10-
11-
* Initial tagged release

charts/etcd/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: etcd
33
description: etcd is a distributed reliable key-value store for the most critical data of a distributed system
44
type: application
5-
version: 0.1.2
5+
version: 0.1.3
66
appVersion: "3.6.0"
77
keywords:
88
- etcd

charts/etcd/values.schema.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,10 @@
1616
},
1717
"imagePullSecrets": {
1818
"type": "array",
19-
"title": "Global Image Pull Secrets",
20-
"description": "Global Docker registry secret names as an array",
2119
"items": {
22-
"type": "object",
20+
"type": ["string", "object"],
2321
"properties": {
24-
"name": {
25-
"type": "string"
26-
}
22+
"name": { "type": "string" }
2723
},
2824
"required": ["name"]
2925
}

charts/keycloak/CHANGELOG.md

Lines changed: 18 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1,93 +1,41 @@
11
# Changelog
22

33

4-
## 0.5.0 (2025-10-13)
5-
6-
* feat: add metrics (#368) ([cf5aba0](https://github.com/CloudPirates-io/helm-charts/commit/cf5aba0))
7-
8-
## 0.4.0 (2025-10-10)
9-
10-
* Import realm (#219) ([f7ff0cf](https://github.com/CloudPirates-io/helm-charts/commit/f7ff0cf))
11-
* add tests for openshift (#226) ([c80c98a](https://github.com/CloudPirates-io/helm-charts/commit/c80c98a))
12-
* [keycloak]: Fix invalid documentation (#283) ([59f3d3c](https://github.com/CloudPirates-io/helm-charts/commit/59f3d3c))
13-
14-
## 0.3.2 (2025-10-09)
15-
16-
* [keycloak/keycloak] Update charts/keycloak/values.yaml keycloak/keycloak to v26.4.0 (minor) (#270) ([b107e1b](https://github.com/CloudPirates-io/helm-charts/commit/b107e1b))
17-
18-
## 0.3.1 (2025-10-09)
19-
20-
* [keycloak/keycloak] Update charts/keycloak/values.yaml keycloak/keycloak to v26.3.5 (patch) (#261) ([360de40](https://github.com/CloudPirates-io/helm-charts/commit/360de40))
21-
22-
## 0.3.0 (2025-10-08)
23-
24-
* make keycloak run on openshift (#225) ([9b4f896](https://github.com/CloudPirates-io/helm-charts/commit/9b4f896))
25-
26-
## 0.2.1 (2025-10-07)
27-
28-
* default http relative path to '/' to fix argocd deployment (#221) ([bdb1946](https://github.com/CloudPirates-io/helm-charts/commit/bdb1946))
29-
30-
## 0.2.0 (2025-10-06)
31-
32-
* Add support for extra volumes, volumeMounts and initContainers (#215) ([16afcfe](https://github.com/CloudPirates-io/helm-charts/commit/16afcfe))
33-
34-
## 0.1.12 (2025-10-06)
35-
36-
37-
## 0.1.11 (2025-10-06)
38-
39-
* Allow keycloak to have a relative path (#216) ([0237457](https://github.com/CloudPirates-io/helm-charts/commit/0237457))
40-
41-
## 0.1.10 (2025-10-02)
42-
43-
44-
## 0.1.9 (2025-10-02)
45-
46-
* add topologySpreadConstraints and trafficDistribution opti… (#209) ([c777fca](https://github.com/CloudPirates-io/helm-charts/commit/c777fca))
47-
48-
## 0.1.8 (2025-09-30)
49-
50-
* Feature/command customize (#186) ([a458e15](https://github.com/CloudPirates-io/helm-charts/commit/a458e15))
51-
52-
## 0.1.7 (2025-09-29)
53-
54-
* replace deprecated 'proxy' with new proxy parameters (#183) ([d850b7b](https://github.com/CloudPirates-io/helm-charts/commit/d850b7b))
55-
564
## 0.1.6 (2025-09-26)
575

586

597
## 0.1.5 (2025-09-25)
608

61-
* add support for extra env vars from an existing secret (#158) ([263604f](https://github.com/CloudPirates-io/helm-charts/commit/263604f))
62-
* Update CHANGELOG.md ([b7572a8](https://github.com/CloudPirates-io/helm-charts/commit/b7572a8))
63-
* Update CHANGELOG.md ([245f9b6](https://github.com/CloudPirates-io/helm-charts/commit/245f9b6))
64-
* Update CHANGELOG.md ([0bf9f75](https://github.com/CloudPirates-io/helm-charts/commit/0bf9f75))
9+
* add support for extra env vars from an existing secret (#158) ([263604f](https://github.com/dloewen2/helm-charts/commit/263604f))
10+
* Update CHANGELOG.md ([b7572a8](https://github.com/dloewen2/helm-charts/commit/b7572a8))
11+
* Update CHANGELOG.md ([245f9b6](https://github.com/dloewen2/helm-charts/commit/245f9b6))
12+
* Update CHANGELOG.md ([0bf9f75](https://github.com/dloewen2/helm-charts/commit/0bf9f75))
6513

6614
## 0.1.4 (2025-09-24)
6715

68-
* Update CHANGELOG.md ([03d476e](https://github.com/CloudPirates-io/helm-charts/commit/03d476e))
69-
* Bump the correct thing ([35e7901](https://github.com/CloudPirates-io/helm-charts/commit/35e7901))
70-
* Update CHANGELOG.md ([20c19bb](https://github.com/CloudPirates-io/helm-charts/commit/20c19bb))
16+
* Update CHANGELOG.md ([03d476e](https://github.com/dloewen2/helm-charts/commit/03d476e))
17+
* Bump the correct thing ([35e7901](https://github.com/dloewen2/helm-charts/commit/35e7901))
18+
* Update CHANGELOG.md ([20c19bb](https://github.com/dloewen2/helm-charts/commit/20c19bb))
7119

7220
## 0.1.3 (2025-09-23)
7321

74-
* Update CHANGELOG.md ([68435aa](https://github.com/CloudPirates-io/helm-charts/commit/68435aa))
75-
* Fix resolving template expressions in extraobjects ([12a1cb5](https://github.com/CloudPirates-io/helm-charts/commit/12a1cb5))
22+
* Update CHANGELOG.md ([68435aa](https://github.com/dloewen2/helm-charts/commit/68435aa))
23+
* Fix resolving template expressions in extraobjects ([12a1cb5](https://github.com/dloewen2/helm-charts/commit/12a1cb5))
7624

7725
## 0.1.2 (2025-09-22)
7826

79-
* Update CHANGELOG.md ([b8adca8](https://github.com/CloudPirates-io/helm-charts/commit/b8adca8))
80-
* Fix chart version bump ([aae07b1](https://github.com/CloudPirates-io/helm-charts/commit/aae07b1))
81-
* Fix deprecated env vars warning ([50d9fa0](https://github.com/CloudPirates-io/helm-charts/commit/50d9fa0))
27+
* Update CHANGELOG.md ([b8adca8](https://github.com/dloewen2/helm-charts/commit/b8adca8))
28+
* Fix chart version bump ([aae07b1](https://github.com/dloewen2/helm-charts/commit/aae07b1))
29+
* Fix deprecated env vars warning ([50d9fa0](https://github.com/dloewen2/helm-charts/commit/50d9fa0))
8230

8331
## 0.1.1 (2025-09-19)
8432

85-
* Update CHANGELOG.md ([62e51b9](https://github.com/CloudPirates-io/helm-charts/commit/62e51b9))
86-
* add readme documentation and values.schema.json ([369448b](https://github.com/CloudPirates-io/helm-charts/commit/369448b))
87-
* Update CHANGELOG.md ([54f725e](https://github.com/CloudPirates-io/helm-charts/commit/54f725e))
88-
* chore: fix changelog ([bd9f1a8](https://github.com/CloudPirates-io/helm-charts/commit/bd9f1a8))
89-
* Update CHANGELOG.md ([2ed9b3f](https://github.com/CloudPirates-io/helm-charts/commit/2ed9b3f))
90-
* Update CHANGELOG.md ([2178148](https://github.com/CloudPirates-io/helm-charts/commit/2178148))
33+
* Update CHANGELOG.md ([62e51b9](https://github.com/dloewen2/helm-charts/commit/62e51b9))
34+
* add readme documentation and values.schema.json ([369448b](https://github.com/dloewen2/helm-charts/commit/369448b))
35+
* Update CHANGELOG.md ([54f725e](https://github.com/dloewen2/helm-charts/commit/54f725e))
36+
* chore: fix changelog ([bd9f1a8](https://github.com/dloewen2/helm-charts/commit/bd9f1a8))
37+
* Update CHANGELOG.md ([2ed9b3f](https://github.com/dloewen2/helm-charts/commit/2ed9b3f))
38+
* Update CHANGELOG.md ([2178148](https://github.com/dloewen2/helm-charts/commit/2178148))
9139

9240
## 0.1.0 (2025-09-17)
9341

charts/keycloak/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: keycloak
33
description: Open Source Identity and Access Management Solution
44
type: application
5-
version: 0.5.0
5+
version: 0.5.1
66
appVersion: "26.3.4"
77
keywords:
88
- keycloak

charts/keycloak/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
serviceAccountName: {{ include "keycloak.serviceAccountName" . }}
3030
automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}
3131
{{- with (include "keycloak.imagePullSecrets" .) }}
32-
{{ . | nindent 6 }}
32+
{{- . | nindent 6 }}
3333
{{- end }}
3434
securityContext: {{ include "common.renderPodSecurityContext" . | nindent 8 }}
3535
initContainers:

charts/keycloak/values.schema.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@
1212
"imagePullSecrets": {
1313
"type": "array",
1414
"items": {
15-
"type": "string"
16-
},
17-
"description": "Global Docker registry secret names as an array"
15+
"type": ["string", "object"],
16+
"properties": {
17+
"name": { "type": "string" }
18+
},
19+
"required": ["name"]
20+
}
1821
}
1922
}
2023
},

0 commit comments

Comments
 (0)