File tree Expand file tree Collapse file tree 4 files changed +35
-2
lines changed Expand file tree Collapse file tree 4 files changed +35
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : warpstream-agent
3
3
description : WarpStream Agent for Kubernetes.
4
4
type : application
5
- version : 0.7.3
5
+ version : 0.8.0
6
6
appVersion : v518
7
7
icon : https://avatars.githubusercontent.com/u/132156278
8
8
home : https://docs.warpstream.com/warpstream/
Original file line number Diff line number Diff line change 1
1
Thank you for installing {{ .Chart.Name }}.
2
2
3
3
Your release is named {{ .Release.Name }}.
4
+
5
+ # CHANGELOG
6
+
7
+ ## 0.8.0
8
+
9
+ - The default replica count has been increased from 1 to 3. You can pass `--set replicas=1` to restore the previous behavior.
10
+ - Pod Disruption Budget is now supported. Pass `--set pdb.create=true` to enable it.
Original file line number Diff line number Diff line change
1
+ {{- if .Values.pdb.create }}
2
+ apiVersion : policy/v1
3
+ kind : PodDisruptionBudget
4
+ metadata :
5
+ name : {{ include "warpstream-agent.fullname" . }}
6
+ labels :
7
+ {{- include "warpstream-agent.labels" . | nindent 4 }}
8
+ spec :
9
+ {{- if .Values.pdb.minAvailable }}
10
+ minAvailable : {{ .Values.pdb.minAvailable }}
11
+ {{- end }}
12
+ {{- if .Values.pdb.maxUnavailable }}
13
+ maxUnavailable : {{ .Values.pdb.maxUnavailable }}
14
+ {{- end }}
15
+ selector :
16
+ matchLabels :
17
+ {{- include "warpstream-agent.selectorLabels" . | nindent 6 }}
18
+ {{- end }}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ imagePullSecrets: []
8
8
nameOverride : " "
9
9
fullnameOverride : " "
10
10
11
- replicas : 1
11
+ replicas : 3
12
12
13
13
serviceAccount :
14
14
# Specifies whether a service account should be created
@@ -63,6 +63,14 @@ affinity: {}
63
63
64
64
priorityClassName : " "
65
65
66
+ # Optional disruption budget
67
+ pdb :
68
+ create : false
69
+ # minimum number of pods that must still be available after the eviction
70
+ minAvailable : 1
71
+ # maximum number of pods that can be unavailable after the eviction
72
+ maxUnavailable : " "
73
+
66
74
# # list of hosts and IPs that will be injected into the pod's hosts file
67
75
hostAliases : []
68
76
# - ip: "127.0.0.1"
You can’t perform that action at this time.
0 commit comments