File tree 4 files changed +11
-1
lines changed
4 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
name : kube2iam
3
- version : 2.5.2
3
+ version : 2.6.0
4
4
appVersion : 0.10.9
5
5
description : Provide IAM credentials to pods based on annotations.
6
6
keywords :
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ Parameter | Description | Default
74
74
` rbac.serviceAccountName ` | existing ServiceAccount to use (ignored if rbac.create=true) | ` default `
75
75
` resources ` | pod resource requests & limits | ` {} `
76
76
` updateStrategy ` | Strategy for DaemonSet updates (requires Kubernetes 1.6+) | ` OnDelete `
77
+ ` maxUnavailable ` | Maximum number of pods to be unavailable during an update. It can be an absolute number or a percentage. | ` 1 `
77
78
` verbose ` | Enable verbose output | ` false `
78
79
` tolerations ` | List of node taints to tolerate (requires Kubernetes 1.6+) | ` [] `
79
80
` aws.secret_key ` | The value to use for AWS_SECRET_ACCESS_KEY | ` "" `
Original file line number Diff line number Diff line change @@ -127,4 +127,8 @@ spec:
127
127
{{- if semverCompare "^1.6-0" .Capabilities.KubeVersion.GitVersion }}
128
128
updateStrategy :
129
129
type : {{ .Values.updateStrategy }}
130
+ {{- if eq "RollingUpdate" .Values.updateStrategy }}
131
+ rollingUpdate :
132
+ maxUnavailable : {{ .Values.maxUnavailable }}
133
+ {{- end }}
130
134
{{- end }}
Original file line number Diff line number Diff line change @@ -102,6 +102,11 @@ resources: {}
102
102
# #
103
103
updateStrategy : OnDelete
104
104
105
+ # # Maximum number of Pods that can be unavailable during the update process
106
+ # # when using updateStrategy: RollingUpdate
107
+ # # Ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#max-unavailable
108
+ maxUnavailable : 1
109
+
105
110
verbose : false
106
111
107
112
tolerations : []
You can’t perform that action at this time.
0 commit comments