Skip to content

Commit

Permalink
Merge pull request #470 from camaeel/fix-chart
Browse files Browse the repository at this point in the history
Fix broken helm chart
  • Loading branch information
k8s-ci-robot authored Aug 26, 2022
2 parents 89b46a2 + 1146ab3 commit ff5f27c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/aws-cloud-controller-manager/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: v1
name: aws-cloud-controller-manager
description: Installs Cloud Controller Manager for AWS Cloud Provider
version: 0.0.6
version: 0.0.7
appVersion: v1.23.0-alpha.0
maintainers:
- name: Nick Turner
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ spec:
spec:
tolerations: {{ toYaml ( .Values.tolerations | default .Values.tolerations ) | nindent 8 }}
nodeSelector: {{ toYaml ( .Values.nodeSelector | default .Values.nodeSelector ) | nindent 8 }}
dnsPolicy: {{ .Values.dnsPolicy }}
priorityClassName: system-node-critical
serviceAccountName: {{.Values.serviceAccountName}}
{{- if .Values.hostNetworking }}
Expand Down
5 changes: 4 additions & 1 deletion charts/aws-cloud-controller-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ resources:
# memory: 300Mi

# env -- Pod environment variables
env: {}
env: []
# securityContext -- Container Security Context.
securityContext: {}
# podSecurityContext -- Pods Security Context.
Expand All @@ -122,6 +122,9 @@ tolerations:
- key: node-role.kubernetes.io/control-plane
effect: NoSchedule

# dnsPolicy -- dnsPolicy of deamonset pods. Should be set to Default if deployed as a deamonset on control-plane nodes to resolve properly
dnsPolicy: Default

clusterRoleName : system:cloud-controller-manager

roleBindingName: cloud-controller-manager:apiserver-authentication-reader
Expand Down

0 comments on commit ff5f27c

Please sign in to comment.