Skip to content

Commit 37fefd8

Browse files
authored
🔄 Sync with upstream - 29 commits (#44)
2 parents ab746bb + 2c18261 commit 37fefd8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+375
-253
lines changed

charts/clusterpirate/Chart.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ dependencies:
44
version: 2.1.0
55
- name: valkey
66
repository: oci://registry-1.docker.io/cloudpirates
7-
version: 0.10.2
8-
digest: sha256:a03991d31e746a1ca832aa9a16e2e237cb66635abc4ab6a07a94faea076c6a7b
9-
generated: "2025-11-25T13:11:09.044378374Z"
7+
version: 0.10.3
8+
digest: sha256:7378e07c9a5677166209c63fce1403282231618f7b2ffdcc133144bb990f3139
9+
generated: "2025-12-01T18:55:48.672091578Z"

charts/clusterpirate/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies:
2222
version: "2.x.x"
2323
repository: oci://registry-1.docker.io/cloudpirates
2424
- name: valkey
25-
version: "0.10.2"
25+
version: "0.10.3"
2626
repository: oci://registry-1.docker.io/cloudpirates
2727
condition: valkey.enabled
2828
icon: https://a.storyblok.com/f/143071/512x512/88dc07809a/cluster-pirate-logo.svg

charts/etcd/Chart.yaml

Lines changed: 2 additions & 5 deletions
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.3.4
5+
version: 0.4.0
66
appVersion: "3.6.5"
77
keywords:
88
- etcd
@@ -41,7 +41,4 @@ annotations:
4141
url: https://www.cloudpirates.io
4242
artifacthub.io/changes: |2
4343
- kind: changed
44-
description: " [etcd] Use http for probes (#622)"
45-
links:
46-
- name: "Commit c9d2054"
47-
url: "https://github.com/CloudPirates-io/helm-charts/commit/c9d2054"
44+
description: "Chart updated"

charts/etcd/README.md

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -84,19 +84,19 @@ cosign verify --key cosign.pub registry-1.docker.io/cloudpirates/etcd:<version>
8484
## Configuration
8585

8686
### Global Parameters
87-
| Parameter | Description | Default |
88-
| ------------------------- | ------------------------------------- | ----------------------- |
89-
| `global.imageRegistry` | Global Docker image registry override | `""` |
90-
| `global.imagePullSecrets` | Global Docker registry secret names | `[]` |
87+
| Parameter | Description | Default |
88+
| ------------------------- | ------------------------------------- | ------- |
89+
| `global.imageRegistry` | Global Docker image registry override | `""` |
90+
| `global.imagePullSecrets` | Global Docker registry secret names | `[]` |
9191

9292
### Image Configuration
9393

94-
| Parameter | Description | Default |
95-
| ------------------------- | ------------------------------------- | ----------------------- |
96-
| `image.registry` | etcd image registry | `gcr.io` |
97-
| `image.repository` | etcd image repository | `etcd-development/etcd` |
98-
| `image.tag` | etcd image tag | `v3.6.5@sha256:3397341272b9e0a6f44d7e3fc7c321c6efe6cbe82ce866b9b01d0c704bfc5bf3` |
99-
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
94+
| Parameter | Description | Default |
95+
| ------------------ | --------------------- | -------------------------------------------------------------------------------- |
96+
| `image.registry` | etcd image registry | `gcr.io` |
97+
| `image.repository` | etcd image repository | `etcd-development/etcd` |
98+
| `image.tag` | etcd image tag | `v3.6.5@sha256:3397341272b9e0a6f44d7e3fc7c321c6efe6cbe82ce866b9b01d0c704bfc5bf3` |
99+
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
100100

101101
### Common Parameters
102102

@@ -150,14 +150,15 @@ cosign verify --key cosign.pub registry-1.docker.io/cloudpirates/etcd:<version>
150150

151151
### Persistence
152152

153-
| Parameter | Description | Default |
154-
| -------------------------- | ------------------------------ | ----------------- |
155-
| `persistence.enabled` | Enable persistence using PVC | `true` |
156-
| `persistence.storageClass` | Storage class of backing PVC | `""` |
157-
| `persistence.annotations` | Annotations for the PVC | `{}` |
158-
| `persistence.size` | Size of data volume | `8Gi` |
159-
| `persistence.accessModes` | Persistent Volume Access Modes | `[ReadWriteOnce]` |
160-
| `persistence.mountPath` | Mount path for data volume | `/var/run/etcd` |
153+
| Parameter | Description | Default |
154+
| -------------------------- | ----------------------------------- | ----------------- |
155+
| `persistence.enabled` | Enable persistence using PVC | `true` |
156+
| `persistence.storageClass` | Storage class of backing PVC | `""` |
157+
| `persistence.annotations` | Annotations for the PVC | `{}` |
158+
| `persistence.labels` | Labels for persistent volume claims | `{}` |
159+
| `persistence.size` | Size of data volume | `8Gi` |
160+
| `persistence.accessModes` | Persistent Volume Access Modes | `[ReadWriteOnce]` |
161+
| `persistence.mountPath` | Mount path for data volume | `/var/run/etcd` |
161162

162163
### Resources
163164

charts/etcd/templates/statefulset.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,10 @@ spec:
209209
volumeClaimTemplates:
210210
- metadata:
211211
name: data
212+
{{- with $labels := merge (include "etcd.selectorLabels" . | fromYaml) .Values.persistence.labels .Values.podLabels }}
212213
labels:
213-
{{- include "etcd.labels" . | nindent 10 }}
214+
{{- toYaml $labels | nindent 10 }}
215+
{{- end }}
214216
{{- with .Values.persistence.annotations }}
215217
annotations:
216218
{{- toYaml . | nindent 10 }}

charts/etcd/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ persistence:
9898
storageClass: ""
9999
## @param persistence.annotations Persistent Volume Claim annotations
100100
annotations: {}
101+
## @param persistence.labels Labels for persistent volume claims
102+
labels: {}
101103
## @param persistence.size Persistent Volume size
102104
size: 8Gi
103105
## @param persistence.accessModes Persistent Volume access modes

charts/ghost/Chart.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: ghost
33
description: A simple, powerful publishing platform that allows you to share your stories with the world.
44
type: application
5-
version: 0.6.0
6-
appVersion: "6.9.1"
5+
version: 0.6.2
6+
appVersion: "6.10.0"
77
keywords:
88
- ghost
99
- blogging
@@ -45,7 +45,7 @@ annotations:
4545
url: https://www.cloudpirates.io
4646
artifacthub.io/changes: |2
4747
- kind: changed
48-
description: "Update charts/ghost/values.yaml ghost to v6.8.1 (patch) (#621)"
48+
description: "Update charts/ghost/values.yaml ghost to v6.9.3 (patch) (#684)"
4949
links:
50-
- name: "Commit a20f994"
51-
url: "https://github.com/CloudPirates-io/helm-charts/commit/a20f994"
50+
- name: "Commit 41682af"
51+
url: "https://github.com/CloudPirates-io/helm-charts/commit/41682af"

charts/ghost/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ image:
2424
## @param image.repository Nginx image repository
2525
repository: ghost
2626
## @param image.tag Nginx image tag
27-
tag: "6.9.1@sha256:8a30cacb126262887f4db101e438271ade0b51437917b8165d26b0fede72ccf2"
27+
tag: "6.10.0@sha256:7e3a906905a7893c20d60d5e1dd04f57fb8666972dcb8e2f817725dfc1814208"
2828
## @param image.pullPolicy Nginx image pull policy
2929
pullPolicy: Always
3030

charts/mariadb/Chart.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: mariadb
33
description: MariaDB is a high-performance, open-source relational database server that is a drop-in replacement for MySQL. Supports both single-node and Galera Cluster deployments.
44
type: application
5-
version: 0.8.0
5+
version: 0.9.0
66
appVersion: "12.1.2"
77
keywords:
88
- mariadb
@@ -52,7 +52,4 @@ annotations:
5252
url: https://www.cloudpirates.io
5353
artifacthub.io/changes: |2
5454
- kind: changed
55-
description: "add support for serviceaccounts (#609)"
56-
links:
57-
- name: "Commit 1e6d04f"
58-
url: "https://github.com/CloudPirates-io/helm-charts/commit/1e6d04f"
55+
description: "Chart updated"

charts/mariadb/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ For a detailed explanation of Galera parameters and usage, see [README_GALERA.md
188188
| `persistence.accessModes` | PVC Access modes | `["ReadWriteOnce"]` |
189189
| `persistence.size` | PVC Storage Request for MariaDB data volume | `8Gi` |
190190
| `persistence.annotations` | Additional custom annotations for the PVC | `{}` |
191+
| `persistence.labels` | Labels for persistent volume claims | `{}` |
191192
| `persistence.selector` | Additional labels for the PVC | `{}` |
192193

193194
### Security Context Parameters

0 commit comments

Comments
 (0)