Skip to content

Commit 353e312

Browse files
authored
Merge branch 'CloudPirates-io:main' into main
2 parents 55b0428 + 6dd10a9 commit 353e312

File tree

7 files changed

+115
-97
lines changed

7 files changed

+115
-97
lines changed

charts/mongodb/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: mongodb
33
description: MongoDB a flexible NoSQL database for scalable, real-time data management
44
type: application
5-
version: 0.3.2
5+
version: 0.3.3
66
appVersion: "8.0.13"
77
keywords:
88
- mongodb

charts/mongodb/templates/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ spec:
141141
{{- if and .Values.customUser (or .Values.customUser.name .Values.customUser.existingSecret) }}
142142
- name: custom-user-script
143143
configMap:
144-
name: mongodb-custom-user-script
144+
name: {{ include "mongodb.fullname" . }}-custom-user-script
145145
{{- end }}
146146
{{- if or .Values.config.content .Values.config.existingConfigmap }}
147147
- name: config

charts/redis/CHANGELOG.md

Lines changed: 97 additions & 93 deletions
Large diffs are not rendered by default.

charts/redis/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: redis
33
description: An open source, in-memory data structure store used as a database, cache, and message broker.
44
type: application
5-
version: 0.5.7
5+
version: 0.6.0
66
appVersion: "8.2.1"
77
keywords:
88
- redis

charts/redis/README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,21 @@ redis-cli -h my-redis -a $REDIS_PASSWORD
7070
### Common Parameters
7171

7272
| Parameter | Description | Default |
73-
| ------------------- | ----------------------------------------------------------------------- | ------------ |
73+
|---------------------| ----------------------------------------------------------------------- | ------------ |
7474
| `nameOverride` | String to partially override redis.fullname | `""` |
7575
| `fullnameOverride` | String to fully override redis.fullname | `""` |
7676
| `commonLabels` | Labels to add to all deployed objects | `{}` |
7777
| `commonAnnotations` | Annotations to add to all deployed objects | `{}` |
7878
| `architecture` | Redis architecture. Allowed values: `standalone` or `replication` | `standalone` |
7979
| `replicaCount` | Number of Redis replicas to deploy (only when architecture=replication) | `2` |
8080

81+
### Pod labels
82+
83+
| Parameter | Description | Default |
84+
| ---------------- | ------------------------------------- | ------- |
85+
| `podLabels` | Map of labels to add to the pods | `{}` |
86+
87+
8188
### Service Configuration
8289

8390
| Parameter | Description | Default |

charts/redis/templates/statefulset.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ spec:
1919
metadata:
2020
labels:
2121
{{- include "redis.selectorLabels" . | nindent 8 }}
22+
{{- with .Values.podLabels }}
23+
{{- toYaml . | nindent 8 }}
24+
{{- end }}
2225
{{- if or .Values.config.content .Values.config.existingConfigmap }}
2326
annotations:
2427
{{- if and .Values.config.content (not .Values.config.existingConfigmap) }}

charts/redis/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ architecture: standalone
3535
## For example: replicaCount: 3 creates 3 Redis instances where Sentinel manages master/replica roles
3636
replicaCount: 3
3737

38+
## @section Pod labels
39+
## @param podLabels Map of labels to add to the pods
40+
podLabels: {}
41+
3842
## @param ipFamily IP family to use for replica and sentinel announce IPs. Allowed values: auto, ipv4, ipv6
3943
## auto: Uses the first IP returned by hostname -i (default)
4044
## ipv4: Forces IPv4 address selection

0 commit comments

Comments
 (0)