Skip to content

Commit

Permalink
Merge pull request #273 from nckturner/patch-1
Browse files Browse the repository at this point in the history
[helm] Command line flags can be overridden
  • Loading branch information
k8s-ci-robot authored Sep 29, 2021
2 parents ddfe0df + cff112f commit 2d0045a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
6 changes: 3 additions & 3 deletions charts/aws-cloud-controller-manager/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
apiVersion: v1
name: aws-cloud-controller-manager
description: Installs Cloud Controller Manager for AWS Cloud Provider
version: 0.0.3
version: 0.0.4
appVersion: v1.21.0-alpha.0
maintainers:
- name: Jeswin K Ninan
email: [email protected]
- name: Ayberk Yilmaz
email: yayberk@amazon.com
- name: Nick Turner
email: nic@amazon.com
---
7 changes: 4 additions & 3 deletions charts/aws-cloud-controller-manager/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ spec:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
args:
- --v=2
- --cloud-provider=aws
{{- range .Values.args }}
- {{ . }}
{{- end }}
resources:
{{- toYaml .Values.resources | nindent 12 }}

---
---
4 changes: 3 additions & 1 deletion charts/aws-cloud-controller-manager/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
namespace: "kube-system"

extraArgs: {}
args:
- --v=2
- --cloud-provider=aws

image:
repository: us.gcr.io/k8s-artifacts-prod/provider-aws/cloud-controller-manager
Expand Down

0 comments on commit 2d0045a

Please sign in to comment.