diff --git a/assets/charts/components/aws-ebs-csi-driver/.helmignore b/assets/charts/components/aws-ebs-csi-driver/.helmignore new file mode 100644 index 000000000..50af03172 --- /dev/null +++ b/assets/charts/components/aws-ebs-csi-driver/.helmignore @@ -0,0 +1,22 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/assets/charts/components/aws-ebs-csi-driver/Chart.yaml b/assets/charts/components/aws-ebs-csi-driver/Chart.yaml index 856db95aa..8df5a1e25 100644 --- a/assets/charts/components/aws-ebs-csi-driver/Chart.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/Chart.yaml @@ -1,16 +1,18 @@ apiVersion: v1 -appVersion: "0.7.0" -name: aws-ebs-csi-driver +appVersion: 0.9.0 description: A Helm chart for AWS EBS CSI Driver -version: 0.6.0 -kubeVersion: ">=1.13.0-0" home: https://github.com/kubernetes-sigs/aws-ebs-csi-driver -sources: - - https://github.com/kubernetes-sigs/aws-ebs-csi-driver keywords: - - aws - - ebs - - csi +- aws +- ebs +- csi +kubeVersion: '>=1.17.0-0' maintainers: - - name: leakingtapan - email: chengpan@amazon.com +- email: chengpan@amazon.com + name: leakingtapan +- name: krmichel + url: https://github.com/krmichel +name: aws-ebs-csi-driver +sources: +- https://github.com/kubernetes-sigs/aws-ebs-csi-driver +version: 0.9.8 diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrole-attacher.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrole-attacher.yaml index 0b9672479..e0919cec1 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrole-attacher.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrole-attacher.yaml @@ -8,7 +8,7 @@ metadata: rules: - apiGroups: [""] resources: ["persistentvolumes"] - verbs: ["get", "list", "watch", "update"] + verbs: ["get", "list", "watch", "update", "patch"] - apiGroups: [""] resources: ["nodes"] verbs: ["get", "list", "watch"] @@ -17,4 +17,7 @@ rules: verbs: ["get", "list", "watch"] - apiGroups: ["storage.k8s.io"] resources: ["volumeattachments"] - verbs: ["get", "list", "watch", "update"] + verbs: ["get", "list", "watch", "update", "patch"] + - apiGroups: [ "storage.k8s.io" ] + resources: [ "volumeattachments/status" ] + verbs: [ "patch" ] diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrole-provisioner.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrole-provisioner.yaml index 84f122a03..0fb7ded0f 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrole-provisioner.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrole-provisioner.yaml @@ -6,30 +6,33 @@ metadata: labels: {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} rules: - - apiGroups: [""] - resources: ["persistentvolumes"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: [""] - resources: ["persistentvolumeclaims"] - verbs: ["get", "list", "watch", "update"] - - apiGroups: ["storage.k8s.io"] - resources: ["storageclasses"] - verbs: ["get", "list", "watch"] - - apiGroups: [""] - resources: ["events"] - verbs: ["list", "watch", "create", "update", "patch"] - - apiGroups: ["snapshot.storage.k8s.io"] - resources: ["volumesnapshots"] - verbs: ["get", "list"] - - apiGroups: ["snapshot.storage.k8s.io"] - resources: ["volumesnapshotcontents"] - verbs: ["get", "list"] - - apiGroups: ["storage.k8s.io"] - resources: ["csinodes"] - verbs: ["get", "list", "watch"] - - apiGroups: [""] - resources: ["nodes"] - verbs: ["get", "list", "watch"] - - apiGroups: ["coordination.k8s.io"] - resources: ["leases"] - verbs: ["get", "watch", "list", "delete", "update", "create"] + - apiGroups: [ "" ] + resources: [ "persistentvolumes" ] + verbs: [ "get", "list", "watch", "create", "delete" ] + - apiGroups: [ "" ] + resources: [ "persistentvolumeclaims" ] + verbs: [ "get", "list", "watch", "update" ] + - apiGroups: [ "storage.k8s.io" ] + resources: [ "storageclasses" ] + verbs: [ "get", "list", "watch" ] + - apiGroups: [ "" ] + resources: [ "events" ] + verbs: [ "list", "watch", "create", "update", "patch" ] + - apiGroups: [ "snapshot.storage.k8s.io" ] + resources: [ "volumesnapshots" ] + verbs: [ "get", "list" ] + - apiGroups: [ "snapshot.storage.k8s.io" ] + resources: [ "volumesnapshotcontents" ] + verbs: [ "get", "list" ] + - apiGroups: [ "storage.k8s.io" ] + resources: [ "csinodes" ] + verbs: [ "get", "list", "watch" ] + - apiGroups: [ "" ] + resources: [ "nodes" ] + verbs: [ "get", "list", "watch" ] + - apiGroups: [ "coordination.k8s.io" ] + resources: [ "leases" ] + verbs: [ "get", "watch", "list", "delete", "update", "create" ] + - apiGroups: [ "storage.k8s.io" ] + resources: [ "volumeattachments" ] + verbs: [ "get", "list", "watch" ] diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrole-resizer.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrole-resizer.yaml index 5f0c758c5..9d85b97ca 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrole-resizer.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrole-resizer.yaml @@ -27,5 +27,7 @@ rules: - apiGroups: [""] resources: ["events"] verbs: ["list", "watch", "create", "update", "patch"] - + - apiGroups: [""] + resources: ["pods"] + verbs: ["get", "list", "watch"] {{- end}} diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-attacher.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-attacher.yaml index 1888a9b8b..92a8b40f8 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-attacher.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-attacher.yaml @@ -7,7 +7,7 @@ metadata: {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} subjects: - kind: ServiceAccount - name: ebs-csi-controller-sa + name: {{ .Values.serviceAccount.controller.name }} namespace: kube-system roleRef: kind: ClusterRole diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-provisioner.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-provisioner.yaml index 0fd549909..e2478b936 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-provisioner.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-provisioner.yaml @@ -7,7 +7,7 @@ metadata: {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} subjects: - kind: ServiceAccount - name: ebs-csi-controller-sa + name: {{ .Values.serviceAccount.controller.name }} namespace: kube-system roleRef: kind: ClusterRole diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-resizer.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-resizer.yaml index b23063aa1..997dc28ea 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-resizer.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-resizer.yaml @@ -8,7 +8,7 @@ metadata: {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} subjects: - kind: ServiceAccount - name: ebs-csi-controller-sa + name: {{ .Values.serviceAccount.controller.name }} namespace: kube-system roleRef: kind: ClusterRole diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-snapshot-controller.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-snapshot-controller.yaml index df4937a6c..cb4673095 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-snapshot-controller.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-snapshot-controller.yaml @@ -8,7 +8,7 @@ metadata: {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} subjects: - kind: ServiceAccount - name: ebs-snapshot-controller + name: {{ .Values.serviceAccount.snapshot.name }} namespace: kube-system roleRef: kind: ClusterRole diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-snapshotter.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-snapshotter.yaml index 6ebb1d91d..f55c38e45 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-snapshotter.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-snapshotter.yaml @@ -8,7 +8,7 @@ metadata: {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} subjects: - kind: ServiceAccount - name: ebs-csi-controller-sa + name: {{ .Values.serviceAccount.controller.name }} namespace: kube-system roleRef: kind: ClusterRole diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/controller.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/controller.yaml index e2b0a976f..24d76df06 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/controller.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/controller.yaml @@ -26,16 +26,18 @@ spec: {{- with .Values.nodeSelector }} {{ toYaml . | indent 8 }} {{- end }} - serviceAccountName: ebs-csi-controller-sa - priorityClassName: system-cluster-critical + serviceAccountName: {{ .Values.serviceAccount.controller.name }} + priorityClassName: {{ .Values.priorityClassName | default "system-cluster-critical" }} {{- with .Values.affinity }} affinity: {{ toYaml . | nindent 8 }} {{- end }} tolerations: + {{- if .Values.tolerateAllTaints }} - operator: Exists - {{- with .Values.tolerations }} + {{- end }} + {{- with .Values.tolerations }} {{ toYaml . | indent 8 }} - {{- end }} + {{- end }} containers: - name: ebs-plugin image: {{ .Values.image.repository }}:{{ .Values.image.tag }} @@ -50,6 +52,9 @@ spec: {{- if .Values.extraVolumeTags }} {{- include "aws-ebs-csi-driver.extra-volume-tags" . | nindent 12 }} {{- end }} + {{- if .Values.k8sTagClusterId }} + - --k8s-tag-cluster-id={{ .Values.k8sTagClusterId }} + {{- end }} - --logtostderr - --v=5 env: @@ -97,27 +102,35 @@ spec: {{- if .Values.enableVolumeScheduling }} - --feature-gates=Topology=true {{- end}} - - --enable-leader-election - - --leader-election-type=leases + {{- if .Values.extraCreateMetadata }} + - --extra-create-metadata + {{- end}} + - --leader-election=true + - --default-fstype=ext4 env: - name: ADDRESS value: /var/lib/csi/sockets/pluginproxy/csi.sock volumeMounts: - name: socket-dir mountPath: /var/lib/csi/sockets/pluginproxy/ + {{- with .Values.resources }} + resources: {{ toYaml . | nindent 12 }} + {{- end }} - name: csi-attacher image: {{ printf "%s:%s" .Values.sidecars.attacherImage.repository .Values.sidecars.attacherImage.tag }} args: - --csi-address=$(ADDRESS) - --v=5 - --leader-election=true - - --leader-election-type=leases env: - name: ADDRESS value: /var/lib/csi/sockets/pluginproxy/csi.sock volumeMounts: - name: socket-dir mountPath: /var/lib/csi/sockets/pluginproxy/ + {{- with .Values.resources }} + resources: {{ toYaml . | nindent 12 }} + {{- end }} {{- if .Values.enableVolumeSnapshot }} - name: csi-snapshotter image: {{ printf "%s:%s" .Values.sidecars.snapshotterImage.repository .Values.sidecars.snapshotterImage.tag }} @@ -130,6 +143,9 @@ spec: volumeMounts: - name: socket-dir mountPath: /var/lib/csi/sockets/pluginproxy/ + {{- with .Values.resources }} + resources: {{ toYaml . | nindent 12 }} + {{- end }} {{- end }} {{- if .Values.enableVolumeResizing }} - name: csi-resizer @@ -144,6 +160,9 @@ spec: volumeMounts: - name: socket-dir mountPath: /var/lib/csi/sockets/pluginproxy/ + {{- with .Values.resources }} + resources: {{ toYaml . | nindent 12 }} + {{- end }} {{- end }} - name: liveness-probe image: {{ printf "%s:%s" .Values.sidecars.livenessProbeImage.repository .Values.sidecars.livenessProbeImage.tag }} @@ -152,6 +171,9 @@ spec: volumeMounts: - name: socket-dir mountPath: /csi + {{- with .Values.resources }} + resources: {{ toYaml . | nindent 12 }} + {{- end }} volumes: - name: socket-dir emptyDir: {} diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/node.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/node.yaml index d6eadbcf2..4a08ad620 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/node.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/node.yaml @@ -31,10 +31,16 @@ spec: - fargate nodeSelector: kubernetes.io/os: linux + {{- with .Values.node.nodeSelector }} +{{ toYaml . | indent 8 }} + {{- end }} hostNetwork: true - priorityClassName: system-node-critical + serviceAccountName: {{ .Values.serviceAccount.node.name }} + priorityClassName: {{ .Values.node.priorityClassName | default "system-cluster-critical" }} tolerations: + {{- if .Values.node.tolerateAllTaints }} - operator: Exists + {{- end }} {{- with .Values.node.tolerations }} {{ toYaml . | indent 8 }} {{- end }} @@ -46,6 +52,9 @@ spec: args: - node - --endpoint=$(CSI_ENDPOINT) + {{- if .Values.volumeAttachLimit }} + - --volume-attach-limit={{ .Values.volumeAttachLimit }} + {{- end }} - --logtostderr - --v=5 env: @@ -71,6 +80,15 @@ spec: timeoutSeconds: 3 periodSeconds: 10 failureThreshold: 5 + {{- if .Values.node.resources }} + {{- with .Values.node.resources }} + resources: {{ toYaml . | nindent 12 }} + {{- end }} + {{- else }} + {{- with .Values.resources }} + resources: {{ toYaml . | nindent 12 }} + {{- end }} + {{- end }} - name: node-driver-registrar image: {{ printf "%s:%s" .Values.sidecars.nodeDriverRegistrarImage.repository .Values.sidecars.nodeDriverRegistrarImage.tag }} args: @@ -91,6 +109,15 @@ spec: mountPath: /csi - name: registration-dir mountPath: /registration + {{- if .Values.node.resources }} + {{- with .Values.node.resources }} + resources: {{ toYaml . | nindent 12 }} + {{- end }} + {{- else }} + {{- with .Values.resources }} + resources: {{ toYaml . | nindent 12 }} + {{- end }} + {{- end }} - name: liveness-probe image: {{ printf "%s:%s" .Values.sidecars.livenessProbeImage.repository .Values.sidecars.livenessProbeImage.tag }} args: @@ -98,6 +125,15 @@ spec: volumeMounts: - name: plugin-dir mountPath: /csi + {{- if .Values.node.resources }} + {{- with .Values.node.resources }} + resources: {{ toYaml . | nindent 12 }} + {{- end }} + {{- else }} + {{- with .Values.resources }} + resources: {{ toYaml . | nindent 12 }} + {{- end }} + {{- end }} volumes: - name: kubelet-dir hostPath: diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/rolebinding-snapshot-controller-leaderelection.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/rolebinding-snapshot-controller-leaderelection.yaml index 11d8ed49b..0670c7051 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/rolebinding-snapshot-controller-leaderelection.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/rolebinding-snapshot-controller-leaderelection.yaml @@ -3,17 +3,17 @@ kind: RoleBinding apiVersion: rbac.authorization.k8s.io/v1 metadata: - name: snapshot-controller-leaderelection + name: ebs-snapshot-controller-leaderelection namespace: kube-system labels: {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} subjects: - kind: ServiceAccount - name: ebs-snapshot-controller + name: {{ .Values.serviceAccount.snapshot.name }} namespace: kube-system roleRef: kind: Role - name: snapshot-controller-leaderelection + name: ebs-snapshot-controller-leaderelection apiGroup: rbac.authorization.k8s.io {{- end }} diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/serviceaccount-csi-controller.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/serviceaccount-csi-controller.yaml index 9e2cf7cc7..8ec4c4e00 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/serviceaccount-csi-controller.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/serviceaccount-csi-controller.yaml @@ -1,7 +1,8 @@ +{{- if .Values.serviceAccount.controller.create -}} apiVersion: v1 kind: ServiceAccount metadata: - name: ebs-csi-controller-sa + name: {{ .Values.serviceAccount.controller.name }} namespace: kube-system labels: {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} @@ -13,3 +14,4 @@ metadata: #annotations: # eks.amazonaws.com/role-arn: arn:aws:iam::586565787010:role/ebs-csi-role {{- end }} +{{- end -}} diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/serviceaccount-csi-node.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/serviceaccount-csi-node.yaml new file mode 100644 index 000000000..afe021855 --- /dev/null +++ b/assets/charts/components/aws-ebs-csi-driver/templates/serviceaccount-csi-node.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.node.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ .Values.serviceAccount.node.name }} + namespace: kube-system + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.node.annotations }} + annotations: {{ toYaml . | nindent 4 }} + {{- end }} +{{- end -}} diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/serviceaccount-snapshot-controller.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/serviceaccount-snapshot-controller.yaml index baa39c84e..3b5ef2bca 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/serviceaccount-snapshot-controller.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/serviceaccount-snapshot-controller.yaml @@ -1,9 +1,10 @@ {{- if .Values.enableVolumeSnapshot }} +{{- if .Values.serviceAccount.snapshot.create }} --- apiVersion: v1 kind: ServiceAccount metadata: - name: ebs-snapshot-controller + name: {{ .Values.serviceAccount.snapshot.name }} namespace: kube-system labels: {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} @@ -11,3 +12,4 @@ metadata: annotations: {{ toYaml . | nindent 4 }} {{- end }} {{- end }} +{{- end }} diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/statefulset.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/statefulset.yaml index b82460918..1a28857e1 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/statefulset.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/statefulset.yaml @@ -1,30 +1,46 @@ -{{- if .Values.enableVolumeSnapshot }} -#Snapshot controller -kind: StatefulSet -apiVersion: apps/v1 -metadata: - name: ebs-snapshot-controller - namespace: kube-system - labels: - {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} -spec: - serviceName: ebs-snapshot-controller - replicas: 1 - selector: - matchLabels: - app: ebs-snapshot-controller - {{- include "aws-ebs-csi-driver.selectorLabels" . | nindent 6 }} - template: - metadata: - labels: - app: ebs-snapshot-controller - {{- include "aws-ebs-csi-driver.labels" . | nindent 8 }} - spec: - serviceAccountName: ebs-snapshot-controller - containers: - - name: snapshot-controller - image: quay.io/k8scsi/snapshot-controller:v2.1.1 - args: - - --v=5 - - --leader-election=false -{{- end }} +{{- if .Values.enableVolumeSnapshot }} +#Snapshot controller +kind: StatefulSet +apiVersion: apps/v1 +metadata: + name: ebs-snapshot-controller + namespace: kube-system + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} +spec: + serviceName: ebs-snapshot-controller + replicas: 1 + selector: + matchLabels: + app: ebs-snapshot-controller + {{- include "aws-ebs-csi-driver.selectorLabels" . | nindent 6 }} + template: + metadata: + labels: + app: ebs-snapshot-controller + {{- include "aws-ebs-csi-driver.labels" . | nindent 8 }} + spec: + serviceAccountName: {{ .Values.serviceAccount.snapshot.name }} + nodeSelector: + kubernetes.io/os: linux + {{- with .Values.nodeSelector }} +{{ toYaml . | indent 8 }} + {{- end }} + priorityClassName: {{ .Values.priorityClassName | default "system-cluster-critical" }} + {{- with .Values.affinity }} + affinity: {{ toYaml . | nindent 8 }} + {{- end }} + tolerations: + {{- if .Values.tolerateAllTaints }} + - operator: Exists + {{- end }} + {{- with .Values.tolerations }} +{{ toYaml . | indent 8 }} + {{- end }} + containers: + - name: snapshot-controller + image: {{ printf "%s:%s" .Values.snapshotController.repository .Values.snapshotController.tag }} + args: + - --v=5 + - --leader-election=false +{{- end }} diff --git a/assets/charts/components/aws-ebs-csi-driver/templates/storageclass.yaml b/assets/charts/components/aws-ebs-csi-driver/templates/storageclass.yaml index c3b6f4789..3f9db8ad0 100644 --- a/assets/charts/components/aws-ebs-csi-driver/templates/storageclass.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/templates/storageclass.yaml @@ -1,11 +1,14 @@ -### Lokomotive specific addition. +{{- range .Values.storageClasses }} kind: StorageClass apiVersion: storage.k8s.io/v1 metadata: - name: ebs-sc -{{- if .Values.enableDefaultStorageClass }} - annotations: - storageclass.kubernetes.io/is-default-class: "true" -{{- end }} + name: {{ .name }} + {{- if .annotations }} + annotations: {{- .annotations | toYaml | trim | nindent 4 }} + {{- end }} + {{- if .labels }} + labels: {{- .labels | toYaml | trim | nindent 4 }} + {{- end }} provisioner: ebs.csi.aws.com -volumeBindingMode: WaitForFirstConsumer +{{ omit (dict "volumeBindingMode" "WaitForFirstConsumer" | merge .) "name" "annotations" "labels" | toYaml }} +{{- end }} diff --git a/assets/charts/components/aws-ebs-csi-driver/values.yaml b/assets/charts/components/aws-ebs-csi-driver/values.yaml index 409cb4e29..f639bf089 100644 --- a/assets/charts/components/aws-ebs-csi-driver/values.yaml +++ b/assets/charts/components/aws-ebs-csi-driver/values.yaml @@ -5,29 +5,33 @@ replicaCount: 2 image: - repository: amazon/aws-ebs-csi-driver - tag: "v0.6.0" + repository: k8s.gcr.io/provider-aws/aws-ebs-csi-driver + tag: "v0.9.0" pullPolicy: IfNotPresent sidecars: provisionerImage: - repository: quay.io/k8scsi/csi-provisioner - tag: "v1.5.0" + repository: k8s.gcr.io/sig-storage/csi-provisioner + tag: "v2.0.2" attacherImage: - repository: quay.io/k8scsi/csi-attacher - tag: "v1.2.0" + repository: k8s.gcr.io/sig-storage/csi-attacher + tag: "v3.0.0" snapshotterImage: - repository: quay.io/k8scsi/csi-snapshotter - tag: "v2.1.1" + repository: k8s.gcr.io/sig-storage/csi-snapshotter + tag: "v3.0.3" livenessProbeImage: - repository: quay.io/k8scsi/livenessprobe - tag: "v1.1.0" + repository: k8s.gcr.io/sig-storage/livenessprobe + tag: "v2.1.0" resizerImage: - repository: quay.io/k8scsi/csi-resizer - tag: "v0.3.0" + repository: k8s.gcr.io/sig-storage/csi-resizer + tag: "v1.0.0" nodeDriverRegistrarImage: - repository: quay.io/k8scsi/csi-node-driver-registrar - tag: "v1.1.0" + repository: k8s.gcr.io/sig-storage/csi-node-driver-registrar + tag: "v2.0.1" + +snapshotController: + repository: k8s.gcr.io/sig-storage/snapshot-controller + tag: "v3.0.3" imagePullSecrets: [] nameOverride: "" @@ -36,7 +40,7 @@ fullnameOverride: "" podAnnotations: {} # True if enable volume scheduling for dynamic volume provisioning -enableVolumeScheduling: false +enableVolumeScheduling: true # True if enable volume resizing enableVolumeResizing: false @@ -44,7 +48,11 @@ enableVolumeResizing: false # True if enable volume snapshot enableVolumeSnapshot: false -resources: {} +# The "maximum number of attachable volumes" per node +volumeAttachLimit: "" + +resources: + {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little # resources, such as Minikube. If you do want to specify resources, uncomment the following @@ -56,10 +64,10 @@ resources: {} # cpu: 100m # memory: 128Mi +priorityClassName: "" nodeSelector: {} - +tolerateAllTaints: true tolerations: [] - affinity: {} # Extra volume tags to attach to each dynamically provisioned volume. @@ -69,6 +77,12 @@ affinity: {} # key2: value2 extraVolumeTags: {} +# If set, add pv/pvc metadata to plugin create requests as parameters. +extraCreateMetadata: false + +# ID of the Kubernetes cluster used for tagging provisioned EBS volumes (optional). +k8sTagClusterId: "" + # AWS region to use. If not specified then the region will be looked up via the AWS EC2 metadata # service. # --- @@ -76,15 +90,43 @@ extraVolumeTags: {} region: "" node: + priorityClassName: "" + nodeSelector: {} podAnnotations: {} + tolerateAllTaints: true tolerations: [] + resources: {} serviceAccount: controller: + create: true # A service account will be created for you if set to true. Set to false if you want to use your own. + name: ebs-csi-controller-sa # Name of the service-account to be used/created. annotations: {} snapshot: + create: true + name: ebs-snapshot-controller + annotations: {} + node: + create: true + name: ebs-csi-node-sa annotations: {} # Lokomotive specific addition. # False if you want to use a different storage option, e.g. OpenEBS enableDefaultStorageClass: true + +storageClasses: [] +# Add StorageClass resources like: +# - name: ebs-sc +# # annotation metadata +# annotations: +# storageclass.kubernetes.io/is-default-class: "true" +# # label metadata +# labels: +# my-label-is: supercool +# # defaults to WaitForFirstConsumer +# volumeBindingMode: WaitForFirstConsumer +# # defaults to Delete +# reclaimPolicy: Retain +# parameters: +# encrypted: "true" diff --git a/docs/configuration-reference/components/aws-ebs-csi-driver.md b/docs/configuration-reference/components/aws-ebs-csi-driver.md index 5a73a435d..5d19b2559 100644 --- a/docs/configuration-reference/components/aws-ebs-csi-driver.md +++ b/docs/configuration-reference/components/aws-ebs-csi-driver.md @@ -25,10 +25,27 @@ Sample config: ```hcl # aws-ebs-csi-driver.lokocfg component "aws-ebs-csi-driver" { - enable_default_storage_class = true - enable_volume_scheduling = true - enable_volume_resizing = true - enable_volume_snapshot = true + enable_default_storage_class = true + enable_volume_scheduling = true + enable_volume_resizing = true + enable_volume_snapshot = true + + node_affinity { + key = "kubernetes.io/hostname" + operator = "In" + + # If the `operator` is set to `"In"`, `values` should be specified. + values = [ + "ip-10-0-19-203", + ] + } + + tolerations { + key = "lokomotive.io/role" + operator = "Equal" + value = "storage" + effect = "NoSchedule" + } } ``` @@ -36,12 +53,14 @@ component "aws-ebs-csi-driver" { Table of all the arguments accepted by the component. -| Argument | Description | Default | Type | Required | -|--------------------------------|-------------------------------------------------------------------------------|---------|------|----------| -| `enable_default_storage_class` | Use the storage class provided by the component as the default storage class. | true | bool | false | -| `enable_volume_scheduling` | Provision EBS volumes using PersistentVolumeClaim(PVC) dynamically. | true | bool | false | -| `enable_volume_resizing` | Expand the volume size after the initial provisioning. | true | bool | false | -| `enable_volume_snapshot` | Create Volume snapshots from an existing EBS volume for backup and restore. | true | bool | false | +| Argument | Description | Default | Type | Required | +|--------------------------------|-------------------------------------------------------------------------------------------------------|---------------------------------------|------------------------------------------------------------------------------------------------------------------|----------| +| `enable_default_storage_class` | Use the storage class provided by the component as the default storage class. | `true` | bool | false | +| `enable_volume_scheduling` | Provision EBS volumes using PersistentVolumeClaim(PVC) dynamically. | `true` | bool | false | +| `enable_volume_resizing` | Expand the volume size after the initial provisioning. | `true` | bool | false | +| `enable_volume_snapshot` | Create Volume snapshots from an existing EBS volume for backup and restore. | `true` | bool | false | +| `node_affinity` | Node affinity for deploying the EBS CSI controller and EBS Snapshot controller pods. | - | `list(object({key = string, operator = string, values = list(string)}))` | false | +| `tolerations` | Tolerations that the EBS CSI Node, EBS CSI controller and EBS Snapshot controller pods will tolerate. | `tolerations { operator = "Exists" }` | `list(object({key = string, effect = string, operator = string, value = string, toleration_seconds = string }))` | false | ## Applying diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index 2876aeb66..304961089 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -29,12 +29,19 @@ var vfsgenAssets = func() http.FileSystem { name: "aws-ebs-csi-driver", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), }, + "/charts/components/aws-ebs-csi-driver/.helmignore": &vfsgen۰CompressedFileInfo{ + name: ".helmignore", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 342, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\xc1\x6a\x23\x31\x0c\x86\xef\x7a\x8a\x7f\x99\xcb\xee\xb0\x78\x1e\x22\xd9\xc3\x9e\x5a\x48\xc9\xb5\x78\x66\x14\x5b\x89\xc7\x36\x96\x26\x69\x7b\xe8\xb3\x97\x24\x84\xf6\xf2\x81\x3e\x24\xf1\x75\x78\xf6\x66\xdc\xb2\xc2\x0a\x24\xe4\xd2\x18\x97\xc8\x19\xe3\x2a\x69\x96\x1c\x50\xfd\x74\xf2\x81\xd5\x51\x87\x97\x28\x0a\x5d\x6b\x2d\xcd\x14\x1a\x39\x25\x84\x54\x46\x2c\xde\xa6\x28\x39\xfc\x45\xe3\xe4\x4d\xce\x8c\xea\x2d\xfe\xf0\x3e\xcf\xd4\x21\x73\xf0\x26\x25\xe3\x77\x6d\x7c\x90\x37\x9e\x71\x11\x8b\xf8\xf5\xc7\xe1\x29\xa7\x77\x94\x7c\xbb\xbc\x26\xa1\x72\x43\x92\xcc\x8e\xdc\x76\xf7\xba\xb3\xd2\x98\x3a\x6c\xca\xb2\x94\x8c\xfd\x66\x87\x59\x9a\x92\x0b\x62\xc3\x8d\xf7\x7c\x72\xe3\x47\x1b\x6e\x7c\x88\x18\x86\x2b\x1e\xa3\x9e\xf3\xf0\xfd\x68\xf4\xd3\x69\xad\x38\x48\x62\xa5\xde\xe9\xa5\x52\xef\x46\x7f\xa2\xde\xd9\x52\xa9\xff\xa4\x0e\x7b\xdf\xa4\xac\x8a\xff\xdb\x7f\x4a\xae\xb6\x72\xe4\xc9\xc8\xc9\xcc\x7e\xb8\xef\xb5\x72\x24\x77\xd6\xa9\xcc\x3c\xd0\x57\x00\x00\x00\xff\xff\xf5\x89\xaa\x2d\x56\x01\x00\x00"), + }, "/charts/components/aws-ebs-csi-driver/Chart.yaml": &vfsgen۰CompressedFileInfo{ name: "Chart.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 378, + uncompressedSize: 416, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x90\x4d\x4b\xf4\x40\x10\x84\xef\xf3\x2b\x9a\xbd\xcf\x64\x96\x17\x5e\x21\xa0\xb8\x7e\x80\x9e\x03\x7a\xee\x4c\xda\xa4\x49\xe6\x83\xe9\x49\x82\xfe\x7a\xc9\x66\xd5\x8b\x27\x4f\x45\x43\xd5\x53\x45\x63\xe2\x17\xca\xc2\x31\xd4\xb0\x1c\x15\xa6\xf4\x7d\x1e\xac\xb9\x32\xf6\xa0\x02\x7a\xaa\x01\x57\xd1\xd4\x8a\x76\xc2\xba\xcb\xbc\x50\x56\x1d\x89\xcb\x9c\xca\xd9\x7d\x82\x27\x9a\x3c\xb8\x01\x73\x81\xb7\x98\xe1\xf4\xda\xc0\xe3\x5d\x03\xf7\xcd\x33\x3c\xec\x81\xe5\x0b\x6d\xcd\x7f\x63\xd5\x38\xb7\xf4\xd3\x76\x73\x7d\x34\xc7\x7f\xc6\x6a\x7b\x50\x43\xdc\x2a\x87\x52\x92\xd4\x55\xd5\x73\x19\xe6\xd6\xb8\xe8\xab\x2d\x92\x03\x15\x12\x2d\xdc\x4b\xf5\xcb\x2a\x89\x73\x76\x24\xb5\x02\xd0\x7f\x44\x8c\xf4\xbe\xc6\xdc\x5d\x18\xb8\xca\x59\xa9\xdd\xd5\x09\x2b\x8f\x1c\x0a\x72\xa0\x7c\x31\xed\x4f\x9a\x08\x47\x0e\x7d\xc1\x84\x41\x01\x00\x90\x47\x9e\x6a\x70\x03\x85\x3e\x61\xb8\x45\x8f\x1f\x31\x6c\x3b\xd4\x67\x00\x00\x00\xff\xff\xa1\x6b\x72\x05\x7a\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x90\xbb\x4e\xc3\x40\x10\x45\xfb\xfd\x8a\xe9\x52\xad\xed\x54\x80\x25\x10\xe1\x21\x41\x1d\x09\xea\xf1\x66\xf0\x8e\xec\x7d\x68\x66\x1d\x0b\xbe\x1e\xd9\x81\x88\x22\x15\xcd\x4a\x7b\x35\x47\x3a\xf7\x62\xe6\x37\x12\xe5\x14\x5b\x38\x6e\x0d\xe6\x7c\xfe\x36\xd5\x4d\xd5\x98\x03\xa9\x13\xce\x65\x8d\x76\xf0\x42\x63\x00\xe7\x51\x0a\x7c\x24\x81\xdd\xfb\x1e\x9e\x1f\xf6\xf0\xb8\x7f\x85\x27\xe1\x23\x89\xf1\x29\x50\x0b\xbe\x94\xac\x6d\x5d\xf7\x5c\xfc\xd4\x55\x2e\x85\x7a\x98\x3a\x92\x48\x85\xd4\x2a\xf7\x5a\xe3\xac\x96\x3a\xb5\x4e\xd9\x1e\x4e\xec\x40\x9f\x73\x92\x83\xb6\xc6\x02\xce\x6a\x2c\x50\xb7\xbc\x4e\xd9\x2c\xf8\xd9\x6d\x73\x77\xbb\xad\xb6\x57\x55\x63\x9b\x8d\x09\xc8\xb1\x20\x47\x92\x15\xa4\x80\x3c\xb6\xe0\x3c\xc5\x3e\x63\xbc\xc7\x80\x5f\x29\x2e\x0a\x06\x20\xe2\x62\x37\x12\x0e\x1c\xfb\x82\x19\xa3\xb1\x3f\xe1\x20\x81\x9d\xa7\xd1\x00\x4c\x32\x5e\xae\xf0\x7b\x72\x22\x2e\x34\xd0\x34\x89\xa3\xd5\xe3\x7f\x13\x1c\xff\xce\x7f\x6d\xbe\x03\x00\x00\xff\xff\x06\x93\x3c\x98\xa0\x01\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/crds": &vfsgen۰DirInfo{ name: "crds", @@ -82,23 +89,23 @@ var vfsgenAssets = func() http.FileSystem { "/charts/components/aws-ebs-csi-driver/templates/clusterrole-attacher.yaml": &vfsgen۰CompressedFileInfo{ name: "clusterrole-attacher.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 593, + uncompressedSize: 716, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x91\x31\x4f\xf3\x30\x10\x40\xf7\xfc\x8a\x53\xe6\xcf\xf9\x84\xc4\x80\xb2\x32\xb0\x33\xb0\x20\x86\x8b\x7d\xb4\xa7\x3a\xe7\xe8\xee\x9c\x22\x4a\xff\x3b\x4a\xd2\xb1\x12\x85\xc9\x96\xf5\xfc\x9e\x7c\x0e\x21\x34\x07\x96\xd4\xc3\x63\xae\xe6\xa4\xcf\x25\x53\x83\x13\xbf\x90\x1a\x17\xe9\x41\x07\x8c\x1d\x56\xdf\x17\xe5\x4f\x74\x2e\xd2\x1d\x1e\xac\xe3\xf2\x7f\xbe\x6b\x46\x72\x4c\xe8\xd8\x37\x00\x82\x23\xf5\x40\x83\x05\xfa\x70\x52\xc1\x1c\xd0\x1d\xe3\x9e\x34\xe8\x62\x05\xc8\x38\x50\xb6\x05\x06\x38\x9d\x02\xb0\xc4\x5c\x13\x41\x8b\x47\x0b\xcb\xcd\x68\x1c\x92\xf2\x4c\xda\x6d\x6c\x0b\x1d\x7c\x81\xb0\x24\x12\x87\x7b\x38\x9f\x1b\xad\x99\x56\x47\x00\x9c\xf8\x49\x4b\x9d\xac\x87\xd7\xb6\x7d\x5b\xbd\x4a\x56\xaa\x46\x5a\xcf\xa6\xe5\x15\xe6\x24\x3e\x97\x5c\x47\xb2\x0b\x34\x93\x0e\x2b\xb0\x23\x6f\xff\x41\x9b\xd9\xd6\xf5\x88\x1e\xf7\xcb\xa6\x4e\x09\x9d\x56\xfa\x86\x8c\x94\x74\xa3\xfa\x8a\x30\x1a\x77\xe6\x45\x71\x47\x97\xc9\x5e\x4b\x44\xe3\xa5\xc2\xf2\x5e\xfe\x5c\xfa\xb9\xb2\x4d\x69\xfb\xb6\x91\xc4\x7f\x3f\xaf\xef\x00\x00\x00\xff\xff\x93\xfa\xc2\x2c\x51\x02\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\xb1\x6e\xe3\x30\x0c\x86\x77\x3f\x05\xe1\xf9\xe4\xe0\x80\x1b\x0e\x5e\x3b\x74\xef\xd0\xa5\xc8\x40\x4b\x6c\x42\x44\x96\x0c\x92\x72\x8a\xa6\x79\xf7\x42\x4e\xb2\x34\x01\x1a\x14\x9d\x44\x10\x9f\xfe\x8f\xa2\x9c\x73\xcd\x8e\x53\xe8\xe1\x21\x16\x35\x92\xa7\x1c\xa9\xc1\x89\x9f\x49\x94\x73\xea\x41\x06\xf4\x1d\x16\xdb\x66\xe1\x77\x34\xce\xa9\xdb\xfd\xd7\x8e\xf3\x6a\xfe\xdb\x8c\x64\x18\xd0\xb0\x6f\x00\x12\x8e\xd4\x03\x0d\xea\xe8\xcd\x48\x12\x46\x87\x66\xe8\xb7\x24\x4e\x6a\x2a\x40\xc4\x81\xa2\x56\x18\xe0\x70\x70\xc0\xc9\xc7\x12\x08\x5a\xdc\xab\xab\x37\xbd\xb2\x0b\xc2\x33\x49\x77\x62\x5b\xe8\xe0\x03\x12\xa7\x40\xc9\xe0\x1f\x1c\x8f\x8d\x94\x48\x4b\x86\x03\x9c\xf8\x51\x72\x99\xb4\x87\x97\xb6\x5d\x2f\xb9\x42\x9a\x8b\x78\x5a\x7a\x53\x7d\x85\x1a\x25\x9b\x73\x2c\x23\xe9\x19\x9a\x49\x86\x05\xd8\x90\xb5\x7f\xa0\x8d\xac\xcb\xb9\x47\xf3\xdb\x5a\x94\x29\xa0\x51\xad\xa6\xa5\xb5\xbe\xcf\x97\x72\xb8\xd3\x71\x23\xd0\x2b\x77\x6a\x59\x70\x43\xe7\x15\xdf\x52\x78\xe5\x6a\xe1\xf4\x9a\x7f\x6c\xfa\xde\x72\x5a\xd7\xe9\xff\x46\x4a\xf6\x8b\x8b\x83\xaf\x7a\xb8\xf6\xc3\xf5\x00\x2b\x35\xb4\xa2\x17\xfa\x32\xc8\xc5\x03\xeb\xe6\x33\x00\x00\xff\xff\xed\x68\x00\x14\xcc\x02\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/clusterrole-provisioner.yaml": &vfsgen۰CompressedFileInfo{ name: "clusterrole-provisioner.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1145, + uncompressedSize: 1312, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x3f\x8f\xd4\x30\x10\xc5\xfb\x7c\x8a\x51\xea\x73\x10\x12\x05\x4a\x4b\x41\x4f\x41\x83\xae\x98\xd8\xa3\xdb\xd1\x39\xb6\x35\x33\xce\x21\x96\xfd\xee\x28\xc1\x20\x10\xd9\x3f\xe2\xb6\x8a\x15\xbd\x79\x3f\x3d\xfb\x8d\x73\xae\x7b\xe6\x14\x46\xf8\x10\xab\x1a\xc9\xa7\x1c\xa9\xc3\xc2\x9f\x49\x94\x73\x1a\x41\x26\xf4\x03\x56\x3b\x64\xe1\x6f\x68\x9c\xd3\xf0\xfc\x5e\x07\xce\x6f\x96\xb7\xdd\x4c\x86\x01\x0d\xc7\x0e\x20\xe1\x4c\x23\xd0\xa4\x8e\xbe\x1a\x49\xc2\xe8\x8a\xe4\x85\x57\x1b\x12\x27\xab\x31\x40\xc4\x89\xa2\xae\x7a\x80\xe3\xd1\x01\x27\x1f\x6b\x20\xe8\xf1\x45\xdd\x3a\xec\x95\x5d\x10\x5e\x48\x86\x9f\xda\x1e\x06\xf8\x0e\x89\x53\xa0\x64\xf0\x0e\x4e\xa7\x4e\x6a\xa4\xcd\xc3\x01\x16\xfe\x28\xb9\x16\x1d\xe1\x4b\xdf\x3f\x6e\xbe\x42\x9a\xab\x78\xda\xfe\x95\x35\x88\x1a\x25\x5b\x72\xac\x33\x69\x13\x2d\x24\xd3\x26\x78\x22\xeb\x1f\xa0\x8f\xac\xdb\xf7\x05\xcd\x1f\xd6\x83\x17\x42\xa3\xf5\x14\x28\x92\xd1\x36\xf7\x1f\x40\x1f\x91\xe7\x9b\xa9\xb5\x04\xdc\x67\xa9\x65\xc1\x27\x6a\xb7\xbf\x47\x6e\x0a\x1f\x51\xf5\xc6\x9c\x37\x66\xa2\x85\x92\xfd\xe3\x78\xe1\xca\x5a\x8c\x07\xe8\xcb\x39\x8e\x26\x2c\x7a\xc8\x36\x5c\x0f\xd6\x5e\xae\x0d\x5c\x4c\x76\x4f\x90\xcf\xc9\xf6\x72\x5f\xe3\x5d\xc5\x78\xe5\x94\xc3\x7d\x9f\xe8\x55\x86\x3e\x67\x09\x9c\xfe\x5c\xef\x3d\x46\x24\x3c\x5f\xac\xdf\x2d\xf8\x45\x6b\x6b\xf3\x57\x1b\x5a\x43\x1e\xbb\x1f\x01\x00\x00\xff\xff\x8c\xe9\x88\xd7\x79\x04\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\xbf\x8e\xd6\x30\x10\xc4\xfb\x3c\xc5\x2a\xf5\x39\x08\x89\x02\xa5\xa5\xa0\xa7\xa0\x41\x14\x1b\x7b\x75\x59\x9d\x63\x5b\xbb\xeb\x1c\xe2\xb8\x77\x47\xf9\x92\x43\x87\x94\xef\x2f\x5c\x15\x2b\x1a\xcf\x4f\xb3\xb3\x89\x73\xae\x79\xe0\x14\x7a\xf8\x14\xab\x1a\xc9\x97\x1c\xa9\xc1\xc2\x5f\x49\x94\x73\xea\x41\x06\xf4\x1d\x56\x1b\xb3\xf0\x4f\x34\xce\xa9\x7b\xf8\xa8\x1d\xe7\x77\xf3\xfb\x66\x22\xc3\x80\x86\x7d\x03\x90\x70\xa2\x1e\x68\x50\x47\x3f\x8c\x24\x61\x74\x45\xf2\xcc\x8b\x0d\x89\x93\xc5\x18\x20\xe2\x40\x51\x17\x3d\xc0\xd3\x93\x03\x4e\x3e\xd6\x40\xd0\xe2\xa3\xba\xe5\xb2\x57\x76\x41\x78\x26\xe9\x56\x6d\x0b\x1d\xfc\x82\xc4\x29\x50\x32\xf8\x00\xcf\xcf\x8d\xd4\x48\x07\x0f\x07\x58\xf8\xb3\xe4\x5a\xb4\x87\x6f\xd0\xb6\xf0\xfd\xe0\x2c\xa4\xb9\x8a\xa7\xf5\x6d\x59\xb2\xa8\x51\xb2\x39\xc7\x3a\x91\xbe\xc8\x66\x92\x61\x95\xdc\x93\xb5\x77\xd0\x46\xd6\xc3\xf3\x11\xcd\x8f\xcb\xc1\x0b\xa1\xd1\x72\x0a\x14\xc9\x68\xbd\x79\x1b\xd6\x47\xe4\xe9\x0a\x76\x2d\x01\x8f\x11\xd5\xb2\xe0\x3d\x6d\x55\xec\xf3\x37\x8d\x8f\xa8\x7a\x71\xe6\x2b\xf2\xd1\x4c\xc9\x76\x7c\x4f\x0c\x71\x8b\x74\x07\x6d\x39\x4e\xd3\x84\x45\xc7\x6c\xdd\x25\x21\xb7\x46\xb7\x2b\x67\x52\xfe\x6f\x9c\xcf\xc9\xf6\x67\x70\x9e\x7a\x01\xcc\x2b\xa7\x1c\xde\xa2\xba\x7f\xb6\xf5\x39\x4b\xe0\xf4\xfa\x7f\xb0\x4f\x8a\x84\xa7\x96\xef\xcf\x8e\xbc\x30\xb7\xcf\xec\xaf\x5d\xd9\xf6\xe7\xe6\x39\xae\xa5\xa1\x19\xfa\x71\x3a\xdf\xd7\xeb\xe4\xbf\x03\x00\x00\xff\xff\x8f\xaa\xed\xb9\x20\x05\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/clusterrole-resizer.yaml": &vfsgen۰CompressedFileInfo{ name: "clusterrole-resizer.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 942, + uncompressedSize: 1021, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\xb1\x8e\xdc\x3c\x0c\x84\x7b\x3f\x05\xe1\xbf\x3d\xf9\xf0\x03\x29\x82\x6d\x53\xa4\x3f\x04\xdb\x04\x29\x68\x79\x76\x2d\x9c\x2c\x39\x24\xe5\x0d\xee\xb2\xef\x1e\x48\x31\x52\x64\x0f\xc1\x02\x57\xd9\x20\xc7\xdf\x70\x4c\xe9\xf5\xd5\x51\x38\xd1\x70\xe4\x58\xa0\x03\x12\x8f\x11\xc7\x1c\xcb\x82\x27\x68\x78\x09\xe9\x4c\xd7\x6b\xe7\x9c\xeb\x9e\x43\x9a\x0e\xf4\x29\x16\x35\xc8\x53\x8e\xe8\x78\x0d\x47\x88\x86\x9c\x0e\x24\x23\xfb\x81\x8b\xcd\x59\xc2\x0b\x5b\xc8\x69\x78\xfe\xa8\x43\xc8\x8f\xdb\xff\xdd\x02\xe3\x89\x8d\x0f\x1d\x51\xe2\x05\x07\xc2\xa8\x0e\x3f\x0c\x92\x38\x3a\xa9\x4e\x10\x27\x15\x4a\x14\x79\x44\xd4\xaa\x25\x6a\xf3\x25\x1f\xcb\x04\xea\xf9\xa2\xae\x7e\xe8\x35\xb8\x49\xc2\x06\x19\x7e\x6b\x7b\x1a\xe8\x27\xa5\x90\x26\x24\xa3\x0f\x75\x62\x29\x11\x8d\xf1\x1f\x7d\x99\x41\xa7\x1c\x63\xbe\xd4\x34\xb5\x41\x3a\xe7\x12\x27\x1a\x41\x25\xf9\xbc\x2c\x48\x86\x89\x4e\x59\x68\x8d\xe5\x1c\x92\x92\xcd\x6c\x24\xf8\x5e\x82\x80\x14\x5e\x60\xda\x68\x4d\x24\x79\x0b\x35\x77\x48\xe7\xa1\x55\x1d\xf1\x1a\x3e\x4b\x2e\xab\x1e\xe8\x6b\xdf\x7f\x6b\x55\x22\x81\xe6\x22\x1e\xad\xba\x63\xfe\x34\x37\xc8\xd8\x1a\x67\x58\xff\x40\x7d\x0c\xda\x9e\x17\x36\x3f\x37\xd5\x5b\xd8\xbf\xa0\x6b\xdd\x80\x1a\x92\x6d\x6d\x6d\xba\x8b\xfe\x0d\x7f\xa0\xbe\xac\x13\x1b\xea\xdb\xfa\x1e\x3f\x1f\x39\x2c\xf7\x99\xbe\xcb\xe1\x51\x8d\xad\xdc\x18\xdd\x91\x42\x2d\x0b\x9f\xb1\x9f\xc7\xb7\x1c\x77\x85\x8f\xac\x7a\xe7\x0f\xbc\x33\x0b\x36\x24\xbb\x21\xde\xec\xc2\x0b\xf6\x14\xb7\x79\xba\x7a\x07\x90\xa6\xeb\xb5\xfb\x15\x00\x00\xff\xff\x8f\x3d\xa1\x84\xae\x03\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x31\x6f\xdc\x30\x0c\x85\x77\xff\x0a\xc2\x5d\x23\x07\x05\x3a\x14\xb7\x76\xe8\x1e\x14\x59\x8a\x0e\xb4\xc4\xb3\x89\xc8\x92\x4b\x52\xbe\x22\xe9\xfd\xf7\x42\xaa\xd1\xa1\x17\x14\x46\x33\xd9\x20\x9f\xbf\xc7\x67\x4a\x2f\x2f\x0e\xf8\x0c\xc3\x23\xc6\x42\x3a\x50\xc2\x31\xd2\x63\x8e\x65\xa1\x07\x52\x7e\xe6\x34\xc1\xf5\xda\x39\xe7\xba\x27\x4e\xe1\x04\x9f\x62\x51\x23\x79\xc8\x91\x3a\x5c\xf9\x91\x44\x39\xa7\x13\xc8\x88\x7e\xc0\x62\x73\x16\x7e\x46\xe3\x9c\x86\xa7\x8f\x3a\x70\xbe\xdf\xde\x77\x0b\x19\x06\x34\x3c\x75\x00\x09\x17\x3a\x01\x8d\xea\xe8\x87\x91\x24\x8c\x4e\xaa\x13\x89\x93\x0a\x05\x88\x38\x52\xd4\xaa\x05\x68\xf3\x25\x1f\x4b\x20\xe8\xf1\xa2\xae\x7e\xe8\x95\x5d\x10\xde\x48\x86\xdf\xda\x1e\x06\xf8\x09\x89\x53\xa0\x64\xf0\xa1\x4e\x2c\x25\x52\x63\xbc\x83\x2f\x33\xc1\x39\xc7\x98\x2f\x35\x4d\x6d\x80\xce\xb9\xc4\x00\x23\x41\x49\x3e\x2f\x0b\x25\xa3\x00\xe7\x2c\xb0\xc6\x32\x71\x52\xb0\x19\x0d\x84\xbe\x17\x16\x02\x25\x2f\x64\xda\x68\x4d\x24\x79\xe3\x9a\x9b\xd3\x34\xb4\xaa\x03\x5c\xf9\xb3\xe4\xb2\xea\x09\xbe\xf6\xfd\xb7\x56\x05\x10\xd2\x5c\xc4\x53\xab\xee\x98\x3f\xcd\x8d\x64\x6c\x8d\x89\xac\xbf\x83\x3e\xb2\xb6\xe7\x05\xcd\xcf\x4d\xf5\x1a\xf6\x2f\xe8\x5a\x37\xa0\x46\xc9\xb6\xb6\x36\xdd\x45\xff\x86\xdf\x41\x5f\xd6\x80\x46\xf5\x6d\x7d\x8b\x9f\x8f\xc8\xcb\x31\xd3\x37\x39\xdc\xab\xa1\x95\x1b\xa3\x03\x29\xd4\xb2\xe0\x44\xfb\x79\x7c\xcd\x71\x57\xf8\x88\xaa\x07\x7f\xe0\xc1\x2c\xb4\x51\xb2\x1b\xe2\xcd\x2e\xbc\xd0\x9e\xe2\x7f\xb7\x92\xc3\xd1\xb9\xeb\x95\xa2\x14\xae\xd7\xee\x57\x00\x00\x00\xff\xff\x4e\xae\x7c\x84\xfd\x03\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/clusterrole-snapshot-controller.yaml": &vfsgen۰CompressedFileInfo{ name: "clusterrole-snapshot-controller.yaml", @@ -117,44 +124,44 @@ var vfsgenAssets = func() http.FileSystem { "/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-attacher.yaml": &vfsgen۰CompressedFileInfo{ name: "clusterrolebinding-attacher.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 380, + uncompressedSize: 403, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcb\x4e\x33\x31\x0c\x46\xf7\x79\x0a\xab\xfb\xcc\xaf\x5f\x62\x81\x66\x07\x2c\xd8\x17\x89\xbd\x93\x18\x6a\x9a\x3a\x23\xdb\x19\x2e\xa5\xef\x8e\xda\xe1\xa2\x0a\x89\x75\x4e\x8e\x7c\xbe\x18\x63\xd8\xb2\x94\x11\x6e\x6a\x37\x27\x5d\xb7\x4a\xd7\x2c\x85\xe5\x31\xe0\xc4\xf7\xa4\xc6\x4d\x46\xd0\x84\x79\xc0\xee\x9b\xa6\xfc\x86\xce\x4d\x86\xed\xa5\x0d\xdc\xfe\xcd\xff\xc3\x8e\x1c\x0b\x3a\x8e\x01\x40\x70\x47\x23\x50\xb2\x98\x8d\x23\xba\x63\xde\x90\xc6\xf4\xe9\x04\xa8\x98\xa8\xda\x11\x05\xd8\xef\x23\xb0\xe4\xda\x0b\xc1\x0a\x9f\x2d\x7e\xfd\x2b\xca\x33\xe9\xb0\xb0\x2b\x18\xe0\x1d\x84\xa5\x90\x38\x5c\xc0\xe1\x10\xac\xa7\x27\xca\x7e\xd2\x44\x58\x0a\xee\x48\x67\xce\x74\x95\x73\xeb\xe2\x27\xff\xf9\x31\xb9\x89\x6b\xab\x95\x34\x1a\x7e\xbf\xdb\x84\x99\x46\xd8\xf6\x44\xd1\x5e\xcd\x69\x17\xb4\x55\x5a\xd3\xc3\x51\xfe\x6b\x9c\xb3\x44\x7a\x71\x52\xc1\xfa\xd3\xa9\x0b\x82\x13\xdf\x6a\xeb\xd3\x1f\xc3\x85\x8f\x00\x00\x00\xff\xff\x6b\x62\xd8\x9d\x7c\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xbd\x4e\x03\x41\x0c\x84\xfb\x7d\x0a\x2b\xfd\x2e\x42\xa2\x40\xd7\x01\x05\x7d\x90\xd2\xfb\xf6\x0c\x31\xd9\x78\x4f\xb6\x37\xfc\x1c\x79\x77\x74\x39\x22\x14\x21\xd1\x7f\xf3\xd9\x33\x31\xc6\xb0\x63\x19\x3a\x78\x28\xcd\x9c\x74\x5d\x0b\xdd\xb3\x0c\x2c\x2f\x01\x47\xde\x90\x1a\x57\xe9\x40\x7b\xcc\x09\x9b\x6f\xab\xf2\x27\x3a\x57\x49\xbb\x5b\x4b\x5c\xaf\x0e\xd7\x61\x4f\x8e\x03\x3a\x76\x01\x40\x70\x4f\x1d\x50\x6f\x31\x1b\x47\x74\xc7\xbc\x25\x8d\xfd\x8f\x13\xa0\x60\x4f\xc5\x66\x14\x60\x9a\x22\xb0\xe4\xd2\x06\x82\x15\xbe\x59\x3c\xe7\x06\xe5\x03\x69\x5a\xd8\x15\x24\xf8\x02\x61\x19\x48\x1c\x6e\xe0\x78\x0c\xd6\xfa\x57\xca\x7e\xd2\x44\x58\x1a\x3c\x91\x1e\x38\xd3\x5d\xce\xb5\x89\x9f\xfc\xcb\x33\xd3\x04\x69\x83\xa5\x91\x25\xbb\x60\x52\xae\xe2\x5a\x4b\x21\x4d\x33\x3a\x9b\xcf\x31\x1b\x31\x53\x07\xbb\xd6\x53\xb4\x0f\x73\xda\x07\xad\x85\xd6\xf4\x3c\xdf\xfc\xb3\xd9\x45\x73\x7a\x77\x52\xc1\xf2\x5b\x5f\x17\x04\x47\x7e\xd4\xda\xc6\x7f\xf6\x0c\xdf\x01\x00\x00\xff\xff\xf6\xda\xd1\x9c\x93\x01\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-provisioner.yaml": &vfsgen۰CompressedFileInfo{ name: "clusterrolebinding-provisioner.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 386, + uncompressedSize: 409, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x3f\x4f\xc4\x30\x0c\x47\xf7\x7c\x0a\xeb\xf6\x14\x21\x31\xa0\x6e\xc0\xc0\x7e\x48\xec\x4e\x62\xc0\x34\x75\x2a\x3b\x29\x7f\x8e\xfb\xee\xa8\x57\x40\xaa\x90\x6e\xce\xcb\x93\xdf\xcf\x7b\xef\x06\x96\xd4\xc3\x5d\x6e\x56\x49\xf7\x25\xd3\x2d\x4b\x62\x79\x76\x38\xf1\x23\xa9\x71\x91\x1e\x34\x60\xec\xb0\xd5\x97\xa2\xfc\x89\x95\x8b\x74\xc3\xb5\x75\x5c\x2e\xe6\x4b\x37\x52\xc5\x84\x15\x7b\x07\x20\x38\x52\x0f\x14\xcc\x47\x63\x3f\x69\x99\x79\x31\x90\xfa\xf0\xa3\x05\xc8\x18\x28\xdb\x42\x03\x1c\x0e\x1e\x58\x62\x6e\x89\x60\x87\x6f\xe6\x7f\xbf\x26\xe5\x99\xb4\x5b\xd9\x1d\x74\xf0\x05\xc2\x92\x48\x2a\x5c\xc1\xf1\xe8\xac\x85\x57\x8a\xf5\xa4\xf1\xb0\x46\x3c\x90\xce\x1c\xe9\x26\xc6\xd2\xa4\x9e\xfc\xdb\x7b\x62\x91\xaa\x25\x67\x52\x6f\xf8\xf7\x6e\x13\x46\xea\x61\x68\x81\xbc\x7d\x58\xa5\xd1\x69\xc9\xb4\xa7\xa7\x45\xfe\x6f\x9f\x4d\x25\xbd\x57\x52\xc1\xbc\x49\xd5\x95\xc2\x89\xef\xb5\xb4\xe9\xcc\x7c\xee\x3b\x00\x00\xff\xff\x9a\x5a\x32\xbf\x82\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x3f\x4f\x03\x31\x0c\xc5\xf7\x7c\x0a\xab\x7b\x82\x90\x18\xd0\x6d\xc0\xc0\x5e\xa4\xee\x4e\x62\xc0\x34\x75\x4e\x76\x72\xfc\x39\xfa\xdd\xd1\xf5\xe8\x50\x21\xb1\xff\xde\xcf\x7e\xcf\x7b\xef\xf6\x2c\x79\x80\x87\xd2\xad\x91\x6e\x6b\xa1\x7b\x96\xcc\xf2\xe2\x70\xe4\x1d\xa9\x71\x95\x01\x34\x62\x0a\xd8\xdb\x6b\x55\xfe\xc2\xc6\x55\xc2\xfe\xd6\x02\xd7\xab\xe9\xda\x1d\xa8\x61\xc6\x86\x83\x03\x10\x3c\xd0\x00\x14\xcd\x27\x63\x3f\x6a\x9d\x78\x31\x90\xfa\xf8\xab\x05\x28\x18\xa9\xd8\x42\x03\xcc\xb3\x07\x96\x54\x7a\x26\xd8\xe0\xbb\xf9\x73\x34\x2b\x4f\xa4\x61\x65\x37\x10\xe0\x1b\x84\x25\x93\x34\xb8\x81\xe3\xd1\x59\x8f\x6f\x94\xda\x49\xe3\x61\x2d\xf1\x44\x3a\x71\xa2\xbb\x94\x6a\x97\x76\xf2\xaf\xff\xcc\x33\x84\x1d\x96\x4e\x16\xec\x82\x09\xa9\x4a\xd3\x5a\x0a\x69\x58\xd0\xc5\x7c\x8e\xd9\x88\x89\x06\xd8\xf7\x48\xde\x3e\xad\xd1\xc1\x69\x2d\xb4\xa5\xe7\xe5\xe6\x9f\xd9\x2e\xca\xd3\x47\x23\x15\x2c\x17\x0b\xe8\x4a\xe1\xc8\x8f\x5a\xfb\xf8\xcf\xaa\xee\x27\x00\x00\xff\xff\x9f\x51\xdf\x05\x99\x01\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-resizer.yaml": &vfsgen۰CompressedFileInfo{ name: "clusterrolebinding-resizer.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 428, + uncompressedSize: 451, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x31\x4f\x23\x31\x10\x85\x7b\xff\x8a\x51\x7a\xef\xe9\xa4\x2b\x4e\xdb\x01\x05\x7d\x90\xd2\xcf\xda\x2f\x61\x88\x77\xbc\x1a\xdb\x01\x12\xf6\xbf\xa3\x4d\x20\x52\x84\x44\xed\xe7\x6f\xde\xf7\x4e\x27\x4f\xb2\xa5\x6e\xc3\xa9\xa1\x74\x50\x1e\x12\x36\x39\xb5\x11\x6b\x14\x39\x8a\xee\x68\x9e\x9d\xf7\xde\xed\x45\x63\x4f\x0f\xa9\x95\x0a\x5b\xe7\x84\x7b\xd1\x28\xba\x73\x3c\xc9\x06\x56\x24\x6b\x4f\x36\x70\xe8\xb8\xd5\xe7\x6c\x72\xe4\x2a\x59\xbb\xfd\xff\xd2\x49\xfe\x73\xf8\xeb\x46\x54\x8e\x5c\xb9\x77\x44\xca\x23\x7a\xc2\x50\x7c\x28\xe2\x6d\xb9\x05\xf3\xc3\x17\x92\x28\xf1\x80\x54\x96\x24\xd1\xb9\xa4\x86\xd4\x22\x68\xc5\xaf\xc5\x7f\x7f\x8b\x26\x07\x58\x77\xc9\xae\xa8\xa3\x0f\x52\xd1\x08\xad\xf4\x6f\xa9\x5d\xda\xf0\x82\x50\xcf\x18\x4f\x17\x81\x27\xd8\x41\x02\xee\x42\xc8\x4d\xeb\x99\x7f\xdb\x25\x64\xad\x96\x53\x82\xf9\xc2\xd7\xf7\x32\x71\x40\x4f\xfb\x36\xc0\x97\xf7\x52\x31\x3a\xcb\x09\x6b\x6c\x17\xf8\x8f\x6d\x6e\x0c\xf1\x56\x61\xca\xe9\xaa\x69\x97\x04\x4f\xf2\x68\xb9\x4d\xbf\xcc\xe6\xdc\x22\x0f\x8d\xf3\xec\x3e\x03\x00\x00\xff\xff\xe2\x85\x80\xf2\xac\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x31\x6f\xe3\x30\x0c\x85\x77\xfd\x0a\x22\xbb\x74\x38\xe0\x86\x83\xb7\xbb\x0e\xdd\x53\x20\x3b\x2d\x33\x29\x1b\x99\x32\x48\x29\x6d\xe3\xfa\xbf\x17\x8a\x9b\x00\x41\x81\xee\x1f\x1f\xdf\xfb\xe6\xd9\x03\xef\x21\xec\x30\x55\xb2\x40\x82\x7d\xa2\x5d\x4e\x75\xa4\x2d\x19\x9f\x59\x0e\xb0\x2c\xce\x7b\xef\x8e\x2c\x43\x07\x0f\xa9\x5a\x21\xdd\xe6\x44\xff\x59\x06\x96\x83\xc3\x89\x77\xa4\xc6\x59\x3a\xd0\x1e\x63\xc0\x5a\x9e\xb3\xf2\x19\x0b\x67\x09\xc7\xbf\x16\x38\xff\x3a\xfd\x76\x23\x15\x1c\xb0\x60\xe7\x00\x04\x47\xea\x80\x7a\xf3\xd1\xd8\x6b\xfb\x45\xea\xfb\xaf\x48\x80\x84\x3d\x25\x6b\x24\xc0\xa5\xa4\xc4\x54\x07\x82\x0d\xbe\x9a\xbf\x9e\x0d\xca\x27\xd2\xb0\xb2\x1b\x08\xf0\x01\xc2\x32\x90\x14\xf8\xd3\x6a\x5b\xed\x5f\x28\x96\x4b\x8c\x87\x75\xc0\x13\xe9\x89\x23\xfd\x8b\x31\x57\x29\x97\xfc\xb5\xcb\x3c\xdf\x34\xd8\x1d\x13\x62\x96\xa2\x39\x25\xd2\xd0\xd0\x96\x7c\x3d\xb3\x09\x23\x75\x70\xac\x3d\x79\x7b\xb7\x42\xa3\xd3\x9c\x68\x4b\xfb\xf6\xf3\x9b\xb2\xbb\xe1\xf4\x56\x48\x05\xd3\x6d\xbd\xae\x04\x4e\xfc\xa8\xb9\x4e\x3f\xd8\x74\xae\x39\x21\x19\x96\xc5\x7d\x06\x00\x00\xff\xff\xd1\xc0\xc6\x21\xc3\x01\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-snapshot-controller.yaml": &vfsgen۰CompressedFileInfo{ name: "clusterrolebinding-snapshot-controller.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 446, + uncompressedSize: 465, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x31\x4f\x03\x31\x0c\x85\xf7\xfc\x0a\xab\x7b\x82\x90\x18\xd0\x6d\xc0\xc0\xde\x4a\xdd\x9d\xc4\xa5\xa6\x39\xe7\x64\x27\x45\x50\xfa\xdf\xd1\xb5\x05\x06\x10\xec\xcf\x9f\xdf\xfb\x0e\x07\x0f\xbc\x81\xb0\xc6\xd2\xc9\x02\x09\xc6\x42\xeb\x5a\xfa\x48\x2b\xc1\xc9\xb6\xb5\xc1\xf1\xe8\xbc\xf7\x6e\xc7\x92\x07\x78\x28\xdd\x1a\xe9\xb2\x16\xba\x67\xc9\x2c\x4f\x0e\x27\x5e\x93\x1a\x57\x19\x40\x23\xa6\x80\xbd\x6d\xab\xf2\x1b\x36\xae\x12\x76\xb7\x16\xb8\x5e\xed\xaf\xdd\x48\x0d\x33\x36\x1c\x1c\x80\xe0\x48\x03\x50\x34\x9f\x8c\xbd\x5d\x7e\xf9\x54\xa5\x69\x2d\x85\xd4\xc7\x0b\x1e\xa0\x60\xa4\x62\xf3\x15\xc0\xa9\xb0\xa4\xd2\x33\xc1\x02\x5f\xcc\x7f\x22\xb2\xf2\x9e\x34\x9c\xb3\x0b\x08\xf0\x0e\xc2\x92\x49\x1a\xdc\xcc\x13\xac\xc7\x67\x4a\xed\x84\xf1\x70\x1e\xb3\x22\xdd\x73\xa2\xbb\x94\x6a\x97\x76\xe2\x7f\xf7\xfa\xa5\xd3\x57\xc2\x26\x4c\x34\xc0\xae\x47\xf2\xf6\x6a\x8d\x46\xa7\xb5\xd0\x92\x36\x33\xfe\x87\x29\xf7\x0f\xd7\xeb\x39\x84\x13\x3f\x6a\xed\xd3\x1f\x1e\x9d\x9b\x0d\x90\xe4\x79\xd3\x47\x00\x00\x00\xff\xff\xb7\xf1\xbf\xac\xbe\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xb1\x4e\x2b\x31\x10\x45\x7b\x7f\xc5\x28\xbd\xfd\xf4\x24\x0a\xb4\x1d\x50\xd0\x27\x52\xfa\xb1\x3d\x21\x43\xbc\xe3\x95\xc7\x0e\x82\x25\xff\x8e\x9c\x4d\x90\x22\x10\xfd\x9d\x33\xf7\x9e\x79\xb6\xc0\x3b\x70\x5b\x4c\x8d\xd4\x91\xa0\x4f\xb4\xcd\xa9\x8d\xb4\x11\x9c\x74\x9f\x2b\x9c\x4e\xc6\x5a\x6b\x0e\x2c\x71\x80\xa7\xd4\xb4\x52\x59\xe7\x44\x8f\x2c\x91\xe5\xc5\xe0\xc4\x5b\x2a\xca\x59\x06\x28\x1e\x83\xc3\x56\xf7\xb9\xf0\x07\x56\xce\xe2\x0e\xf7\xea\x38\xff\x3b\xfe\x37\x23\x55\x8c\x58\x71\x30\x00\x82\x23\x0d\x40\x5e\x6d\x50\xb6\x7a\xf9\x65\x43\x96\x5a\x72\x4a\x54\xac\xbf\xe0\x01\x12\x7a\x4a\xda\xaf\x00\xce\x85\x25\xa4\x16\x09\x56\xf8\xa6\xf6\x8a\x88\x85\x8f\x54\xdc\x92\x5d\x81\x83\x4f\x10\x96\x48\x52\xe1\xae\x4f\xd0\xe6\x5f\x29\xd4\x33\xc6\xc2\x32\x66\x43\xe5\xc8\x81\x1e\x42\xc8\x4d\xea\x99\xbf\xf4\x9a\xe7\x6f\x25\x7a\x93\x71\xd7\xa6\xae\x07\x3b\xf7\x7a\xa4\x13\x06\x1a\xe0\xd0\x3c\x59\x7d\xd7\x4a\xa3\x29\x39\xd1\x9a\x76\xfd\xe3\x0f\x79\x37\x0a\x7e\x9b\x5f\x96\x10\x4e\xfc\x5c\x72\x9b\xfe\x50\x6b\x4c\x97\x42\x12\x7b\x9d\xaf\x00\x00\x00\xff\xff\x86\x95\x9c\x05\xd1\x01\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/clusterrolebinding-snapshotter.yaml": &vfsgen۰CompressedFileInfo{ name: "clusterrolebinding-snapshotter.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 437, + uncompressedSize: 460, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xbd\x4e\x43\x31\x0c\x85\xf7\x3c\x85\xd5\x3d\x41\x48\x0c\xe8\x6e\xc0\xc0\xde\x4a\xdd\x9d\xc4\xa5\xa6\xb9\xce\x95\x9d\x94\x9f\xd2\x77\x47\xb7\x2d\x48\x15\x12\x73\x4e\x3e\x9f\xef\x1c\x0e\x1e\x78\x03\x61\x8d\xa5\x93\x05\x12\x8c\x85\xd6\xb5\xf4\x91\x56\x82\x93\x6d\x6b\x83\xe3\xd1\x79\xef\xdd\x8e\x25\x0f\xf0\x54\xba\x35\xd2\x65\x2d\xf4\xc8\x92\x59\x5e\x1c\x4e\xbc\x26\x35\xae\x32\x80\x46\x4c\x01\x7b\xdb\x56\xe5\x4f\x6c\x5c\x25\xec\xee\x2d\x70\xbd\xd9\xdf\xba\x91\x1a\x66\x6c\x38\x38\x00\xc1\x91\x06\xa0\x68\x3e\x19\x7b\xbb\xdc\x6a\xa4\x3e\x5e\xb0\x00\x05\x23\x15\x9b\xd3\x00\xa7\xa2\x92\x4a\xcf\x04\x0b\x7c\x33\xff\xf3\x35\x2b\xef\x49\xc3\x39\xbb\x80\x00\x5f\x20\x2c\x99\xa4\xc1\xdd\x5c\xdd\x7a\x7c\xa5\xd4\x4e\x18\x0f\x67\x89\x15\xe9\x9e\x13\x3d\xa4\x54\xbb\xb4\x13\xff\xba\x4f\xaa\xd2\xb4\x96\x42\xea\x0d\x7f\xdf\x6d\xc2\x44\x03\xec\x7a\x24\x6f\x1f\xd6\x68\x74\x5a\x0b\x2d\x69\x33\xc3\xff\xec\x73\x65\x49\xef\x8d\x54\xb0\x5c\xa9\xea\x39\x85\x13\x3f\x6b\xed\xd3\x3f\xf3\x39\x37\x0f\x40\x92\x67\xa5\xef\x00\x00\x00\xff\xff\x99\x12\x96\xf3\xb5\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xbd\x6e\xeb\x30\x0c\x85\x77\x3d\x05\x91\x5d\xba\xb8\x40\x87\xc2\x5b\xdb\xa1\x7b\x02\x64\xa7\x65\xa6\x61\x23\x53\x06\x29\xa5\x3f\x6e\xde\xbd\x50\x9c\x14\x08\x0a\x74\xff\x78\x78\xce\x37\xcf\x1e\x78\x07\x61\x8b\xa9\x92\x05\x12\xec\x13\x6d\x73\xaa\x23\x6d\x04\x27\xdb\xe7\x02\xa7\x93\xf3\xde\xbb\x03\xcb\xd0\xc1\x53\xaa\x56\x48\xd7\x39\xd1\x23\xcb\xc0\xf2\xe2\x70\xe2\x2d\xa9\x71\x96\x0e\xb4\xc7\x18\xb0\x96\x7d\x56\xfe\xc4\xc2\x59\xc2\xe1\xde\x02\xe7\x7f\xc7\xff\x6e\xa4\x82\x03\x16\xec\x1c\x80\xe0\x48\x1d\x50\x6f\x3e\x1a\x7b\xbb\xfc\x2a\xa4\xbe\xbf\xc4\x02\x24\xec\x29\x59\xa3\x01\xce\x45\x25\xa6\x3a\x10\xac\xf0\xcd\xfc\xf5\x74\x50\x3e\x92\x86\x85\x5d\x41\x80\x2f\x10\x96\x81\xa4\xc0\x5d\xab\x6e\xb5\x7f\xa5\x58\xce\x31\x1e\x96\x11\x1b\xd2\x23\x47\x7a\x88\x31\x57\x29\xe7\xfc\xa5\xcf\x3c\xff\xa8\xb0\x1b\x26\xc4\x2c\x45\x73\x4a\xa4\xa1\xa1\x2d\xf9\x7a\x66\x13\x46\xea\xe0\x50\x7b\xf2\xf6\x61\x85\x46\xa7\x39\xd1\x9a\x76\xed\xe7\x2f\x6d\x37\xe3\xe9\xbd\x90\x0a\xa6\x1b\x03\xba\x50\x38\xf1\xb3\xe6\x3a\xfd\x61\xd5\xb9\xe6\x85\x64\x68\x7d\xbe\x03\x00\x00\xff\xff\xee\x4f\xe6\x70\xcc\x01\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/controller.yaml": &vfsgen۰CompressedFileInfo{ name: "controller.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 5516, + uncompressedSize: 6390, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\x4d\x6f\x1b\x37\x13\xbe\xeb\x57\x0c\x9c\x04\x48\x80\xac\x94\xbc\x6f\x5b\xa4\x0b\xf8\x60\x48\x6a\x60\x24\x75\x04\xcb\x48\x91\x93\x41\x71\x47\x5a\xc2\x5c\x92\xe0\xcc\x2a\xde\x28\xfe\xef\x05\xb5\xfa\xd8\x2f\x45\xae\xd0\xe4\xd0\x76\x0f\x3e\x70\xbe\x9e\x99\x79\x38\x43\xeb\x09\x0c\xad\x61\x6f\xb5\x46\x0f\x53\xf4\x4b\x25\xb1\x77\xa7\x4c\x12\xc3\x08\x9d\xb6\x45\x86\x86\x7b\xc2\xa9\x8f\xe8\x49\x59\x13\x83\x70\x8e\x06\xcb\xd7\xbd\x0c\x59\x24\x82\x45\xdc\x03\x30\x22\xc3\x18\x70\x46\x91\x24\x15\xc9\x9d\xc7\x8d\x88\x9c\x90\x18\xc3\x5d\x3e\xc3\x88\x0a\x62\xcc\x7a\x00\x5a\xcc\x50\x53\xb0\x06\x58\xad\x22\x50\x46\xea\x3c\x41\x38\x13\x9f\x29\xda\xba\x4a\xbc\x5a\xa2\xef\x97\xba\x67\xd0\x87\xaf\x60\x94\x49\xd0\x30\xfc\x04\x0f\x0f\x3d\x72\x28\x83\x0b\x8f\x4e\x2b\x29\x28\x86\xd5\x0a\xfa\x1f\x85\xce\x91\xfa\x9b\xc3\xa1\xcd\x0d\x07\x65\x00\x42\x8d\x92\xad\x2f\xa3\x66\x82\x65\xfa\xbe\x02\x03\x42\x72\x07\xf2\x78\x0c\xcc\xad\xfb\xf7\x1d\x70\x7f\x29\x11\x30\x66\x4e\x0b\xc6\x0d\x82\x4a\x0d\xc3\xa7\x6b\x60\x8e\xc1\x39\xad\x6e\x6f\x4a\x20\x3b\xf3\xf9\xae\x5e\xce\x26\x17\xc6\x58\x16\xac\xac\xa1\xbd\x9a\xd8\x1f\xae\xeb\xcb\xf6\x93\xc8\xf4\x21\xb3\x83\x91\xd0\x24\xdb\x83\x6d\xdb\xc2\x67\x6c\x82\xd3\x5a\x5f\xc2\x17\xb8\xe2\x0d\x32\x52\x5f\xd9\x81\xa5\x18\xb4\x32\xf9\x7d\x2d\xf3\xcf\x8a\xd3\x1d\x8a\xaa\x9b\x10\xa6\x82\x13\xbe\x42\x1b\x51\x0b\x53\x60\xc7\x9a\xfe\x17\x52\x06\xc6\x5c\x1d\xe0\x74\x44\x62\xa3\xef\xbc\xb2\x5e\x71\x31\xd4\x82\xa8\x54\x2f\xd9\x1d\x49\x9d\x13\xa3\x8f\xa4\x57\xac\xa4\xd0\xbd\x03\xa0\xc5\x7c\xae\x8c\xe2\xa2\x52\xeb\xcd\x49\xad\xd0\x8f\xaa\x29\x00\x5b\x8d\x7e\xd3\xa7\x5d\x96\x11\x58\x17\x4e\xad\x8f\x61\x7c\xaf\x88\xe9\x10\x98\x8a\xf9\x63\x0a\xd8\x0a\x1f\x4a\x24\x94\x41\x5f\x8b\xbe\x1f\x0d\x4e\xe7\x0b\x65\x76\x22\x00\x95\x89\x05\xd6\x6e\xec\xfa\x24\xdc\x5b\x4b\x8a\xad\x0f\x75\x89\x5b\x62\x16\x8b\x6a\x1b\x37\x7e\x26\xb9\xd6\x13\xab\x95\x2c\x3a\x3c\xba\x9d\xb0\x6e\x29\xfc\xa2\x02\xb6\x72\x25\x0c\x42\xff\x1a\x35\x0a\xc2\x7e\xe8\x2c\x9c\xdd\xe5\xc4\x36\x53\x5f\xf0\xac\xee\x22\xe4\xd8\x71\x33\x77\x15\xd2\x84\x4d\x83\x27\x10\xc1\x4a\x68\xfd\x72\x6f\xf7\x32\xd0\xf7\x01\x9e\xac\x6f\x86\x9a\x17\xc0\x29\x42\x79\x89\x21\xb3\x09\xb6\xfd\x56\x2b\xbf\xc5\x11\x45\x68\x12\x67\x95\xe1\xf3\xa7\xcf\x87\xd3\xcb\xdb\xf1\xd5\x68\xf2\xe1\xf2\xea\xe6\x45\x57\x8e\xdb\x12\xe1\x3d\x7b\xf1\xd1\xea\x3c\xc3\x1b\xb1\xa0\xa6\xdb\xe3\x53\x66\xed\x20\x5a\xae\x3d\x44\x2c\x16\x8d\x81\xf3\xfa\x7f\x4d\x97\xdf\x48\x40\xdb\x05\x5b\xe2\x04\xbd\x6f\xc9\x96\xe7\x3f\x57\xce\xd0\x2c\xe3\x86\x4a\xc9\xb5\x6a\xe2\x8d\x4c\x96\x21\xe3\x18\x72\xa3\xee\xe3\xc1\x60\xb0\x14\x7e\xa0\xd5\x6c\x20\x49\x0d\xc8\xca\x3b\x64\x1a\x94\x2c\x75\xde\xde\x17\xe1\xbc\x1f\xce\x3b\xc3\x5c\xfc\x31\xbd\xbd\x18\x0e\xc7\xd3\xe9\xed\xbb\xf1\xa7\xdb\xcb\x51\x57\xac\xdf\xbc\xcd\xe2\x86\x20\x0c\x1a\xe9\x91\xdf\x61\x71\x8d\xf3\xb6\x74\xbb\x4e\x43\xa5\x4b\xcd\x0e\x95\x3b\x2c\xe2\xf0\xe7\x56\x25\x1d\x52\xeb\xc2\x35\x16\x3a\x06\xf6\x39\x1e\x84\x3f\x1d\x0f\xaf\xc7\x37\x95\x2c\x7e\x7c\x0a\x42\x4a\x24\xba\xbd\xc3\xe2\xaf\xa5\xd1\xe0\xb0\xc7\x85\xb2\xa6\x4d\xa8\x7d\xae\xd7\xe3\xb7\x97\x1f\xae\xba\xf9\x50\x7b\x33\x74\x39\xea\x24\x6c\x49\xf8\xdf\xc3\xae\xa0\x6e\x26\x96\x9c\x8a\x12\xe5\x1b\x71\xb3\x60\x34\x11\x9c\xc6\x70\x94\x84\x15\x53\x67\xfd\xa1\x50\x29\x0a\xcd\xe9\x97\x46\x9c\xdd\x48\x9e\x58\xcf\x31\xfc\xfa\xe6\xd5\x9b\x86\x86\xf3\x96\xad\xb4\x3a\x86\x9b\xe1\xa4\x22\xd3\x6a\x89\x06\x89\x26\xde\xce\xb0\x1e\x32\x65\x76\x6f\x91\x9b\x5d\x77\x65\x3a\xdd\x40\xdc\x3a\x7e\x97\x2c\x6c\x3b\x25\xf4\x08\xb5\x28\xa6\x28\xad\x49\x28\x86\xd7\xaf\x6a\x3a\xac\x32\xb4\x39\xef\xc4\xff\xaf\x49\x1d\x7a\x65\x93\x43\xb6\x73\xa1\x74\xee\xf1\x26\xf5\x48\xa9\xd5\x49\x0c\xd5\x21\xd2\x5a\x82\x1e\xc9\xe6\x5e\x62\x63\x0c\xee\x8e\x0f\xed\xe5\xe6\x90\xeb\x60\xcc\xb6\x55\x61\x72\x3a\x6f\x97\x2a\xbc\xa7\x6b\x2b\x63\xbf\x10\x9d\x57\x86\xe7\x70\xf6\x8c\xe2\x67\x61\x9c\x6e\xd0\x91\x4a\x50\x0a\x4f\xfd\x8a\xfd\x65\x73\x67\x1e\x57\x6e\x6d\xd0\xf6\x1e\x0c\xf3\x36\x00\x15\x49\xe2\x91\xe8\xfc\xe9\xf3\x8b\xd1\xe8\x7a\x3c\x9d\xbe\x38\x32\x96\xdb\xeb\xc5\x88\x99\xc6\x72\xbf\x4c\x65\x8a\x49\xae\x95\x59\x74\xcd\xfe\x39\x0a\xce\x3d\x46\x0b\xc1\x48\xe7\x37\xd6\x59\x6d\x17\xc5\x79\xe7\xdd\x47\x93\x74\xae\xbf\x10\x2b\xd2\x28\x12\xf4\xd1\xfa\x35\xa8\xac\x69\x2f\x99\xba\x3c\xe2\xc2\xe1\xf9\x7a\xd9\xd3\x63\x16\xcc\xa6\x12\xdd\xb3\xe4\x94\xa5\xf2\xa3\x27\x49\x95\x89\x82\x59\xc8\xf4\x44\x1a\x6e\x8d\x8f\x73\xb0\xae\xf9\x7d\x09\xd8\xd1\xe2\x36\x89\xfe\xe3\xc1\xb7\x6f\xaa\x11\x8e\x52\xcb\x87\x06\x18\x6d\xe4\x7c\x22\x73\x2a\xf6\xc7\xc9\xd3\x52\xfe\x7b\xf9\x73\x84\x2b\xff\xec\xfe\x37\x96\xd4\x37\x28\x71\x8d\xa4\xbe\x34\x46\x77\x95\x12\x3e\xc8\x4f\xa4\xc3\xc6\xf6\x38\x15\x6a\x8a\xc7\xff\x13\xbc\xd0\x9f\x45\x41\xdf\x67\xd0\xfc\xab\x78\xb1\x0d\xb4\x7d\x17\x86\x17\xcc\x0c\x4f\xea\x75\xed\x69\x79\xbc\xe3\x1d\xea\x27\x5c\xff\x75\xd2\xdf\xaf\xb4\x92\x54\xaf\xea\xb0\xe3\x27\x90\x4e\x3f\x98\x39\x2e\x46\xca\xc7\xb0\x7a\xe8\xfd\x19\x00\x00\xff\xff\x85\x2f\x13\x23\x8c\x15\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\x4d\x8f\x1a\x39\x13\xbe\xf3\x2b\x4a\x24\x91\x12\x29\x0d\xc9\xfb\x66\x57\xb3\x2d\x71\x40\xc0\x46\xa3\x24\x13\x34\xa0\xac\x72\x1a\x19\x77\x01\x16\x6e\xdb\xb2\xab\xc9\x74\x26\xf3\xdf\x57\xee\x86\xa6\xbf\x08\xb3\x28\x93\x5c\xc2\x61\x0e\xae\xaf\xa7\xaa\x1e\x57\xb9\xe7\x09\x8c\xb4\x22\xab\xa5\x44\x0b\x33\xb4\x5b\xc1\xb1\xb3\x11\x2a\x0a\x61\x8c\x46\xea\x34\x46\x45\x1d\x66\xc4\x27\xb4\x4e\x68\x15\x02\x33\xc6\xf5\xb7\xaf\x3b\x31\x12\x8b\x18\xb1\xb0\x03\xa0\x58\x8c\x21\xe0\xc2\x05\xdc\x89\x80\x17\x1e\x77\x22\x67\x18\xc7\x10\x36\xc9\x02\x03\x97\x3a\xc2\xb8\x03\x20\xd9\x02\xa5\xf3\xd6\x00\x77\x77\x01\x08\xc5\x65\x12\x21\x74\xd9\x17\x17\xec\x5d\x45\x56\x6c\xd1\xf6\x72\xdd\x2e\xf4\xe0\x1b\x28\xa1\x22\x54\x04\x6f\xe0\xfe\xbe\xe3\x0c\x72\xef\xc2\xa2\x91\x82\x33\x17\xc2\xdd\x1d\xf4\x3e\x31\x99\xa0\xeb\xed\x0e\x47\x3a\x51\xe4\x95\x01\x1c\x4a\xe4\xa4\x6d\x1e\x35\x66\xc4\xd7\xef\x4b\x30\xc0\x27\x77\x24\x8f\x87\xc0\xdc\xbb\x7f\xdf\x02\xf7\xcf\x1c\x01\x61\x6c\x24\x23\xdc\x21\x28\xd5\xd0\xff\x64\x05\xcc\x29\x38\xe7\xd5\xed\x22\x07\x52\x98\x2f\x8b\x7a\x19\x1d\x0d\x95\xd2\xc4\x48\x68\xe5\x0e\x6a\xec\x70\x98\xd5\x97\xf4\x67\x16\xcb\x63\x66\x47\x23\xa1\x8a\xf6\x07\xfb\xb6\xf9\x9f\xd2\x11\xce\x2a\x7d\xf1\x3f\xcf\x15\xab\x90\xd0\xf5\x84\xee\x6b\x17\x82\x14\x2a\xb9\xad\x64\xfe\x45\xd0\xba\x40\x51\x76\xe3\xc3\x94\x70\xc2\x37\x68\x22\x6a\x60\xf2\xec\xc8\xe8\x3f\xe4\xdc\x33\xe6\x2a\xe3\x74\x89\x4e\x55\x71\xef\xd0\x8e\x9e\xe7\xf8\xc1\x8d\xb1\x42\x5b\x41\xe9\x48\x32\xe7\x1a\x5e\x1a\x52\xf8\x06\x11\x2e\x59\x22\x09\xba\xf9\xe5\x08\xb8\x4c\x1c\xa1\x0d\xb8\x15\x24\x38\x93\xdd\x6a\x21\x2b\x79\xb3\xe5\x52\x28\x41\x69\xa9\x5d\xbb\x93\x4a\xaf\x1e\xd4\x16\x00\xd2\x12\xed\xae\xd5\x55\x96\x1d\x68\xb2\xd3\xc1\xa1\x94\x73\x26\x14\xb9\x72\x51\x03\xd0\xc6\x4b\xb5\x0d\x61\x72\x2b\x1c\xb9\xe3\xf5\x6e\xc9\xa6\x14\xff\xcc\x26\xfa\xb6\x30\xa1\xd0\x96\x12\x08\x4a\x03\xca\xc8\x64\x25\x54\x21\x02\x10\x31\x5b\x55\x5b\x94\x9d\xf8\xe9\xa1\x9d\x20\x6d\x7d\x69\xc3\x86\x98\xd8\xaa\x8c\x63\xe7\x67\x9a\x48\x39\xd5\x52\xf0\xb4\xc5\xa3\x29\x84\x55\x4b\x66\x57\x25\xb0\xa5\x8a\x2b\x84\xde\x35\x4a\x64\x0e\x7b\x19\x55\xba\x9b\xc4\x91\x8e\xc5\x57\xec\x56\x5d\xf8\x1c\x5b\xe6\x43\x51\x21\xe9\xb0\x6e\xf0\x04\x02\xb8\x63\x52\xbe\x3c\xd8\xbd\xf4\x97\xe8\x1e\x9e\x64\xf7\x53\x2c\x53\xa0\x35\x42\x3e\x4a\x20\xd6\x11\x36\xfd\x56\xdb\x99\xe3\x08\x02\x54\x91\xd1\x42\xd1\xe0\xe9\xf3\xd1\xec\xf2\x66\x72\x35\x9e\x7e\xbc\xbc\x9a\xbf\x68\xcb\x71\x5f\x22\xbc\x25\xcb\x3e\x69\x99\xc4\x38\x67\x2b\x57\x77\x7b\x7a\xd6\x65\x0e\x82\x6d\xe6\x21\x20\xb6\xaa\x8d\xbd\xd7\xff\xab\xbb\x3c\x92\x40\x0d\xd7\xe6\xc2\xcd\xd9\x6a\x94\xdf\xc8\xcb\xd6\x74\x37\x17\xce\x07\x2c\xae\xad\x88\x06\xa5\xde\x9f\x70\xf0\x9d\x32\x4a\xbd\x22\xed\x28\x42\x6b\x1b\xb2\xed\xe0\x8f\xd2\x19\xaa\x6d\x58\x53\xc9\x19\x5f\x2e\x7f\xad\x9e\x5b\x0f\x2f\x84\x44\x89\xdb\xb0\xdf\xef\x6f\x99\xed\x4b\xb1\xe8\x73\x27\xfa\x4e\xf3\x0d\x92\xeb\xe7\x77\xc5\x58\x7d\x9b\xfa\xf3\x9e\x3f\x6f\x0d\x33\xfc\x67\x76\x33\x1c\x8d\x26\xb3\xd9\xcd\xbb\xc9\xe7\x9b\xcb\x71\x5b\xac\xbf\xad\x8e\xc3\x9a\xc0\x0f\x5d\x6e\x91\xde\x61\x7a\x8d\xcb\xa6\x74\xff\xb4\xf0\xfd\xce\x35\x5b\x54\x36\x98\x86\xfe\xcf\x8d\x88\x5a\xa4\xda\xf8\x71\xc2\x64\x08\x64\x13\x3c\x0a\x7f\x36\x19\x5d\x4f\xe6\xa5\x2c\x7e\x7e\x0a\x8c\x73\x74\xee\x66\x83\xe9\x7f\x4b\xa3\xc6\x58\x8b\x2b\xa1\x55\x93\x50\x87\x5c\xaf\x27\x6f\x2f\x3f\x5e\xb5\xf3\xa1\xf2\x7e\x6a\x73\xd4\x4a\xd8\xfc\xda\x7d\xf0\x8b\xd1\xb5\x33\x31\xe7\x54\x10\x09\x5b\x8b\x1b\x7b\xa3\x29\xa3\x75\x08\x27\x49\x58\x32\x35\xda\x1e\x0b\xb5\x46\x26\x69\xfd\xb5\x16\xa7\x58\x0c\x53\x6d\x29\x84\xbf\x2e\x5e\x5d\xd4\x34\x8c\xd5\xa4\xb9\x96\x21\xcc\x47\xd3\x92\x4c\x8a\x2d\x2a\x74\x6e\x6a\xf5\x02\xab\x21\xd7\x44\xe6\x2d\x52\xbd\xeb\x26\x4f\xa7\x1d\x88\xc9\xe2\xb7\xc9\xfc\xda\x16\x4c\x8e\x51\xb2\x74\x86\x5c\xab\xc8\x85\xf0\xfa\x55\x45\x87\x44\x8c\x3a\xa1\x42\xfc\xff\x8a\xd4\xa0\x15\x3a\x3a\x66\xbb\x64\x42\x26\x16\xe7\x6b\x8b\x6e\xad\x65\x14\x42\x79\x88\x34\x96\xb1\x45\xa7\x13\xcb\xb1\x36\x8c\x8b\xe3\x63\x0f\x8c\xfa\xa8\x6d\x61\xcc\xbe\x55\x7e\x7e\x1b\xab\xb7\xc2\x7f\x5b\x54\x16\xd7\x61\x2d\x1b\x2b\x14\x2d\xa1\xfb\xcc\x85\xcf\xfc\x50\xdf\x3f\xc7\x44\x84\x9c\x59\xff\xa2\x2a\xec\x2f\xeb\x9b\xfb\xb4\x72\x63\x8f\x37\xb7\xb1\x9f\xb7\x1e\x28\x8b\x22\x8b\xce\x0d\x9e\x3e\x1f\x8e\xc7\xd7\x93\xd9\xec\xc5\x89\xb1\xdc\x5c\x72\x8a\x2d\x24\xe6\x5b\x6e\xc6\xd7\x18\x25\x52\xa8\x55\xdb\xec\x5f\x22\xa3\xc4\x62\xb0\x62\x84\x6e\x30\xd7\x46\x4b\xbd\x4a\x07\xad\x77\x1f\x55\xf4\xfd\x1d\x96\xad\xc6\x91\x45\x46\xf8\x61\xf7\xc5\xd1\xba\xb6\xb3\x0d\xca\x33\xbd\x60\xff\x69\xf2\x80\x68\xd9\xae\x42\x16\xa1\x0d\xb2\x07\xb8\xd0\xaa\x09\xd4\x2b\xed\xde\xb9\xc1\xd2\x51\x6a\x70\x80\xb7\xf4\xe6\x21\x4b\x6c\x57\xed\xf6\x79\x75\xce\xe2\xfa\xf9\xd3\xea\x57\xdd\x2d\x46\xc4\xf8\xfa\xcc\x8b\xb5\x37\x3e\x7d\xab\xaa\x9a\x8f\x7b\xa5\x1e\xc0\xb6\xdf\x4c\xfa\x31\x4c\xfa\xde\xf4\x52\xcc\xb8\xb5\xa6\x63\xc4\x73\x3b\x39\x9d\xc9\xbd\x92\xfd\x69\xfa\x35\x94\x7f\x2c\x03\x7f\xb3\xed\xa7\xb1\xed\xe1\x04\xbc\x46\x27\xbe\xd6\x96\x67\x99\x80\xd6\xcb\xcf\x24\xdf\xce\xf6\x34\xf1\x2a\x8a\xa7\xff\x23\x30\x94\x5f\x58\xea\x1e\x67\x30\xfe\x66\xe1\xa3\xb1\x70\x9f\xd6\xfe\x3b\xc0\xbf\x58\x17\x78\x16\xb3\x2a\x9f\x12\xa7\xf9\xd5\xa2\x7e\xc6\x68\xcb\x4a\xfc\x78\x8d\xe4\x4e\xfc\x92\x5e\xe5\xf0\x5b\xfe\xcd\xd7\x8a\x1a\x63\x43\xe9\x58\xd8\x10\xee\xee\x3b\xff\x06\x00\x00\xff\xff\xf1\x36\x06\x50\xf6\x18\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/csidriver.yaml": &vfsgen۰CompressedFileInfo{ name: "csidriver.yaml", @@ -173,9 +180,9 @@ var vfsgenAssets = func() http.FileSystem { "/charts/components/aws-ebs-csi-driver/templates/node.yaml": &vfsgen۰CompressedFileInfo{ name: "node.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 3759, + uncompressedSize: 5107, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x6f\x6b\x23\xb7\x13\x7e\xef\x4f\x31\xf8\x77\x07\xf9\x41\xd7\x7b\x47\x7b\x25\x5d\xc8\x8b\x34\x36\x57\xd3\xab\x63\xe2\x10\x28\xa5\x04\x59\x1a\xaf\x85\xb5\x92\x2a\xcd\x3a\xf6\xe5\xf2\xdd\x8b\x76\xed\x78\xff\x39\xc9\xb9\x0b\x09\x58\x9a\x79\xe6\xcf\x3e\xf3\xcc\xfe\x0f\x26\x46\x20\xcc\xd0\xad\x25\xc7\xde\x4a\x6a\x91\xc0\x90\x61\x66\xf4\x0c\xa9\xc7\xac\xbc\x43\xe7\xa5\xd1\x09\x30\x6b\x7d\xbc\xfe\xd8\xcb\x90\x98\x60\xc4\x92\x1e\x80\x66\x19\x26\x80\x73\x1f\x71\x2f\x23\x6d\x04\xee\x0e\xbd\x65\x1c\x13\x58\xe5\x73\x8c\xfc\xd6\x13\x66\x3d\x00\xc5\xe6\xa8\x7c\xf0\x03\x78\x7c\x8c\x40\x6a\xae\x72\x81\xd0\x67\x0f\x3e\xda\x83\x08\x27\xd7\xe8\x06\xa5\x6d\x1f\x06\xf0\x0d\xb4\xd4\x02\x35\xc1\x4f\xf0\xf4\xd4\xf3\x16\x79\x80\xf0\xa8\x90\x93\x71\x25\x5c\xc6\x88\x2f\xbf\x54\xf0\x21\xe4\xdb\x4a\xed\x2d\x91\xf7\xc0\x5f\x3a\x32\xf8\x39\x64\x00\x40\x98\x59\xc5\x08\x77\xb1\x2b\x0d\x09\x8f\xaa\xa5\x71\x3c\x91\xd3\x9a\x70\x5e\xa6\xf0\xec\xbe\x80\xc1\x1d\x53\x39\xfa\x41\x80\x1e\x58\x23\x2e\xb5\x36\xc4\x48\x1a\xed\x0f\xb6\xec\x70\x98\xc0\xe3\x23\x90\xf9\x93\x65\xea\x45\xdf\xa3\x31\x51\x8b\xfd\xc1\xfe\x6d\x14\x21\x16\x0b\xa9\x25\x6d\x0f\x95\x07\xd4\xcb\xd6\x29\x80\xc3\x7f\x72\xe9\x50\x0c\x73\x27\x75\x3a\xe3\x4b\x14\xb9\x92\x3a\x1d\xa7\xda\x3c\x1f\x8f\x36\xc8\xf3\x90\x49\xd5\xb3\xc4\x9c\xed\x5e\xd1\x2d\xba\xcc\xd7\xaf\xa3\x92\x0a\xa3\x8d\x75\xe8\x7d\x51\x6e\xed\x3e\x58\xac\x70\x9b\x00\xae\xfc\x80\x65\xec\xab\xd1\xec\xc1\x0f\xb8\xc9\x62\x6e\x32\x9b\x13\x46\xb4\xb5\xd8\xf0\x01\x30\x16\x1d\x0b\x74\x83\x89\xa1\xb1\x6e\xdd\xaf\x8b\x3e\x36\x63\x85\x68\x0b\xe6\x52\x46\x7b\xc4\x6a\xfa\x07\xeb\x30\x27\x4e\x23\xa1\x1f\x48\x13\x1b\x9f\x80\x92\x3a\xdf\xec\xee\x97\xc6\xd3\x04\xe9\xc1\xb8\x55\x02\xe4\xf2\x3d\x96\x75\xd2\x38\x49\xdb\x2b\xc5\xbc\x9f\x14\xa3\x58\xce\x5a\xc1\xb2\x88\x3b\x49\x92\x33\xb5\xb3\x26\xa3\x42\x09\xf5\x96\x44\x95\xc2\x46\x1b\xe9\xc9\xd7\xc8\xf9\x20\x69\x59\xe7\x48\x05\x25\x70\xa0\xc2\x24\xf8\x06\x6d\xba\xb4\x08\x03\xc0\x8d\x26\x26\x35\xba\x5a\x1a\x07\x25\xb1\x2a\x4f\x65\xb5\xc1\x1e\x79\x5e\x94\x69\x34\xe1\x86\xea\x3d\xb6\x4e\xae\xa5\xc2\x14\x45\xad\x35\xe1\x91\x19\x4b\xb1\x20\xfb\xbe\x82\xe2\x64\xe0\xd0\x1a\x2f\xc9\xb8\x2d\x3c\x3d\x25\xad\x6b\x62\x69\x35\x7f\x00\xe6\xd2\x16\xc9\x6a\x63\x5c\x1e\x45\x11\x6a\x61\x8d\xd4\x74\xf1\xee\xec\x6a\x36\xbe\x1f\x4d\x86\xd3\xeb\xf1\xe4\xf6\xff\x2d\x43\x65\x52\x32\x9e\x04\x3a\xd7\xba\x5b\x5f\x7c\xaa\x9c\xa1\x5e\xb7\x42\x17\x9d\xaa\x06\x68\x90\xae\xa0\x62\x02\xb9\x96\x9b\x24\xe6\x5e\x86\xbf\x81\x37\x7c\x55\xb1\x5b\x1b\x95\x67\xf8\x87\xc9\x35\xb5\x6b\x2b\x02\x04\x4a\x2a\xa4\x48\x48\xd7\xc0\xcf\x82\xd7\x94\xd1\x32\x81\x78\xcd\x5c\xac\xe4\x3c\xde\x59\x77\x5a\x3a\x63\x59\x5a\x50\x26\x81\xfe\xaf\x52\x48\x87\x3c\xfc\x62\xaa\xdf\x19\xb9\x24\xc0\x2b\x81\xb9\x97\x9d\xce\x02\xc3\x22\x7b\xc5\x59\xe0\xba\x72\x6b\x8d\x3b\xd6\x84\x25\x32\x45\xcb\xaf\x0d\xa8\x67\x06\x4f\x8d\xa3\x04\x7e\x39\xff\x70\xde\xb0\xb0\xce\x90\xe1\x46\x25\x70\x7b\x35\xad\xdc\x29\xb9\x46\x8d\xde\x4f\x9d\x99\x63\x3d\xe4\x92\xc8\x7e\x46\x6a\x2a\x88\x2d\x33\xee\x4e\xc4\x16\xf1\xbb\xee\x82\xe4\x4a\xa6\x86\xa8\xd8\x76\x86\xdc\x68\xe1\x13\xf8\xf8\xa1\x66\x43\x32\x43\x93\xd3\xf3\xf5\x8f\xf5\xc1\x42\x27\x8d\x38\xe6\xbb\x60\x52\xe5\x0e\x6f\x97\x0e\xfd\xd2\x28\x91\xc0\xa7\xd6\x30\x17\x22\x54\x6e\xb2\xc8\x61\x2a\x3d\x39\xe6\x3a\xe7\xd3\x3a\xa9\x69\x01\xfd\xf7\x3e\x79\x1f\xd6\xdd\x6e\x1e\xbd\x14\xc8\x99\x2b\x95\x67\x58\x00\xdd\xec\x71\xc6\xcd\x51\x7e\xbb\xd3\x9b\x06\x3c\x2a\xf6\x30\x13\x22\xac\x91\x8b\x77\x67\x97\xc3\xe1\xcd\x68\x36\x6b\xcf\xf2\x7e\x4e\xf6\x15\x06\x66\x47\xe1\xad\x5d\xbc\x3b\x1b\xde\x8c\xef\x46\x37\xf7\x37\xa3\xcf\xf7\xb3\xeb\xab\xdf\xef\xa7\x97\xb7\xbf\xb5\x11\xea\x13\xaf\xe4\x02\xf9\x96\x2b\x6c\xea\x1c\xce\xc8\xd8\x26\x3d\x70\x73\xd8\xbf\x87\x87\x9b\x2c\x63\xe1\x4b\xee\xaf\x7e\x3c\x97\x3a\xf6\xcb\xfe\x0f\xd0\x8f\x78\xf8\xef\x32\x88\xdc\x02\xe2\x6a\xbe\x31\xce\xfd\x20\xa8\xc4\x6e\x15\x86\x62\x0a\xc5\x80\x9a\x7e\xf4\xff\x7e\x8b\x32\xed\x3a\xd5\x2d\x4a\xc7\xf4\xe8\xe0\xde\xd5\xb3\x23\x58\x0d\xf1\x89\x4b\xe1\xf0\xcd\x6a\x4e\xd3\xbf\xff\xa4\x42\x35\x32\xbc\x0c\x51\x35\x6d\x8d\xd0\x5e\x2f\x22\x1b\x04\xe3\xa4\xd9\xa9\x49\xce\xeb\x53\xd3\x61\x7e\xc2\xbc\x9c\xbe\x76\xbe\xb3\xed\x25\x60\xc7\x97\x44\xf7\xfa\x0a\x5f\x52\x05\x46\x7d\xb6\x5e\xdf\x65\xe1\x9b\x30\x81\x61\xb1\xba\x8c\xdb\xb6\xc2\x75\xa6\xfd\x3d\xd1\x8e\x92\xf7\xa5\x34\xae\xdd\x95\xc3\xc3\xb7\xe5\x9b\xf8\x77\x4a\x52\xf7\x3b\xbc\xed\x8b\xd9\xb4\xb2\xe8\xdc\xc5\x2f\xc6\xaf\x2f\xe6\x76\x84\x7f\x03\x00\x00\xff\xff\x4d\x7e\x7b\x78\xaf\x0e\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x57\xdf\x6f\xdb\x36\x10\x7e\xcf\x5f\x71\xf0\x5a\xa0\x05\x26\xbb\xdd\x2f\x74\x02\xf2\xe0\xc5\x46\x17\xac\x4b\x83\x38\x28\x30\x0c\x43\x40\x93\x67\x8b\x08\x45\x72\xe4\xc9\xb1\x9b\xe4\x7f\x1f\x28\x59\xb1\x28\xc9\x49\xea\x6d\x6f\x35\xd0\x02\x21\xef\xbe\xfb\x78\x77\xfc\x78\xfa\x06\xce\x8c\x40\x98\xa1\x5b\x49\x8e\x47\xd7\x52\x8b\x14\x26\x0c\x73\xa3\x67\x48\x47\xcc\xca\x4f\xe8\xbc\x34\x3a\x05\x66\xad\x1f\xad\xde\x1e\xe5\x48\x4c\x30\x62\xe9\x11\x80\x66\x39\xa6\x80\x73\x9f\x70\x2f\x13\x6d\x04\x6e\x17\xbd\x65\x1c\x53\xb8\x2e\xe6\x98\xf8\x8d\x27\xcc\x8f\x00\x14\x9b\xa3\xf2\xc1\x0f\xe0\xf6\x36\x01\xa9\xb9\x2a\x04\xc2\x80\xdd\xf8\xa4\x06\x11\x4e\xae\xd0\x0d\x2b\xdb\x01\x0c\xe1\x0e\xb4\xd4\x02\x35\xc1\x0f\x70\x7f\x7f\xe4\x2d\xf2\x00\xe1\x51\x21\x27\xe3\x2a\xb8\x9c\x11\xcf\x3e\x34\xf0\x21\xf0\xed\x50\x7b\x4e\xe4\x1a\xf8\x43\x0f\x83\x9f\x02\x03\x00\xc2\xdc\x2a\x46\xb8\x8d\xdd\x48\x48\xf8\xa9\x88\xc6\x7e\x22\x87\x25\xe1\x5d\x45\xe1\xc1\x7d\x01\xc3\x4f\x4c\x15\xe8\x87\x01\x7a\x68\x8d\x18\x6b\x6d\x88\x91\x34\xda\xef\x6c\xd9\x6e\x31\x85\xdb\x5b\x20\xf3\x07\xcb\xd5\xa3\xbe\x7b\x63\xa2\x16\xf5\x42\x5d\x8d\x32\xc4\x62\x21\xb5\xa4\xcd\xee\xe4\x01\x75\xdc\x59\x05\x70\xf8\x77\x21\x1d\x8a\x49\xe1\xa4\x5e\xce\x78\x86\xa2\x50\x52\x2f\x4f\x97\xda\x3c\x2c\x4f\xd7\xc8\x8b\xc0\xa4\xe9\x59\x61\xce\xb6\x25\xba\x44\x97\xfb\x78\x3b\xa9\x5a\x61\xba\xb6\x0e\xbd\x2f\x8f\x1b\xed\x07\x8b\x6b\xdc\xa4\x80\xd7\x7e\xc8\x72\xf6\xd9\x68\x76\xe3\x87\xdc\xe4\x23\x6e\x72\x5b\x10\x26\xb4\xb1\xd8\xf2\x01\x30\x16\x1d\x0b\xed\x06\x67\x86\x4e\x75\x67\x7f\x55\xe6\xb1\x1d\x2b\x44\x5b\x30\xb7\x64\x54\x23\x36\xe9\xef\xac\xc3\x3d\x71\x1a\x09\xfd\x50\x9a\x91\xf1\x29\x28\xa9\x8b\x75\xd4\x28\x37\x92\xb2\xb8\x5e\x4d\xac\x50\x90\x46\x59\xe1\x0e\xba\xb5\xeb\x54\x0f\x20\x33\x9e\xce\x90\x6e\x8c\xbb\x4e\x81\x5c\x51\xd3\xf4\x95\x20\x8c\x39\x37\x85\xa6\xb3\xf2\x9a\xdf\xde\x3e\x84\x8f\xb7\xb7\x6c\x58\x8e\x3b\x60\xeb\xa4\x71\x92\x36\x27\x8a\x79\xdf\xf1\xaf\xda\xad\x6d\x02\x77\x20\x70\xc1\x0a\x45\x30\xa8\x44\x23\xe1\xaa\xf0\x84\x2e\xe1\x4e\x92\xe4\x4c\x0d\x76\x11\xc8\xa8\x50\x92\xb8\xc4\x7d\x57\x62\x6b\x88\x63\xa5\x2e\x99\xd4\xe4\x9b\x19\x49\x1a\x95\x9d\xae\xa5\x27\xbf\x3f\x59\xfb\xea\xd0\x60\x72\x60\x19\xb8\xd1\xc4\xa4\x46\xd7\x38\x4a\xd2\x50\x57\xab\x8a\xa5\x6c\x36\x9d\x47\x5e\x94\xb9\x33\x9a\x70\x4d\x71\xdf\x59\x27\x57\x52\xe1\x12\x45\x54\xd3\xf0\x93\x39\x5b\xc6\xa5\x28\x57\x86\x0e\xad\xf1\x92\x8c\xdb\xc0\xfd\x7d\xda\xd9\x26\xb6\x6c\xf2\x07\x60\x6e\xd9\xb9\x78\x91\xb4\x55\x4b\x49\x82\x5a\x58\x23\x35\x1d\xbf\x78\x75\x32\x3b\xbd\x9a\x9e\x4d\xce\x3f\x9e\x9e\x5d\xbe\x8e\x0c\x5b\x55\x5b\x19\x55\xe4\x38\x26\x62\x3c\xfb\x20\x73\x49\x71\xec\x0a\xb8\x32\x4a\x58\x69\x95\xa8\x60\x76\xdc\xe0\xfd\x24\x46\x4f\x75\x6b\x68\x65\x96\x64\x3c\x09\x74\xae\x1b\xf6\xf8\xc7\xc6\x1a\xea\x55\x27\x0b\x65\xd1\x9a\x67\x6d\x69\x42\xa9\x14\x29\x14\x5a\xae\xd3\x11\xf7\x32\xfc\x1b\x7a\xc3\xaf\x1b\x76\x15\xfb\xdf\xc3\xe5\xea\xa6\xb9\x0c\x10\x14\x43\x21\x25\x42\xba\x16\x7e\x1e\xbc\xce\x19\x65\x29\x8c\x56\xcc\x8d\x94\x9c\x8f\xb6\xd6\xbd\x96\xce\x58\xb6\x2c\xbb\x37\x85\xc1\x2f\x52\x48\x87\x3c\xfc\xc5\xd4\xa0\x37\x72\xd5\x8b\x4f\x04\xe6\x5e\xf6\x3a\x0b\x0c\xba\xf1\x84\xb3\xc0\x55\x63\xd7\x1a\xb7\x2f\x09\x19\x32\x45\xd9\xe7\x16\xd4\xc3\x65\x3a\x37\x8e\x52\xf8\xf9\xdd\x9b\x77\x2d\x0b\xeb\x0c\x19\x6e\x54\x0a\x97\x27\xe7\x8d\x3d\x25\x57\xa8\xd1\xfb\x73\x67\xe6\x18\x87\xcc\x88\xec\x7b\xa4\xb6\xc0\xdb\x8a\x71\x3f\x11\x5b\xc6\xef\xdb\x0b\x2f\xa2\x64\x6a\x82\x8a\x6d\x66\xc8\x8d\x16\x3e\x85\xb7\x6f\x22\x1b\x92\x39\x9a\x82\x1e\xb6\xbf\x8f\xef\x38\x3a\x69\xc4\x3e\xdf\x05\x93\xaa\x70\x78\x99\x39\xf4\x99\x51\x22\x85\x66\xd7\xf6\x89\xa4\x43\x6f\x0a\xc7\xd1\xc7\x17\xa2\x5f\xf0\xf6\x18\x3f\x2c\x47\x13\x46\x63\x8e\x78\xfb\x5d\x17\xbd\x73\x07\xcb\x45\xe5\xf1\x09\x22\xff\x3f\x87\x78\xb1\xee\xb9\x90\x80\xed\x7c\x96\x38\x5c\x4a\x4f\x8e\xb9\x5e\x85\xb5\x4e\x6a\x5a\xc0\xe0\xa5\x4f\x5f\x86\x21\xae\x7e\x3b\xa5\x40\xce\x5c\x95\xca\x49\x09\x74\x51\xe3\x9c\xb6\xc5\xf8\xf9\x4e\xcf\x92\xe8\xa4\x9c\x2e\x99\x10\x61\x38\x3a\x7e\xf1\x6a\x3c\x99\x5c\x4c\x67\xb3\xd7\x1d\xb3\x5a\x5e\xea\x13\x06\x41\x48\x42\xb3\x1f\xbf\x78\x35\xb9\x38\xfd\x34\xbd\xb8\xba\x98\xbe\xbf\x9a\x7d\x3c\xf9\xed\xea\x7c\x7c\xf9\x6b\x17\x21\x16\x4a\x25\x17\xc8\x37\x5c\x61\xfb\xa5\xc2\x19\x19\xdb\xbe\x55\xb8\xde\x4d\x95\xbb\x1f\x37\x79\xce\xc2\xf7\xc9\x9f\x83\xd1\x5c\xea\x91\xcf\x06\xdf\xc2\x20\xe1\xe1\x7f\x97\x43\xe2\x16\x30\x6a\xf2\x1d\xe1\xdc\x0f\x83\xb8\x6e\x07\xbc\x70\x98\x52\x68\x21\x92\xdd\xc1\x5f\xcf\x11\xf4\x6d\xa6\xfa\xb5\x7c\x9f\x8c\xef\xdc\xfb\x72\xb6\x07\xab\xa5\xd9\xa3\x4a\x6f\x7d\xfb\x34\x87\x3d\x1b\xff\x4a\xbc\xa3\x66\x78\x1c\xa2\x69\xfa\x55\x79\xfe\x1b\xe5\xa9\x5f\xa7\xc4\x86\xe7\xe9\x20\xc9\x89\x1e\xb8\xa7\xc5\xa6\xc7\xfc\x00\x99\x39\x7c\xc8\x39\xa0\x5b\xbf\x76\xd8\x17\x77\x58\x55\x87\x9e\x2f\x8f\xfe\x19\x33\x7c\x32\x96\xa9\x8f\x95\xfc\xe9\x81\x33\x7c\x57\xa7\x30\x29\xe7\x4b\xe3\x36\x9d\x70\xbd\xd5\xfe\x92\x68\x7b\xa5\xf2\x31\x1a\x1f\xdd\x89\xc3\xdd\xf7\xf9\xb3\xd4\xee\x10\x52\x57\x5b\xbc\xcd\xa3\x6c\x3a\x2c\x7a\x07\xe6\x47\xe3\xc7\xd3\x73\x37\xc2\x3f\x01\x00\x00\xff\xff\x36\x17\xdf\xcb\xf3\x13\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/role-snapshot-controller-leaderelection.yaml": &vfsgen۰CompressedFileInfo{ name: "role-snapshot-controller-leaderelection.yaml", @@ -187,37 +194,44 @@ var vfsgenAssets = func() http.FileSystem { "/charts/components/aws-ebs-csi-driver/templates/rolebinding-snapshot-controller-leaderelection.yaml": &vfsgen۰CompressedFileInfo{ name: "rolebinding-snapshot-controller-leaderelection.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 462, + uncompressedSize: 489, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xbd\x4e\x03\x31\x10\x06\x7b\x3f\xc5\x2a\xbd\x8d\x90\x28\xd0\x75\xd0\xd0\x27\x52\xfa\x3d\xfb\x0b\x59\xe2\x5b\x9f\xfc\x13\x04\x21\xef\x8e\x9c\x8b\xa0\x89\x90\xe8\x77\x47\xdf\xcc\xe9\x64\x49\x76\xe4\xb6\x1c\x1b\x8a\x83\xf2\x18\xb1\x4d\xb1\x4d\xd8\x28\xcf\x65\x9f\x2a\x9d\xcf\xc6\x5a\x6b\x0e\xa2\x61\xa0\x75\x8a\x78\x16\x0d\xa2\xaf\x86\x67\xd9\x22\x17\x49\x3a\x50\x1e\xd9\x3b\x6e\x75\x9f\xb2\x7c\x72\x95\xa4\xee\xf0\x58\x9c\xa4\xbb\xe3\xbd\x99\x50\x39\x70\xe5\xc1\x10\x29\x4f\x18\xa8\x5c\xe1\xd6\x27\xad\x39\xc5\x88\x6c\x23\x38\x20\x23\xc2\xf7\xf7\xeb\x69\x99\xd9\x63\xa0\x43\x1b\x61\xcb\x47\xa9\x98\x0c\x51\xe4\x11\xb1\x74\x1a\xd1\xc5\x40\x7d\x6c\x01\xb4\xe2\xf7\x62\x31\x16\xeb\x8b\xd8\x90\xe5\x88\xec\x96\xdb\x15\x39\xfa\x22\x15\x0d\xd0\x4a\x0f\xdd\xa9\xb4\xf1\x0d\xbe\x5e\x30\x96\x16\xbb\x0d\xf2\x51\x3c\x9e\xbc\x4f\x4d\xeb\x85\xbf\xec\xed\xd0\x1b\x9b\x7f\x2e\x6e\xcc\xcc\x29\x62\x8d\x5d\xc7\xff\xa6\xfb\x5f\x00\x9e\xe5\x25\xa7\x36\xff\x91\xd7\x98\x1e\x00\x1a\xba\xd2\x77\x00\x00\x00\xff\xff\x13\xae\x60\x48\xce\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xbd\x4e\x2b\x31\x10\x85\x7b\x3f\xc5\x28\xbd\x7d\x75\xa5\x5b\x5c\x6d\x07\x0d\x7d\x22\xa5\x9f\xb5\x4f\x88\x89\x77\xbc\xf2\xd8\x41\xb0\xe4\xdd\x91\xf3\x03\x42\x42\x48\xf4\x67\xbe\x39\xe7\x5b\x16\x4b\x71\x47\x6e\xcb\xa9\x41\x1d\x84\xc7\x84\x6d\x4e\x6d\xc2\x46\x78\xd6\x7d\xae\x74\x3a\x19\x6b\xad\x39\x44\x09\x03\xad\x73\xc2\x7d\x94\x10\xe5\xd1\xf0\x1c\xb7\x28\x1a\xb3\x0c\x54\x46\xf6\x8e\x5b\xdd\xe7\x12\x5f\xb9\xc6\x2c\xee\xf0\x5f\x5d\xcc\x7f\x8e\x7f\xcd\x84\xca\x81\x2b\x0f\x86\x48\x78\xc2\x40\x18\xd5\xea\xf5\x81\xf5\x59\x6a\xc9\x29\xa1\xd8\x04\x0e\x28\x48\xf0\x1d\x71\x8d\xeb\xcc\x1e\x03\x1d\xda\x08\xab\x2f\x5a\x31\x19\xa2\xc4\x23\x92\x76\x22\xd1\x79\x85\xf8\xd4\x02\x68\xc5\xcf\x6a\x3b\xde\x6b\xb4\xa1\xc4\x23\x8a\xbb\x64\x57\xe4\xe8\x8d\x24\x4a\x80\x54\xfa\xd7\x77\x69\x1b\x9f\xe0\xeb\x19\x63\xe9\xb2\x70\x83\x72\x8c\x1e\x77\xde\xe7\x26\xf5\xcc\xbf\x74\x5e\x96\x0f\x4f\xfa\x25\xe3\x6e\x4b\x5c\x0f\x76\xee\xed\xe8\x9b\xe6\x25\x27\xac\xb1\xeb\x1f\x3f\x8d\xfe\xde\x0b\xcf\xf1\xa1\xe4\x36\xff\x60\xde\x98\xee\x05\x12\x7a\xa3\xf7\x00\x00\x00\xff\xff\xc2\x54\xe3\xdb\xe9\x01\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/serviceaccount-csi-controller.yaml": &vfsgen۰CompressedFileInfo{ name: "serviceaccount-csi-controller.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 470, + uncompressedSize: 557, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x8b\xdb\x30\x10\x85\xef\xfe\x15\x0f\xf7\x6c\xed\x2e\x34\x9b\xa0\x5b\x0e\x39\x94\xd2\x1e\x1a\x08\xf4\x38\x96\x27\x54\x58\x1a\xa5\x1a\x39\xa6\x71\xf3\xdf\x8b\x71\x43\x92\xc3\x5e\x04\x4f\xfa\xe6\xe9\x63\xe8\xe4\x0f\x9c\xd5\x27\xb1\x38\xbf\x55\xbd\x97\xce\x62\xcf\xf9\xec\x1d\x6f\x9d\x4b\x83\x94\x2a\x72\xa1\x8e\x0a\xd9\x0a\x10\x8a\x6c\xc1\xad\x36\x4e\x7d\xe3\x92\x94\x9c\x42\xe0\xdc\x28\xfd\x7f\xd5\x13\x39\xb6\xe8\x87\x96\x1b\xfd\xa3\x85\x63\x05\x04\x6a\x39\xe8\x5c\x00\x4c\x53\x03\x2f\x2e\x0c\x1d\xa3\xa6\x51\x9b\x5b\x5b\x97\xfd\x99\xb3\x59\xd8\x1a\x06\x7f\x21\x5e\x3a\x96\x82\xcf\xb8\x5e\xab\x65\x74\xf4\xe5\x17\xcc\x81\xc2\xc0\x6a\xf4\xc9\xd4\xdc\x7d\x0c\x89\xa4\x42\xc5\x27\xd1\x65\xf6\xe1\xc2\x62\x9a\x50\xd2\x4f\x8a\xe1\xa3\x5f\x58\xba\x7b\xf0\x47\xf0\x6f\x98\x1f\x1c\x98\x94\xcd\x77\x8a\x8c\xba\x1f\xb4\xa4\xe8\x2f\x5c\x2f\xe0\xa7\x9d\x50\x1b\x78\x86\x77\x5f\xf7\xf8\xb2\xfd\x86\x63\xca\xd8\x6f\xe1\x15\x83\x72\x37\x33\x8f\x12\x73\x06\xb8\x57\x43\x91\x2e\x49\x68\x54\xe3\x52\x7c\xc9\x29\x70\x43\x59\x2c\xe6\x83\x46\xb5\x9e\xa2\xb5\xab\xcd\xfb\xea\x7d\xb5\xde\xac\x5f\xdf\x5e\xed\xcc\xbc\xdc\xf6\x36\x87\x67\xed\x7f\x01\x00\x00\xff\xff\x0c\x9a\xf5\x4c\xd6\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x3f\x8b\xe3\x30\x10\xc5\x7b\x7f\x8a\xc1\x57\x5b\x49\xe0\xf2\x07\x75\x29\x52\x1c\xc7\x5d\x71\x81\xc0\x95\x63\x79\xc2\x0a\x4b\xa3\xac\x46\x8e\xd9\x78\xfd\xdd\x17\xc5\x1b\x36\x29\x16\xd2\x08\x3d\xf1\x7b\x33\x6f\x34\xc3\x50\x81\x3d\x82\x3a\xa0\xeb\x48\x94\x50\x3c\x5b\x43\x5b\x63\x42\xc7\x49\x99\xc0\x29\x06\xe7\x28\x2a\x13\x09\x13\x41\x35\x8e\x05\x9e\xec\x81\xa2\xd8\xc0\x1a\xce\x8b\xa2\xb5\xdc\x68\xd8\x3f\x38\x0b\x4f\x09\x1b\x4c\xa8\x0b\x00\x46\x4f\x1a\x86\xe1\x89\x2e\x19\x85\x71\xfc\x34\xc9\x09\x0d\x69\x68\xbb\x9a\x2a\x79\x93\x44\xbe\x00\x70\x58\x93\x93\x5c\x17\xe0\x9a\x9e\x8d\xeb\x1a\x82\x12\x7b\xa9\xa8\x96\xca\x88\xad\x9a\x68\xcf\x14\xd5\xc4\x96\xa0\xe0\x1d\xd8\x72\x43\x9c\xe0\xe7\x54\x3f\x5b\x7b\x9b\x5e\x9e\x08\x85\xcc\x21\x61\xb2\x81\x65\xf2\xde\x3d\x5c\xe7\x4a\xe1\x3f\x7a\xf7\x5d\x17\xe2\xe6\x4b\xd8\x23\xd0\x2b\xa8\x7f\xe4\x08\x85\xd4\xdf\x3c\x6f\xd9\x76\x92\x82\xb7\x17\x2a\x27\xf0\xc7\x8e\xb1\x76\x94\xe1\xdd\xef\x3d\xfc\xda\xfe\x81\x63\x88\xb0\xdf\x82\x15\xe8\x84\x9a\xcc\xdc\x87\xc8\x1a\x80\x5a\x51\xe8\xf1\x12\x18\x7b\x51\x26\xf8\x59\x0c\x8e\x2a\x8c\xac\x21\x1f\xd8\x8b\xb6\xe8\xb5\x5e\x6e\x56\xcb\xd5\x72\xbd\x59\xcf\x17\x73\x9d\x99\xd9\xed\xdf\xb2\x78\x8c\x7d\xbb\xe6\xc5\x7f\x04\x00\x00\xff\xff\x3f\x47\x04\x76\x2d\x02\x00\x00"), + }, + "/charts/components/aws-ebs-csi-driver/templates/serviceaccount-csi-node.yaml": &vfsgen۰CompressedFileInfo{ + name: "serviceaccount-csi-node.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 356, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xc1\x6a\xec\x30\x0c\x45\xf7\xf9\x8a\xcb\xec\x6d\x78\xf0\x56\xd9\xf5\x1b\x0a\x03\x5d\x2a\xb6\x4a\xc5\x38\xf2\x60\x29\x19\x4a\x9a\x7f\x2f\x9e\xb4\xd0\x2e\x3a\x3b\x5b\xdc\x73\xb8\xd2\xb6\x05\xc8\x2b\xe2\x99\xca\xc2\x16\x8d\xdb\x2a\x89\x9f\x52\xaa\x8b\x7a\xd4\x9a\x39\xa6\xc6\xe4\x8c\xb0\xef\x03\x5d\xe5\xcc\xcd\xa4\xea\x88\xf5\xdf\x70\x11\xcd\x23\x9e\x7f\x31\xc3\xcc\x4e\x99\x9c\xc6\x01\x50\x9a\x79\xc4\xb6\x3d\xf4\xf7\x10\xf6\xfd\x2b\x6e\x57\x4a\x3c\xe2\xb2\x4c\x1c\xec\xdd\x9c\xe7\x01\x28\x34\x71\xb1\x6e\x04\xee\x8d\x35\x95\x25\x33\x4e\x74\xb3\xc0\x93\x85\x64\x12\x72\x93\x95\x5b\x3c\xb2\x27\x44\x7c\x40\x45\x33\xab\xe3\xff\xe1\xef\xe8\x4d\xfc\xed\x61\x1d\x52\xad\x4e\x2e\x55\xed\xa0\x7e\x0c\xee\xbb\x78\x7d\xa1\xb9\xfc\xe5\x67\xcd\xfd\xf3\xfd\xec\x57\xfb\x0c\x00\x00\xff\xff\x7c\x38\x0c\xd5\x64\x01\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/serviceaccount-snapshot-controller.yaml": &vfsgen۰CompressedFileInfo{ name: "serviceaccount-snapshot-controller.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 341, + uncompressedSize: 420, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xc1\x6a\xec\x30\x0c\x45\xf7\xfe\x8a\xcb\xec\x6d\x78\xf0\x56\xde\xf5\x1b\x06\x02\x5d\x2a\xb6\xca\x98\x71\xe4\x60\x29\x19\x4a\x3a\xff\x5e\xd2\x4c\xcb\x74\xd1\x9d\x2d\xe9\x1e\x1d\x6d\x9b\x47\x79\x43\x18\xa8\x2e\xac\x81\x85\xc6\xca\x43\xab\xcb\xc4\x67\xa1\x59\x2f\xcd\x70\xbf\x3b\xef\xbd\xa3\xb9\x0c\xdc\xb5\x34\x89\x58\xff\xb9\x6b\x91\x1c\x71\xe6\xbe\x96\xc4\x2f\x29\xb5\x45\xcc\x4d\x6c\x94\xc9\x28\x3a\x40\x68\xe2\x08\x1e\xd5\xeb\x83\xe4\x53\x13\xeb\xad\x56\xee\x8f\xbe\xce\x94\x38\xe2\xba\x8c\xec\xf5\x5d\x8d\x27\x07\x54\x1a\xb9\xea\x8e\x00\xbe\xfc\x24\xd5\x25\x33\x4e\x74\x53\xbf\xf3\x92\x16\x9f\x7b\x59\xb9\x87\x63\xf6\x84\x80\x0f\x48\x91\xcc\x62\xf8\xbf\x1b\x1f\xd1\x5b\xb1\xcb\xcf\x71\xfa\xcb\x35\x7c\x5b\x05\x12\x69\x46\x56\x9a\xe8\x91\x7c\x2a\x44\x6c\x1b\xac\xbd\xd2\x54\xff\xda\xc1\x92\xf7\xcf\xd3\xf3\x33\x00\x00\xff\xff\xe9\x38\xd0\xbb\x55\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xcd\x6a\xc3\x30\x10\x84\xef\x7a\x8a\x25\x77\x09\x0a\x3d\xf9\xd6\x67\x08\x18\x7a\x5c\x4b\x53\x22\x22\xaf\x8c\x77\xed\x50\xdc\xbc\x7b\x51\xdc\x42\x7f\x08\xb9\x09\xf1\x7d\x33\x23\x6d\x9b\xa7\xfc\x46\xa1\xe7\xb2\x40\x03\x84\x87\x82\xbe\x96\x65\xc4\x51\x78\xd2\x53\x35\xba\x5e\xdd\x1f\x4c\x31\xaf\x39\xe2\x25\xc6\xba\x88\x05\xfd\x22\x43\x9c\xc1\x86\x26\x78\xef\x1d\x4f\xb9\xc7\xac\xb9\x4a\x47\xeb\x93\x3b\x67\x49\x1d\x1d\x7f\xa9\x6e\x84\x71\x62\xe3\xce\x11\x09\x8f\xe8\x68\xdb\x1e\xd6\x34\xb0\x95\xec\x8a\x4e\x1c\xd1\xd1\x79\x19\xe0\xf5\x5d\x0d\xa3\x23\x2a\x3c\xa0\x68\x4b\x25\xba\x8d\x97\x58\x96\x04\x3a\xf0\x45\x3d\x06\xf5\x51\xb3\x4f\x73\x5e\x31\x87\x9d\x3d\x50\xa0\x0f\x92\x2c\x09\x62\xf4\xbc\xe7\x37\xf5\x92\xed\xf4\x70\x12\x8b\x54\x63\xcb\x55\x74\x37\x7f\x5c\xdc\xde\x64\xf5\x95\xc7\x72\xaf\x03\x92\xbe\xbf\xf9\xff\xf1\x33\x00\x00\xff\xff\xc1\x20\x96\x57\xa4\x01\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/statefulset.yaml": &vfsgen۰CompressedFileInfo{ name: "statefulset.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 860, + uncompressedSize: 1417, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x8b\xea\x30\x10\xc6\xef\x85\xfe\x0f\x83\xef\x9c\x4a\x1f\xef\x2d\x12\xf0\xb0\x77\xd9\x8b\xe0\x7d\x9a\x8e\x1a\x4c\x93\x6c\x26\xed\x22\xae\xff\xfb\xd2\xb4\x4a\x97\x15\x95\xcd\x2d\xd3\x99\x6f\x7e\xdf\xd7\x9c\x4e\x02\xf4\x16\x8a\x0d\x9a\x96\xb8\x20\x8b\x95\xa1\x8d\x33\x6d\x43\x6b\x8b\x9e\xf7\x2e\xc2\xf9\x9c\x67\x7f\xae\x37\xe5\x6c\x0c\xce\x18\x0a\x79\x76\xd0\xb6\x96\xb0\x8e\x18\x69\xdb\x9a\x35\xc5\x3c\x43\xaf\x37\x14\x58\x3b\x2b\x01\xbd\xe7\x79\x57\xe6\x59\x43\x11\x6b\x8c\x28\xf3\x0c\xc0\x62\x43\x12\xa8\x62\xc1\xa3\xa6\x98\x6a\x0e\x0d\xec\x51\x91\x84\x43\x5b\x91\xe0\x23\x47\x6a\xfa\x2f\x06\x2b\x32\x9c\x54\x00\x12\xba\x55\xa6\xad\x09\x66\xf8\xc1\xa2\x97\x54\xac\x45\x1d\x74\x47\xa1\x18\x9a\x67\x50\xc0\x27\x58\x6d\x6b\xb2\x11\xfe\x25\x33\xec\x49\x25\x11\xa6\xd0\x69\x45\x6f\x8f\x88\x02\x79\xa3\x15\xb2\x84\x72\x18\x33\xa4\xa2\x0b\x23\x48\x83\x51\xed\x57\x53\x34\xe8\xad\xdf\x55\x7c\xc6\xc0\x65\xcd\xea\x86\x91\x97\x64\x04\x20\x52\xe3\x0d\x46\xba\xa0\x4c\x83\xee\x8f\xf9\x8e\xf5\x1c\xd8\xef\xb2\x5d\x8c\x48\x00\xd7\x7c\xd3\x65\xc8\xf8\x55\x29\xd7\xda\xf8\x30\xea\xfe\xf4\x15\xd4\x96\xc2\x14\x5c\x8c\x0f\xe7\x2e\x37\x80\x6e\x70\x47\x12\xde\x5b\x3c\x16\xda\xcd\x0f\x0b\x56\xac\xe7\x37\x86\x64\xf7\xb7\x28\x8b\x72\x3a\x8b\x61\x37\xdd\x38\x6c\x15\xa2\x5b\xfe\xff\x59\x34\x84\x35\x05\x91\x7e\x91\x76\x76\xb9\x45\xc3\x94\x67\x7d\x70\x64\xeb\x14\xc5\x57\x00\x00\x00\xff\xff\x84\x95\x8b\x6a\x5c\x03\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\x4f\x4f\xdb\x40\x10\xc5\xef\xfe\x14\xa3\x54\x1c\xd7\x08\xa9\xad\x2a\x4b\x1c\x10\xea\x0d\xf5\x92\x0a\xa9\xc7\xc9\x7a\x0c\x23\xc6\xbb\xd6\xce\x38\x10\x05\xbe\x7b\xb5\x76\x1c\x1c\x42\x53\xc4\x9e\x92\xfd\xf3\xf6\xf7\xde\xbe\x64\xbb\x75\xc0\x0d\x94\xb7\x28\x3d\x69\x49\x01\x57\x42\xb7\x51\xfa\x96\x96\x01\x3b\xbd\x8f\x06\x2f\x2f\xc5\x97\xfd\x17\x1f\x83\xa5\x28\x42\xa9\x78\xe0\x50\x57\xb0\x34\x34\x6a\x7a\x59\x92\x15\xd8\xf1\x2d\x25\xe5\x18\x2a\xc0\xae\xd3\xf3\xf5\x45\xd1\x92\x61\x8d\x86\x55\x01\x10\xb0\xa5\x0a\x68\xa5\x4e\x77\x7a\x6e\xa6\x37\xae\x6b\x87\x9e\x2a\x78\xe8\x57\xe4\x74\xa3\x46\x6d\x01\x20\xb8\x22\xd1\x2c\x01\x30\x20\x07\x2f\x7d\x4d\xb0\xc0\x47\x75\x59\xcf\x2b\xbb\x3a\xf1\x9a\x52\x39\xee\x5d\x40\x09\xcf\x10\x38\xd4\x14\x0c\xbe\x66\x13\xda\x91\xcf\x12\x4a\x69\xcd\x9e\x7e\xfd\x07\x26\x51\x27\xec\x51\x2b\xb8\x18\x0e\x09\x79\x8b\x69\x64\x68\xd1\xfc\xfd\xcd\x0c\x0a\xb2\xdf\x53\x6a\x1f\x21\x9f\xee\xb8\x79\xc7\xc1\xf7\xec\x00\xc0\xa8\xed\x04\x8d\x76\x18\xb3\x6c\xf3\x90\x03\xa2\x0f\x31\x7d\x2e\xcf\x1f\x23\x0d\xc0\x94\xe9\xf0\x79\xcc\xf5\xca\xfb\xd8\x07\x1b\xe3\xdd\x6e\xf7\xdd\x3a\x5c\x2e\x27\xa4\x32\x3f\xfa\x24\x07\x10\x62\x4d\xcb\x83\xac\xf3\xc8\x6d\x48\x81\x8c\xb4\xe4\x78\x1e\xb5\x02\xe1\xd0\x3f\x1d\x78\x78\x64\xbb\xdf\x5f\x36\x97\xc9\xe2\xdb\x2d\x58\xfc\x83\xad\x0c\x36\xde\xba\x98\x24\x28\xd4\xaf\x53\x5d\xe2\x98\xd8\x36\xd7\x82\xaa\x47\x6e\x8e\x56\xe1\x19\x6a\x6a\xb0\x17\x83\xc5\xd8\x5b\xe7\xa5\x57\xa3\xe4\x7c\x62\x63\x8f\xb2\x78\x15\x3f\x02\xc6\xa6\xe1\xc0\xb6\x79\xdd\x32\xcd\x0c\xd7\xce\xe0\x8f\xde\xe0\x1d\x76\x8b\x42\x09\x8d\x63\x98\xb5\xe1\xcd\x6f\x7d\xb7\x87\xae\x44\x7e\x23\x07\xd3\x79\x1a\x0e\x62\x97\x57\x63\xaa\xe0\xe7\x13\xab\xe9\xbf\x83\x7a\xc7\xcd\xec\xfe\x4f\xa6\x9f\x8b\x8a\x1c\x28\xcd\x0c\xb8\xdd\x1f\xc8\xa9\x36\x03\x70\x8b\x77\xe3\x5b\x75\x89\x83\x35\xb0\x38\xd3\xea\x2c\x17\x78\x2a\xe2\xee\xf8\xf5\xfe\x74\x99\xa8\x8b\xca\x16\xd3\xe6\xd4\x2e\xc3\xbb\x39\x33\x00\xa6\xbb\x19\xde\x88\xe8\xdc\xfa\xf2\xdb\xd1\x9c\x10\xd6\x94\xdc\xd0\x48\x8e\xe1\xb2\x41\x51\x2a\x66\xae\xff\x06\x00\x00\xff\xff\xd5\x0e\x4b\x5b\x89\x05\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/storageclass.yaml": &vfsgen۰CompressedFileInfo{ name: "storageclass.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 303, + uncompressedSize: 452, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\xb1\x6e\xeb\x30\x0c\x45\x77\x7d\x05\x91\xcc\xd6\xc3\xdb\x0a\x8d\x4d\x91\xa9\x9d\x0a\xa4\x33\x23\xd1\x01\x61\x8b\x34\x44\xca\x1d\x82\xfc\x7b\x61\x07\x05\x3a\xdf\x8b\x73\xce\xf1\x78\x84\x77\x9d\xb4\xaa\xf3\x4a\x60\x0b\x65\x1e\x39\x03\x96\xc2\xce\x2a\x31\x4c\x2c\x25\xc1\xa7\x6b\xc3\x1b\x9d\x66\x34\x0b\xb8\xf0\x85\x9a\xb1\x4a\x02\x7b\x0e\x71\x7a\xb1\xc8\xfa\x6f\xfd\x1f\x2a\x39\x16\x74\x4c\x01\x40\xb0\x52\x02\xba\xda\x60\x39\xdc\xef\x03\xf0\x08\xf1\x82\x73\x27\x8b\x24\x78\x9d\xe9\x8d\x46\xec\xb3\xff\xe5\xc3\xe3\x11\x00\x50\x44\x1d\xb7\x06\xdb\x48\xf0\x6b\xca\xdb\x25\x4e\xfd\x4a\x4d\xc8\x69\xb7\xb2\x0d\xe5\xc9\x19\xf6\x39\xc1\xc1\x5b\xa7\xc3\xae\x24\x29\x1b\x71\x69\xba\xf2\xd6\x4c\x6d\x2f\x8a\xd9\x38\xe2\xb7\xc5\xac\x35\xac\x3a\xf7\x4a\xaf\x2c\x85\xe5\xf6\xa1\x85\x12\x7c\x21\xfb\x59\xdb\x99\x9b\xf9\x49\xc5\x7a\xa5\x16\x7e\x02\x00\x00\xff\xff\xeb\x5d\x60\x55\x2f\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x31\x6b\x3b\x31\x0c\xc5\xf7\xfb\x14\x0f\x4f\xff\xff\x50\x97\x42\x87\x72\x63\x03\xd9\x3a\x15\x52\x3a\x2a\xb1\x1a\x44\xce\x52\xb0\x9c\x74\xb8\xdc\x77\x2f\x6e\x0e\x72\x19\xbb\x3d\x24\xf9\xa7\xf7\xac\x71\x7c\x40\x21\xdd\x33\xe2\x86\x86\x13\x7b\xf4\x6a\x85\xf6\xbc\x1a\xc8\x9d\x1d\xd3\xd4\x1d\x44\x53\x8f\xf7\x45\xbd\xa3\xa3\x6c\xb8\xb8\x98\xf6\x98\x1f\xc4\xc3\x8b\x47\xb1\xc7\xf3\x53\x97\xb9\x52\xa2\x4a\x7d\x07\x28\x65\xee\x31\x8e\x88\x4d\x35\x1c\xd0\x96\xca\x17\x22\xa9\x5a\xa5\x2a\xa6\x7e\x6d\x2c\x0a\xfd\xef\xd4\xdd\xc8\x05\xd5\x3e\x29\x0f\x4d\x14\xc9\xb8\x40\x45\x13\x6b\xc5\xf3\x8d\xcb\x9a\xee\x97\x0c\xb4\xe5\x61\xe6\x5f\xf5\x8c\x9e\x1b\x7f\xa1\x1e\x8b\x9d\xa5\xa5\xe6\xd2\x83\xb7\x1e\x77\x2e\x91\xbe\x3d\xee\x2c\x77\xe3\x08\xcb\x52\xf1\x2f\xc9\xae\x22\x9c\x6d\x38\x65\x7e\x15\x4d\xa2\xfb\x37\x4b\x1c\x10\x3e\x48\xea\xda\xca\x5a\x8a\xd7\x95\xa9\x9f\x32\x97\x80\x0b\x32\x97\x76\x81\xff\x08\xed\x93\x02\xc2\x22\x76\x40\xb8\x3a\x0d\x37\xab\xd3\xd4\x2d\x5c\xfd\x04\x00\x00\xff\xff\x11\x74\xc5\xc4\xc4\x01\x00\x00"), }, "/charts/components/aws-ebs-csi-driver/templates/volumesnapshotclass.yaml": &vfsgen۰CompressedFileInfo{ name: "volumesnapshotclass.yaml", @@ -229,9 +243,9 @@ var vfsgenAssets = func() http.FileSystem { "/charts/components/aws-ebs-csi-driver/values.yaml": &vfsgen۰CompressedFileInfo{ name: "values.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2145, + uncompressedSize: 3447, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4f\x6f\xdb\xc6\x13\xbd\xef\xa7\x18\x58\x87\x5c\x2c\xda\xd2\x0f\xbf\x22\xe0\xcd\xb5\x5d\xc0\x40\xdc\x18\x51\xd0\xa0\x08\x72\x18\x2d\x87\xd2\xd4\xcb\x1d\x66\x67\x97\xae\x52\xf4\xbb\x17\xbb\x24\x1d\x39\x4e\xd1\xf8\x44\x7b\x39\xef\xcd\x1f\xbe\x79\xab\x05\x5c\x51\x8b\xc9\x45\x18\xd0\x25\x52\x68\x25\x00\x3e\xe8\x92\xb6\xba\xb4\xca\xcb\x26\xf0\x40\xa1\x32\x0b\x78\xbf\x67\x05\x56\x40\xf8\xfd\xe2\xf6\xcd\xb2\x95\xd0\x61\x8c\xd4\x40\xcb\x8e\x72\xc0\x15\x59\x87\x81\x60\xc0\xc0\xb8\x75\xa4\x10\x05\xb6\x04\x3d\xaa\x52\x03\xec\xa3\xc0\x41\x52\x80\x48\x5d\xef\x30\x92\x56\xc6\x04\xea\x1d\x5b\xbc\x94\xe4\x63\x0d\x6b\x63\xb8\xc3\x1d\xd5\x06\x20\x50\x2f\xca\x51\xc2\xa1\x06\xec\xf0\x8b\xf8\xb3\xe7\x85\x19\x80\x88\xbb\x1a\x4e\x86\xf3\xea\xa7\xea\xfc\xc4\x00\xf4\xc9\xb9\x3b\x71\x6c\x0f\x35\xdc\xb4\xbf\x4a\xbc\x0b\xa4\xe4\xa3\x31\xca\x0d\x59\x0c\x9a\xd9\xfb\x20\x03\x2b\x8b\xa7\x70\x33\x67\x7c\x9a\xf3\x73\xc2\x43\xc5\x72\x76\xff\x5a\xad\xf2\x59\xce\x79\x04\x2a\xe1\x53\xea\x55\xf5\xff\x31\x35\xc6\x88\x76\xff\x12\xc6\x19\xf1\x94\x6e\x3d\xd2\xa9\xc7\x5e\xf7\x12\xe3\x4b\x18\x8f\x40\xc7\xa4\xeb\x6a\x55\xad\x32\xa9\xe3\x81\x3c\xa9\xde\x05\xd9\xd2\x8f\xd1\xce\x90\x3e\x43\x9e\x56\xba\x1a\x2b\x0d\xa4\xfc\xe5\x25\x55\x4e\x80\x63\xb2\xf3\xea\x7f\x23\x99\x97\x86\xae\xca\xd7\x7d\x47\x3b\xd6\x18\xf0\x05\xc4\x19\x3c\x69\x63\x19\x66\xf8\x77\x6a\x1e\x75\x76\x97\x9c\xdb\x90\x0d\x14\xb5\x86\x8f\x9f\x8c\xc7\x8e\xde\x0e\x14\x02\x37\x54\xc3\xc9\x89\x69\x93\x73\xcf\x0e\x4d\x2f\xcd\x85\xf7\x12\x31\xb2\x78\xad\xe1\xaf\xbf\x4d\x5e\x90\x90\x08\xb8\x05\xf2\x59\xfd\x30\x88\x4b\x1d\x81\xda\x3d\x35\xc9\xb1\xdf\x95\xdd\x6a\x0e\x1e\x3b\xb6\xf3\xdb\x47\x45\xb1\xdf\x99\x11\xf8\x5b\x79\xb3\x79\x84\xd5\xd0\xa2\x53\xfa\xf7\x0c\x65\x96\xdf\xe2\xdf\x4d\x87\xff\x89\x9e\xf5\xf2\x34\xfb\x74\xf8\x88\x0e\xa4\x92\x82\xa5\xb1\x59\x80\x05\x7c\x20\x48\x9a\xd0\xb9\x03\x04\xb2\xd2\x75\xe4\x1b\xf0\x12\xf3\xd2\x6b\x4f\x96\xdb\x03\x34\x93\xb7\x3c\xa2\x01\x7d\x93\x03\x1c\xe1\x40\x10\xb3\xa3\x60\x76\x14\x2b\x5e\x2d\x4b\xd2\x42\x6d\xf7\xc2\x96\xca\xb8\xe2\x3e\xa7\xa1\x50\x8d\xf6\x83\x4e\x05\xd8\xdb\x40\xa8\xa4\x60\xf7\xe8\xed\xf8\x0c\x51\x21\x24\x0f\xe2\x81\xfc\xc0\x41\x7c\x47\x3e\x2a\x3c\x70\xdc\x83\xe3\x18\x1d\x15\xee\xc7\x52\x4e\x41\x93\xdd\xe7\xf4\xb7\xec\xf9\x3e\x6d\xa9\x82\x9b\x36\x1b\x14\x34\x02\x0f\xe8\x9f\x74\x72\x04\x4b\x7e\xec\x36\x96\xe2\x5a\x71\x4e\x1e\xf2\xf4\x33\xbb\x63\x9f\x43\xb0\xf9\x23\x69\x79\xdf\xe5\x04\x9e\x2c\xa9\x62\x38\x9c\x96\xfe\x03\x75\x52\xba\x27\xb0\x29\xb8\x03\x6c\x03\x96\xd9\xb4\x91\x02\xbc\xfa\x3a\xea\x57\xd5\x44\xda\x71\x2c\xa6\xb5\x00\x00\xdb\xa7\x1a\x56\xe7\xe7\xdd\xf4\x7f\x47\x5d\xd9\x85\xd5\xfa\xf5\x2d\x4f\x2d\x7e\x4e\xa4\x3f\x8a\x30\x79\x63\x36\xe4\xc8\x46\x09\xa3\x94\xa3\x38\x0a\xb3\xb6\x3f\x7e\x32\x06\xdb\x96\x3d\xc7\xc3\xac\xf4\xeb\x3f\x63\xc0\x59\x40\x11\x77\xc5\xe9\x47\x2b\xcb\x7f\x51\x7e\x4e\x42\x2f\x02\xf9\xea\x9b\xcd\x84\xca\xf7\xc5\x72\xb9\x34\x0b\xa0\xcc\x35\xaa\xee\x3d\xee\xb4\x36\xb9\xc4\x7b\x3a\xac\xea\xf1\x4a\x5a\xcd\x07\xeb\xe9\x60\x6d\xbe\x85\x4c\x55\x5d\x7c\xd8\x40\x5e\x79\xf1\xb9\x88\xa4\xe3\x07\xcd\x92\x1c\xbf\x22\x53\x93\x87\xee\xcb\xe4\xa7\xc0\x07\x76\x2e\xdf\x51\x4e\xe4\x9e\x1a\x48\x3d\x0c\x8c\x25\x20\xb3\x5d\x5f\xae\xa1\xa3\x88\x0d\x46\x34\x0b\x50\x0a\x03\xdb\xa3\xda\x47\x92\x1a\x92\x2e\x09\x35\x2e\x57\x66\x3e\xc9\x2e\x91\x07\x5b\xae\x9a\xe7\x6e\x01\xf0\x6c\xc6\x13\xf9\x85\xb5\xe5\x2a\x34\x90\x97\x22\x06\x71\x8e\xc2\xe8\x7c\xf8\x8c\x64\xde\xdd\xef\xbf\x37\x0b\x78\x23\xf7\xd2\x49\xe4\x81\xe6\x19\x58\xc0\xa6\xe1\x1c\x94\xdb\xf8\x25\x6f\x77\xf6\x84\x2c\xfb\x59\xf3\x49\x09\x10\x1a\x6e\x5b\x0a\x59\xe6\x1a\x25\xe0\x8e\x40\xfa\x0c\x3b\x05\xaa\x76\x15\xbc\xed\xc9\x5f\xff\xbc\x99\x5c\x63\xfa\x11\xb1\x19\x23\x2f\x1d\xaa\xd6\x10\x43\x22\xf3\x4f\x00\x00\x00\xff\xff\xd7\x1d\x4e\xdd\x61\x08\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x57\xcf\x6f\x1b\x3b\x0e\xbe\xcf\x5f\x41\xd8\x87\xb7\x0b\x74\x26\x71\xde\xa5\xeb\x9b\x9b\xa4\x40\xb0\xcd\x7b\x41\x1d\x6c\xb1\x28\x7a\x90\x35\x9c\x31\xd7\x1a\x69\x56\x94\x9c\x7a\x8b\xfe\xef\x0b\x4a\x33\xce\x38\x3f\x8a\xdd\x9c\x52\x6b\xc8\x4f\x1f\xc9\x8f\xa4\x3a\x87\x2b\x6c\x54\x34\x01\xf6\xca\x44\x64\x68\x9c\x07\xf5\xc0\x25\x6e\xb8\xd4\x4c\x65\xed\x69\x8f\xbe\x2a\xe6\x70\xbf\x25\x06\x62\x50\xf0\xcf\xd5\xed\xa7\xb2\x71\xbe\x53\x21\x60\x0d\x0d\x19\x14\x83\x2b\xd4\x46\x79\x84\xbd\xf2\xa4\x36\x06\x19\x82\x83\x0d\x42\xaf\x98\xb1\x06\xb2\xc1\xc1\xc1\x45\x0f\x01\xbb\xde\xa8\x80\x5c\x15\x85\xc7\xde\x90\x56\x97\x2e\xda\xb0\x84\x8b\xa2\xa0\x4e\xb5\xb8\x2c\x00\x3c\xf6\x8e\x29\x38\x7f\x58\xc2\xee\x3d\x57\xad\xf6\x15\xb9\xb3\xde\xbb\x3d\xd5\xe8\x4b\xf5\xc0\x67\xcf\x99\x16\x00\x41\xb5\x4b\x98\xed\xcf\xab\xbf\x55\xe7\xb3\x02\xa0\x8f\xc6\xdc\x39\x43\xfa\xb0\x84\x9b\xe6\x0f\x17\xee\x3c\x32\xda\x50\x14\x4c\x35\x6a\xe5\x59\xae\x4b\xb8\x4c\xce\xa2\xbf\x19\x29\xbc\x4a\x82\xa9\x2d\x39\x38\xaf\x5a\x3c\x93\xbb\x27\xce\xc9\x6d\xa0\x70\x51\x9d\x57\x17\x42\x41\x85\xa0\xf4\xf6\x2d\xc8\xa3\xe7\x14\xf6\xf7\xea\x3c\x47\xc6\x56\xf5\xbc\x75\x21\xbc\x05\x79\xe2\xfc\x14\xfc\x77\x01\x37\xb4\x47\x8b\xcc\x77\xde\x6d\xf0\xff\x83\x1f\x5d\x7b\x71\x3d\x4d\xc8\x22\x33\xf7\xc8\xf4\x9f\xb7\xb0\x1e\x1c\xa7\xa0\x8b\x31\x1d\xd6\xd5\x78\x95\x54\xf0\x19\x5b\xe2\xe0\xd5\x1b\x2e\x10\x90\x41\x4b\xa5\x1f\x61\x9e\x16\x75\x31\x2b\x8a\x31\x7f\x97\xce\x06\xef\x8c\x41\xff\x0b\xd5\x4e\x6f\x19\x1d\x4b\x7d\xf4\x2c\x9e\xa6\x3f\xb7\xc1\x5d\x34\x66\x8d\xda\x63\xe0\x25\x7c\xfd\x56\x58\xd5\xe1\x9f\x7b\xf4\x9e\x6a\x5c\xc2\x6c\x56\x34\xd1\x98\x67\x87\x45\xef\xea\x95\xb5\x2e\xa8\x40\xce\xf2\x12\x7e\xfc\x2c\xa4\x7f\x7d\x44\xa0\x06\xd0\x4a\x73\xc2\xde\x99\xd8\x21\xb0\xde\x62\x1d\x0d\xd9\x36\xb5\x7e\x7d\xb0\xaa\x23\x3d\x7e\x3d\xea\x9a\x6c\x5b\x64\xc7\x7f\xa4\x2f\xeb\xa3\xdb\x12\x82\x8f\xf8\xfa\x05\xa9\x60\x4f\xdd\x3f\x0f\x87\x4b\x68\x94\xe1\x5f\x78\x8f\xb9\x3a\xbd\x7c\x38\x9c\x7a\x6f\x11\x66\x9d\xfa\x4e\x5d\xec\xc0\xc6\x6e\x83\x1e\x5c\x33\xf4\xdd\x04\x90\x67\xd0\xa3\x4f\x4a\x29\xf2\xc9\x2a\x99\x7c\xa2\x8e\x42\xce\x9e\x47\x76\xd1\x6b\x4c\x53\xe1\xc7\xcf\x02\x60\x0e\x5f\x10\x22\x47\x65\xcc\x01\x3c\x6a\xd7\x75\x68\x6b\xb0\x2e\xc8\x84\xe3\x1e\x35\x35\x07\xa8\x87\x41\x7a\xf4\x07\x65\x6b\x31\x30\xa8\xf6\x08\x41\xc6\xa7\x92\xf1\xa9\x9d\x65\x4d\x2e\x72\x82\xd6\x5b\x47\x1a\x53\xf2\xc3\x56\xae\x41\x5f\xe5\x59\xab\x0c\x3b\x20\xab\x3d\x2a\x46\x06\xbd\x55\x56\xe7\xbf\x3e\x30\xf8\x68\xc1\x59\x40\xbb\x27\xef\x6c\x87\x36\x30\x3c\x50\xd8\x82\xa1\x10\x0c\x26\xec\x23\x95\x77\xc0\x51\x6f\xe5\xfa\x5b\xb2\xb4\x8b\x1b\xac\xe0\xa6\x91\x69\x0c\xb5\x83\x07\x65\x4f\x22\x99\xb8\x45\x9b\xa3\x0d\x89\x5c\xe3\x8c\x71\x0f\x52\x4c\x41\x37\x64\xc5\x44\xd5\xff\x8a\x9c\xbe\x77\x72\x81\x45\x8d\xcc\xca\x1f\xde\xa5\xf8\x3d\x76\x2e\x45\x8f\xa0\xa3\x37\x07\xd8\x78\x95\x72\xd3\x04\xf4\xf0\xdb\x63\xb2\x7f\xab\x06\xd0\x8e\x42\x4a\xfd\x1c\x00\x74\x1f\x97\xb0\x38\x3f\xef\x86\xdf\x1d\x76\xa9\xb3\x16\x17\xef\x6f\x69\x08\xf1\xdf\x11\xf9\x7f\xf5\x28\x7a\x4f\xce\x53\x38\x5c\x1a\xc5\xfc\x87\xea\x72\xc7\x88\x1c\xd6\x68\x50\x07\xe7\x53\xbb\x04\x67\xd0\xab\x80\x2b\x63\xee\x15\x59\x69\xbf\xa4\xf2\xe1\x3c\xb7\xd5\xd7\x6f\x85\x6a\x1a\xb2\x14\x0e\x63\x8f\x5d\x7f\x0f\x5e\x8d\xda\x0d\xaa\x4d\x2b\x30\x8b\x50\xfe\x85\xf2\x77\x68\xb1\x24\xa6\xc7\xbd\x51\x0f\x5e\xb2\x48\xcb\xb2\x2c\xe6\x80\x82\x95\x05\x7f\xaf\x5a\x5e\x16\x12\xce\x0e\x0f\x8b\x65\xde\xd5\x8b\xf1\xe0\x62\x38\xb8\x28\x9e\xba\x0c\xac\x6e\x1a\x60\x0c\x52\xa9\x1a\xfa\xfd\x59\xbf\xd7\xd0\x61\x50\xb5\x0a\x4a\x58\xf5\x26\xb6\x64\x41\x74\x16\xf0\x98\x50\xa9\x65\xaf\xbc\xea\x30\xa0\xe7\x2a\x63\x5f\x26\x9b\xdb\xc1\x79\xd2\x7f\x37\x57\xd2\x6e\x52\xe5\xbf\xc7\x0d\x7a\x8b\x41\x94\x6a\x22\x4b\x95\xa3\xac\xff\x24\x70\xd5\xb6\x32\x69\xa6\x61\x5f\x7f\x58\x8f\xbd\x09\x7f\x71\xbd\xe4\x56\x99\xbf\x56\xc5\xee\x3d\xdf\xab\xf6\x32\x43\xdc\xd4\xb9\x37\xe7\xb0\xfa\xb2\x06\x19\xcb\xce\x0a\xf5\xc8\x59\xc8\xd2\x8a\x59\xbd\x84\xb5\xd0\xb0\x89\xcb\x60\xf8\x40\xc6\xc8\x43\xc4\x38\xb7\xc3\x1a\x62\x0f\x7b\x52\xc9\x40\xd0\xae\x2f\x2f\x8e\xe9\x28\xe6\xc0\xe8\xf7\xa4\x27\x75\xc8\x20\x4b\x88\x5c\xa2\xe2\x50\x2e\x8a\xf1\x44\x18\x89\x74\xf2\xf3\xe1\x25\x61\xe5\x9d\x74\x22\x2d\x80\x17\xc6\x33\xc0\x6b\x8a\x3b\x7e\x39\x6a\x0e\x1e\xfb\x33\x17\x78\x60\xbc\xd2\x3a\x3d\xa2\x0a\x00\x7d\xb2\x92\x60\x28\x6d\x46\x84\x39\xac\xc6\x20\x41\x65\x9f\x63\x86\xb2\x61\x2e\x96\x0c\x07\x4a\xca\x91\x4c\x8b\x6b\x05\xeb\xfc\x23\x95\x5d\x3e\x8a\xcd\x38\x3d\x22\x63\x7e\xde\xb9\x07\x5b\xa5\x6b\x6d\x4a\xc3\xf8\x3e\x7b\x24\x55\xb2\x82\x39\x48\x92\x46\xd1\x0c\x7c\xca\x91\x4f\x7e\x38\x8a\x6e\xce\x06\x4a\x19\x51\x3d\xcb\xdb\xb8\x20\x9e\x07\xfa\x84\xc2\xcb\x5b\xf7\x25\xc8\xb1\xa4\xbf\x84\x3b\x3e\x15\x58\xbd\x08\x53\xcc\xe1\x93\xdb\xb9\xce\x05\xda\xe3\xa8\x4d\x2d\x2d\x48\x62\x24\xf2\xfa\xf8\x5a\x16\x15\xd4\xd4\x34\xe8\x65\xec\x0e\x8f\x06\xc8\x9d\xf1\x0e\xb0\x6a\x2b\xf8\xb3\x47\x7b\xfd\x61\x3d\x2c\xc5\xe1\x05\xbf\xce\x96\x49\x80\xe3\x52\xe6\xc9\x19\x66\xf9\xcc\x61\x55\xd7\x30\x35\x9e\x6c\x2c\x43\x3b\x94\x41\x53\x4e\x13\xa7\xd3\xa0\x99\x4f\x42\x9c\xf6\xcb\x69\xe8\xe9\x00\x46\xd6\x5a\xe0\xab\xdd\x71\x22\xc8\x4b\x88\xb8\x1c\x36\x65\xa9\x33\xd5\x99\x70\x9d\x0d\x97\x18\xb5\x41\x73\x8a\x9f\x8e\x8e\xd0\xdd\xa1\x4c\x07\x25\xf1\x12\x38\xf6\xe8\xb5\x73\x66\xf0\x1e\x90\xd3\xd8\xfd\xa2\x28\x7c\x74\xfe\x23\x79\x96\x37\x1a\xc7\x0e\x7d\x32\xcb\xd3\xe6\x03\xd9\x9a\x6c\x7b\x2b\xc5\x7e\xdd\xf6\x14\xf2\x0a\x0d\x06\x4c\x1f\xbc\x04\x47\xdd\xf8\xff\x8a\xcf\x18\x14\xd9\xf4\xe5\x71\x68\x8e\x94\xd1\x6a\x7f\xe8\x03\xd6\xc7\x58\xff\x1b\x00\x00\xff\xff\x6f\xea\x32\x0f\x77\x0d\x00\x00"), }, "/charts/components/cert-manager": &vfsgen۰DirInfo{ name: "cert-manager", @@ -7129,6 +7143,7 @@ var vfsgenAssets = func() http.FileSystem { fs["/charts/components/web-ui"].(os.FileInfo), } fs["/charts/components/aws-ebs-csi-driver"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/charts/components/aws-ebs-csi-driver/.helmignore"].(os.FileInfo), fs["/charts/components/aws-ebs-csi-driver/Chart.yaml"].(os.FileInfo), fs["/charts/components/aws-ebs-csi-driver/crds"].(os.FileInfo), fs["/charts/components/aws-ebs-csi-driver/templates"].(os.FileInfo), @@ -7159,6 +7174,7 @@ var vfsgenAssets = func() http.FileSystem { fs["/charts/components/aws-ebs-csi-driver/templates/role-snapshot-controller-leaderelection.yaml"].(os.FileInfo), fs["/charts/components/aws-ebs-csi-driver/templates/rolebinding-snapshot-controller-leaderelection.yaml"].(os.FileInfo), fs["/charts/components/aws-ebs-csi-driver/templates/serviceaccount-csi-controller.yaml"].(os.FileInfo), + fs["/charts/components/aws-ebs-csi-driver/templates/serviceaccount-csi-node.yaml"].(os.FileInfo), fs["/charts/components/aws-ebs-csi-driver/templates/serviceaccount-snapshot-controller.yaml"].(os.FileInfo), fs["/charts/components/aws-ebs-csi-driver/templates/statefulset.yaml"].(os.FileInfo), fs["/charts/components/aws-ebs-csi-driver/templates/storageclass.yaml"].(os.FileInfo), diff --git a/pkg/components/aws-ebs-csi-driver/component.go b/pkg/components/aws-ebs-csi-driver/component.go index 88eb84adb..5d9d06749 100644 --- a/pkg/components/aws-ebs-csi-driver/component.go +++ b/pkg/components/aws-ebs-csi-driver/component.go @@ -39,14 +39,44 @@ enableVolumeScheduling: {{ .EnableVolumeScheduling }} enableVolumeResizing: {{ .EnableVolumeResizing }} # Enable volume snapshot. enableVolumeSnapshot: {{ .EnableVolumeSnapshot }} + +storageClasses: +- name: ebs-sc + {{ if .EnableDefaultStorageClass }} + annotations: + storageclass.kubernetes.io/is-default-class: "true" + {{ end }} + volumeBindingMode: WaitForFirstConsumer + reclaimPolicy: Retain + +{{- if .Tolerations }} +tolerateAllTaints: false +tolerations: {{ .TolerationsRaw }} +node: + tolerateAllTaints: false + tolerations: {{ .TolerationsRaw }} +{{- end }} + +{{- if .NodeAffinity }} +affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: {{ .NodeAffinityRaw }} +{{- end}} ` ) type component struct { - EnableDefaultStorageClass bool `hcl:"enable_default_storage_class,optional"` - EnableVolumeScheduling bool `hcl:"enable_volume_scheduling,optional"` - EnableVolumeResizing bool `hcl:"enable_volume_resizing,optional"` - EnableVolumeSnapshot bool `hcl:"enable_volume_snapshot,optional"` + EnableDefaultStorageClass bool `hcl:"enable_default_storage_class,optional"` + EnableVolumeScheduling bool `hcl:"enable_volume_scheduling,optional"` + EnableVolumeResizing bool `hcl:"enable_volume_resizing,optional"` + EnableVolumeSnapshot bool `hcl:"enable_volume_snapshot,optional"` + Tolerations []util.Toleration `hcl:"tolerations,block"` + NodeAffinity []util.NodeAffinity `hcl:"node_affinity,block"` + + TolerationsRaw string + NodeAffinityRaw string } // NewConfig returns new AWS EBS CSI driver component configuration with default values set. @@ -77,6 +107,16 @@ func (c *component) RenderManifests() (map[string]string, error) { return nil, fmt.Errorf("retrieving chart from assets: %w", err) } + c.TolerationsRaw, err = util.RenderTolerations(c.Tolerations) + if err != nil { + return nil, fmt.Errorf("rendering tolerations failed: %w", err) + } + + c.NodeAffinityRaw, err = util.RenderNodeAffinity(c.NodeAffinity) + if err != nil { + return nil, fmt.Errorf("failed to marshal node affinity: %w", err) + } + values, err := template.Render(chartValuesTmpl, c) if err != nil { return nil, fmt.Errorf("rendering chart values template failed: %w", err) diff --git a/pkg/components/aws-ebs-csi-driver/component_test.go b/pkg/components/aws-ebs-csi-driver/component_test.go index f090dce37..c33cad086 100644 --- a/pkg/components/aws-ebs-csi-driver/component_test.go +++ b/pkg/components/aws-ebs-csi-driver/component_test.go @@ -20,6 +20,8 @@ import ( "testing" "github.com/hashicorp/hcl/v2" + + "github.com/kinvolk/lokomotive/pkg/components/internal/testutil" "github.com/kinvolk/lokomotive/pkg/components/util" ) @@ -137,3 +139,134 @@ func TestStorageClassDisabled(t *testing.T) { t.Fatalf("Default storage class should not be set") } } + +func TestConversion(t *testing.T) { //nolint:funlen + testCases := []struct { + name string + inputConfig string + expectedManifestName string + expected string + jsonPath string + }{ + { + name: "no_tolerations_node", + inputConfig: `component "aws-ebs-csi-driver" {}`, + expectedManifestName: "aws-ebs-csi-driver/templates/node.yaml", + jsonPath: "{.spec.template.spec.tolerations[0].operator}", + expected: "Exists", + }, + { + name: "tolerations_node", + inputConfig: `component "aws-ebs-csi-driver" { + tolerations { + key = "lokomotive.io" + operator = "Equal" + value = "awesome" + effect = "NoSchedule" + } + }`, + expectedManifestName: "aws-ebs-csi-driver/templates/node.yaml", + jsonPath: "{.spec.template.spec.tolerations[0].value}", + expected: "awesome", + }, + { + name: "no_tolerations_csi_controller", + inputConfig: `component "aws-ebs-csi-driver" {}`, + expectedManifestName: "aws-ebs-csi-driver/templates/controller.yaml", + jsonPath: "{.spec.template.spec.tolerations[0].operator}", + expected: "Exists", + }, + { + name: "tolerations_csi_controller", + inputConfig: `component "aws-ebs-csi-driver" { + tolerations { + key = "lokomotive.io" + operator = "Equal" + value = "awesome" + effect = "NoSchedule" + } + }`, + expectedManifestName: "aws-ebs-csi-driver/templates/controller.yaml", + jsonPath: "{.spec.template.spec.tolerations[0].key}", + expected: "lokomotive.io", + }, + { + name: "no_tolerations_snapshot_controller", + inputConfig: `component "aws-ebs-csi-driver" {}`, + expectedManifestName: "aws-ebs-csi-driver/templates/statefulset.yaml", + jsonPath: "{.spec.template.spec.tolerations[0].operator}", + expected: "Exists", + }, + { + name: "tolerations_snapshot_controller", + inputConfig: `component "aws-ebs-csi-driver" { + tolerations { + key = "lokomotive.io" + operator = "Equal" + value = "awesome" + effect = "NoSchedule" + } + }`, + expectedManifestName: "aws-ebs-csi-driver/templates/statefulset.yaml", + jsonPath: "{.spec.template.spec.tolerations[0].effect}", + expected: "NoSchedule", + }, + { + name: "affinity_csi_controller", + inputConfig: `component "aws-ebs-csi-driver" { + node_affinity { + key = "lokomotive.io/role" + operator = "In" + values = ["storage"] + } + }`, + expectedManifestName: "aws-ebs-csi-driver/templates/controller.yaml", + jsonPath: "{.spec.template.spec.affinity.nodeAffinity." + + "requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms[0].matchExpressions[0].key}", + expected: "lokomotive.io/role", + }, + { + name: "affinity_snapshot_controller", + inputConfig: `component "aws-ebs-csi-driver" { + node_affinity { + key = "lokomotive.io/role" + operator = "In" + values = ["storage"] + } + }`, + expectedManifestName: "aws-ebs-csi-driver/templates/statefulset.yaml", + jsonPath: "{.spec.template.spec.affinity.nodeAffinity." + + "requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms[0].matchExpressions[0].values[0]}", + expected: "storage", + }, + { + name: "storage_class", + inputConfig: `component "aws-ebs-csi-driver" {}`, + expectedManifestName: "aws-ebs-csi-driver/templates/storageclass.yaml", + jsonPath: "{.reclaimPolicy}", + expected: "Retain", + }, + { + name: "default_storage_class", + inputConfig: `component "aws-ebs-csi-driver" { + enable_default_storage_class = true + }`, + expectedManifestName: "aws-ebs-csi-driver/templates/storageclass.yaml", + jsonPath: `{.metadata.annotations.storageclass\.kubernetes\.io\/is\-default\-class}`, + expected: "true", + }, + } + + for _, tc := range testCases { + tc := tc + t.Run(tc.name, func(t *testing.T) { + t.Parallel() + + component := NewConfig() + m := testutil.RenderManifests(t, component, Name, tc.inputConfig) + gotConfig := testutil.ConfigFromMap(t, m, tc.expectedManifestName) + + testutil.MatchJSONPathStringValue(t, gotConfig, tc.jsonPath, tc.expected) + }) + } +}