Skip to content

Commit 81f0d4f

Browse files
committed
changed default values for volume, added description for resources created
1 parent 9569ee8 commit 81f0d4f

7 files changed

Lines changed: 9 additions & 3 deletions

File tree

redpanda/versions/1.0.0/templates/policy.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
kind: policy
22
name: {{ include "redpanda.name" . }}
3+
description: {{ include "redpanda.name" . }}
34
origin: default
45
bindings:
56
- permissions:

redpanda/versions/1.0.0/templates/secret-console-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
{{- $adminUser := index .Values.redpanda.auth.users 0 }}
33
kind: secret
44
name: {{ include "redpanda.name" . }}-console-config
5+
description: {{ include "redpanda.name" . }}-console-config
56
type: opaque
67
data:
78
encoding: plain

redpanda/versions/1.0.0/templates/secret-init.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
kind: secret
22
name: {{ include "redpanda.name" . }}-init
3+
description: {{ include "redpanda.name" . }}-init
34
type: opaque
45
data:
56
encoding: plain

redpanda/versions/1.0.0/templates/secret-secrets.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
kind: secret
22
name: {{ include "redpanda.name" . }}-secrets
3+
description: {{ include "redpanda.name" . }}-secrets
34
type: dictionary
45
data:
56
{{- range .Values.redpanda.auth.users }}

redpanda/versions/1.0.0/templates/workload-redpanda-cluster.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{{- include "redpanda.validateReplicas" . }}
22
kind: workload
33
name: {{ include "redpanda.clusterName" . }}
4+
description: {{ include "redpanda.clusterName" . }}
45
gvc: {{ .Values.global.cpln.gvc }}
56
tags:
67
# Brokers must resolve peer FQDNs for Raft consensus before they are Ready.

redpanda/versions/1.0.0/templates/workload-redpanda-console.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ gvc: {{ .Values.global.cpln.gvc }}
4747
---
4848
kind: workload
4949
name: {{ include "redpanda.consoleName" . }}
50+
description: {{ include "redpanda.consoleName" . }}
5051
gvc: {{ .Values.global.cpln.gvc }}
5152
tags:
5253
{{- include "redpanda.tags" . | nindent 2 }}

redpanda/versions/1.0.0/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
redpanda:
22
name: cluster
3-
image: docker.redpanda.com/redpandadata/redpanda:v26.1.9
3+
image: redpandadata/redpanda:v26.1.9
44
replicas: 3
55
multiZone: false
66
env: []
@@ -12,7 +12,7 @@ redpanda:
1212

1313
volume:
1414
initialCapacity: 10 # In GB
15-
performanceClass: high-throughput-ssd # general-purpose-ssd / high-throughput-ssd (Min 1000GB)
15+
performanceClass: general-purpose-ssd # For production workloads, switch to high-throughput-ssd (min 200GB) for higher IOPS
1616
fileSystemType: xfs # xfs / ext4
1717
# customEncryption:
1818
# enabled: true
@@ -74,7 +74,7 @@ redpanda:
7474
redpanda_console:
7575
enabled: true
7676
name: console
77-
image: docker.redpanda.com/redpandadata/console:v3.7.4
77+
image: redpandadata/console:v3.7.4
7878
cpu: 200m
7979
memory: 256Mi
8080
minCpu: 50m

0 commit comments

Comments
 (0)