diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/NOTES.txt b/assets/components/aws-ebs-csi-driver/manifests/templates/NOTES.txt new file mode 100644 index 000000000..34db916b5 --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/NOTES.txt @@ -0,0 +1,3 @@ +To verify that aws-ebs-csi-driver has started, run: + + kubectl get pod -n kube-system -l "app.kubernetes.io/name={{ include "aws-ebs-csi-driver.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/_helpers.tpl b/assets/components/aws-ebs-csi-driver/manifests/templates/_helpers.tpl new file mode 100644 index 000000000..fdc77c4ec --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/_helpers.tpl @@ -0,0 +1,69 @@ +{{/* vim: set filetype=mustache: */}} +{{/* +Expand the name of the chart. +*/}} +{{- define "aws-ebs-csi-driver.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "aws-ebs-csi-driver.fullname" -}} +{{- if .Values.fullnameOverride -}} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- $name := default .Chart.Name .Values.nameOverride -}} +{{- if contains $name .Release.Name -}} +{{- .Release.Name | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} +{{- end -}} +{{- end -}} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "aws-ebs-csi-driver.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Common labels +*/}} +{{- define "aws-ebs-csi-driver.labels" -}} +{{ include "aws-ebs-csi-driver.selectorLabels" . }} +{{- if ne .Release.Name "kustomize" }} +helm.sh/chart: {{ include "aws-ebs-csi-driver.chart" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} +{{- end -}} + +{{/* +Common selector labels +*/}} +{{- define "aws-ebs-csi-driver.selectorLabels" -}} +app.kubernetes.io/name: {{ include "aws-ebs-csi-driver.name" . }} +{{- if ne .Release.Name "kustomize" }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} +{{- end -}} + +{{/* +Convert the `--extra-volume-tags` command line arg from a map. +*/}} +{{- define "aws-ebs-csi-driver.extra-volume-tags" -}} +{{- $result := dict "pairs" (list) -}} +{{- range $key, $value := .Values.extraVolumeTags -}} +{{- $noop := printf "%s=%s" $key $value | append $result.pairs | set $result "pairs" -}} +{{- end -}} +{{- if gt (len $result.pairs) 0 -}} +{{- printf "%s=%s" "- --extra-volume-tags" (join "," $result.pairs) -}} +{{- end -}} +{{- end -}} diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-attacher.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-attacher.yaml new file mode 100644 index 000000000..0b9672479 --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-attacher.yaml @@ -0,0 +1,20 @@ +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: ebs-external-attacher-role + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch", "update"] + - apiGroups: [""] + resources: ["nodes"] + verbs: ["get", "list", "watch"] + - apiGroups: ["csi.storage.k8s.io"] + resources: ["csinodeinfos"] + verbs: ["get", "list", "watch"] + - apiGroups: ["storage.k8s.io"] + resources: ["volumeattachments"] + verbs: ["get", "list", "watch", "update"] diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-provisioner.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-provisioner.yaml new file mode 100644 index 000000000..84f122a03 --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-provisioner.yaml @@ -0,0 +1,35 @@ +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: ebs-external-provisioner-role + 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"] diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-resizer.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-resizer.yaml new file mode 100644 index 000000000..5f0c758c5 --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-resizer.yaml @@ -0,0 +1,31 @@ +{{- if .Values.enableVolumeResizing }} +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: ebs-external-resizer-role + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} +rules: + # The following rule should be uncommented for plugins that require secrets + # for provisioning. + # - apiGroups: [""] + # resources: ["secrets"] + # verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch", "update", "patch"] + - apiGroups: [""] + resources: ["persistentvolumeclaims"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["persistentvolumeclaims/status"] + verbs: ["update", "patch"] + - apiGroups: ["storage.k8s.io"] + resources: ["storageclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["events"] + verbs: ["list", "watch", "create", "update", "patch"] + +{{- end}} diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-snapshot-controller.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-snapshot-controller.yaml new file mode 100644 index 000000000..ffdb1b7d5 --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-snapshot-controller.yaml @@ -0,0 +1,35 @@ +{{- if .Values.enableVolumeSnapshot }} +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: ebs-snapshot-controller-role + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch"] + - 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: ["volumesnapshotclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents"] + verbs: ["create", "get", "list", "watch", "update", "delete"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshots"] + verbs: ["get", "list", "watch", "update"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshots/status"] + verbs: ["update"] + +{{- end }} diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-snapshotter.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-snapshotter.yaml new file mode 100644 index 000000000..061b56582 --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrole-snapshotter.yaml @@ -0,0 +1,25 @@ +{{- if .Values.enableVolumeSnapshot }} +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: ebs-external-snapshotter-role + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} +rules: + - apiGroups: [""] + resources: ["events"] + verbs: ["list", "watch", "create", "update", "patch"] + - apiGroups: [""] + resources: ["secrets"] + verbs: ["get", "list"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents"] + verbs: ["create", "get", "list", "watch", "update", "delete"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents/status"] + verbs: ["update"] +{{- end }} diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-attacher.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-attacher.yaml new file mode 100644 index 000000000..1888a9b8b --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-attacher.yaml @@ -0,0 +1,15 @@ +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: ebs-csi-attacher-binding + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} +subjects: + - kind: ServiceAccount + name: ebs-csi-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: ebs-external-attacher-role + apiGroup: rbac.authorization.k8s.io diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-provisioner.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-provisioner.yaml new file mode 100644 index 000000000..0fd549909 --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-provisioner.yaml @@ -0,0 +1,15 @@ +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: ebs-csi-provisioner-binding + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} +subjects: + - kind: ServiceAccount + name: ebs-csi-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: ebs-external-provisioner-role + apiGroup: rbac.authorization.k8s.io diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-resizer.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-resizer.yaml new file mode 100644 index 000000000..b23063aa1 --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-resizer.yaml @@ -0,0 +1,18 @@ +{{- if .Values.enableVolumeResizing }} +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: ebs-csi-resizer-binding + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} +subjects: + - kind: ServiceAccount + name: ebs-csi-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: ebs-external-resizer-role + apiGroup: rbac.authorization.k8s.io + +{{- end}} diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-snapshot-controller.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-snapshot-controller.yaml new file mode 100644 index 000000000..df4937a6c --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-snapshot-controller.yaml @@ -0,0 +1,18 @@ +{{- if .Values.enableVolumeSnapshot }} +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: ebs-csi-snapshot-controller-binding + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} +subjects: + - kind: ServiceAccount + name: ebs-snapshot-controller + namespace: kube-system +roleRef: + kind: ClusterRole + name: ebs-snapshot-controller-role + apiGroup: rbac.authorization.k8s.io + +{{- end }} diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-snapshotter.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-snapshotter.yaml new file mode 100644 index 000000000..6ebb1d91d --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-snapshotter.yaml @@ -0,0 +1,18 @@ +{{- if .Values.enableVolumeSnapshot }} +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: ebs-csi-snapshotter-binding + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} +subjects: + - kind: ServiceAccount + name: ebs-csi-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: ebs-external-snapshotter-role + apiGroup: rbac.authorization.k8s.io + +{{- end }} diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/controller.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/controller.yaml index 01c6ff7d4..1e7b68dc7 100644 --- a/assets/components/aws-ebs-csi-driver/manifests/templates/controller.yaml +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/controller.yaml @@ -1,34 +1,56 @@ ---- # Controller Service kind: Deployment apiVersion: apps/v1 metadata: name: ebs-csi-controller namespace: kube-system + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} spec: - replicas: 2 + replicas: {{ .Values.replicaCount }} selector: matchLabels: app: ebs-csi-controller + {{- include "aws-ebs-csi-driver.selectorLabels" . | nindent 6 }} template: metadata: labels: app: ebs-csi-controller + {{- include "aws-ebs-csi-driver.labels" . | nindent 8 }} + {{- if .Values.podAnnotations }} + annotations: {{ toYaml .Values.podAnnotations | nindent 8 }} + {{- end }} spec: nodeSelector: kubernetes.io/os: linux - beta.kubernetes.io/arch: amd64 - serviceAccount: ebs-csi-controller-sa + kubernetes.io/arch: amd64 + {{- with .Values.nodeSelector }} +{{ toYaml . | indent 8 }} + {{- end }} + serviceAccountName: ebs-csi-controller-sa priorityClassName: system-cluster-critical + {{- with .Values.affinity }} + affinity: {{ toYaml . | nindent 8 }} + {{- end }} tolerations: - - key: CriticalAddonsOnly - operator: Exists + - operator: Exists + {{- with .Values.tolerations }} +{{ toYaml . | indent 8 }} + {{- end }} containers: - name: ebs-plugin - image: amazon/aws-ebs-csi-driver:latest - args : - # - {all,controller,node} # specify the driver mode + image: {{ .Values.image.repository }}:{{ .Values.image.tag }} + imagePullPolicy: {{ .Values.image.pullPolicy }} + args: + {{- if ne .Release.Name "kustomize" }} + - controller + {{ else }} + # - {all,controller,node} # specify the driver mode + {{- end }} - --endpoint=$(CSI_ENDPOINT) + {{- if .Values.extraVolumeTags }} + {{- include "aws-ebs-csi-driver.extra-volume-tags" . | nindent 12 }} + {{- end }} - --logtostderr - --v=5 env: @@ -46,9 +68,10 @@ spec: name: aws-secret key: access_key optional: true - # overwrite the AWS region instead of looking it up dynamically via the AWS EC2 metadata svc - # - name: AWS_REGION - # value: us-east-1 + {{- if .Values.region }} + - name: AWS_REGION + value: {{ .Values.region }} + {{- end }} volumeMounts: - name: socket-dir mountPath: /var/lib/csi/sockets/pluginproxy/ @@ -64,12 +87,17 @@ spec: timeoutSeconds: 3 periodSeconds: 10 failureThreshold: 5 + {{- with .Values.resources }} + resources: {{ toYaml . | nindent 12 }} + {{- end }} - name: csi-provisioner - image: quay.io/k8scsi/csi-provisioner:v1.5.0 + image: {{ printf "%s:%s" .Values.sidecars.provisionerImage.repository .Values.sidecars.provisionerImage.tag }} args: - --csi-address=$(ADDRESS) - --v=5 + {{- if .Values.enableVolumeScheduling }} - --feature-gates=Topology=true + {{- end}} - --enable-leader-election - --leader-election-type=leases env: @@ -79,7 +107,7 @@ spec: - name: socket-dir mountPath: /var/lib/csi/sockets/pluginproxy/ - name: csi-attacher - image: quay.io/k8scsi/csi-attacher:v1.2.0 + image: {{ printf "%s:%s" .Values.sidecars.attacherImage.repository .Values.sidecars.attacherImage.tag }} args: - --csi-address=$(ADDRESS) - --v=5 @@ -91,8 +119,35 @@ spec: volumeMounts: - name: socket-dir mountPath: /var/lib/csi/sockets/pluginproxy/ + {{- if .Values.enableVolumeSnapshot }} + - name: csi-snapshotter + image: {{ printf "%s:%s" .Values.sidecars.snapshotterImage.repository .Values.sidecars.snapshotterImage.tag }} + args: + - --csi-address=$(ADDRESS) + - --leader-election=true + env: + - name: ADDRESS + value: /var/lib/csi/sockets/pluginproxy/csi.sock + volumeMounts: + - name: socket-dir + mountPath: /var/lib/csi/sockets/pluginproxy/ + {{- end }} + {{- if .Values.enableVolumeResizing }} + - name: csi-resizer + image: {{ printf "%s:%s" .Values.sidecars.resizerImage.repository .Values.sidecars.resizerImage.tag }} + imagePullPolicy: Always + args: + - --csi-address=$(ADDRESS) + - --v=5 + env: + - name: ADDRESS + value: /var/lib/csi/sockets/pluginproxy/csi.sock + volumeMounts: + - name: socket-dir + mountPath: /var/lib/csi/sockets/pluginproxy/ + {{- end }} - name: liveness-probe - image: quay.io/k8scsi/livenessprobe:v1.1.0 + image: {{ printf "%s:%s" .Values.sidecars.livenessProbeImage.repository .Values.sidecars.livenessProbeImage.tag }} args: - --csi-address=/csi/csi.sock volumeMounts: diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/csidriver.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/csidriver.yaml index 03c42368a..1858e39c3 100644 --- a/assets/components/aws-ebs-csi-driver/manifests/templates/csidriver.yaml +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/csidriver.yaml @@ -1,9 +1,9 @@ ---- - apiVersion: storage.k8s.io/v1beta1 kind: CSIDriver metadata: name: ebs.csi.aws.com + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} spec: attachRequired: true podInfoOnMount: false diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/node.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/node.yaml index eb53fee46..8eea8a0f1 100644 --- a/assets/components/aws-ebs-csi-driver/manifests/templates/node.yaml +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/node.yaml @@ -1,18 +1,24 @@ ---- # Node Service kind: DaemonSet apiVersion: apps/v1 metadata: name: ebs-csi-node namespace: kube-system + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} spec: selector: matchLabels: app: ebs-csi-node + {{- include "aws-ebs-csi-driver.selectorLabels" . | nindent 6 }} template: metadata: labels: app: ebs-csi-node + {{- include "aws-ebs-csi-driver.labels" . | nindent 8 }} + {{- if .Values.node.podAnnotations }} + annotations: {{ toYaml .Values.node.podAnnotations | nindent 8 }} + {{- end }} spec: affinity: nodeAffinity: @@ -25,17 +31,21 @@ spec: - fargate nodeSelector: kubernetes.io/os: linux - beta.kubernetes.io/arch: amd64 + kubernetes.io/arch: amd64 hostNetwork: true priorityClassName: system-node-critical tolerations: - operator: Exists + {{- with .Values.node.tolerations }} +{{ toYaml . | indent 8 }} + {{- end }} containers: - name: ebs-plugin securityContext: privileged: true - image: amazon/aws-ebs-csi-driver:latest + image: {{ .Values.image.repository }}:{{ .Values.image.tag }} args: + - node - --endpoint=$(CSI_ENDPOINT) - --logtostderr - --v=5 @@ -63,7 +73,7 @@ spec: periodSeconds: 10 failureThreshold: 5 - name: node-driver-registrar - image: quay.io/k8scsi/csi-node-driver-registrar:v1.1.0 + image: {{ printf "%s:%s" .Values.sidecars.nodeDriverRegistrarImage.repository .Values.sidecars.nodeDriverRegistrarImage.tag }} args: - --csi-address=$(ADDRESS) - --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH) @@ -83,7 +93,7 @@ spec: - name: registration-dir mountPath: /registration - name: liveness-probe - image: quay.io/k8scsi/livenessprobe:v1.1.0 + image: {{ printf "%s:%s" .Values.sidecars.livenessProbeImage.repository .Values.sidecars.livenessProbeImage.tag }} args: - --csi-address=/csi/csi.sock volumeMounts: diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/rbac.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/rbac.yaml deleted file mode 100644 index 77ddd2b2b..000000000 --- a/assets/components/aws-ebs-csi-driver/manifests/templates/rbac.yaml +++ /dev/null @@ -1,95 +0,0 @@ -apiVersion: v1 -kind: ServiceAccount -metadata: - name: ebs-csi-controller-sa - namespace: kube-system - #Enable if EKS IAM for SA is used - #annotations: - # eks.amazonaws.com/role-arn: arn:aws:iam::586565787010:role/ebs-csi-role - ---- - -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: ebs-external-provisioner-role -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"] - ---- - -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: ebs-csi-provisioner-binding -subjects: - - kind: ServiceAccount - name: ebs-csi-controller-sa - namespace: kube-system -roleRef: - kind: ClusterRole - name: ebs-external-provisioner-role - apiGroup: rbac.authorization.k8s.io - ---- - -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: ebs-external-attacher-role -rules: - - apiGroups: [""] - resources: ["persistentvolumes"] - verbs: ["get", "list", "watch", "update"] - - apiGroups: [""] - resources: ["nodes"] - verbs: ["get", "list", "watch"] - - apiGroups: ["csi.storage.k8s.io"] - resources: ["csinodeinfos"] - verbs: ["get", "list", "watch"] - - apiGroups: ["storage.k8s.io"] - resources: ["volumeattachments"] - verbs: ["get", "list", "watch", "update"] - ---- - -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: ebs-csi-attacher-binding -subjects: - - kind: ServiceAccount - name: ebs-csi-controller-sa - namespace: kube-system -roleRef: - kind: ClusterRole - name: ebs-external-attacher-role - apiGroup: rbac.authorization.k8s.io - - diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/role-snapshot-controller-leaderelection.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/role-snapshot-controller-leaderelection.yaml new file mode 100644 index 000000000..947d241e9 --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/role-snapshot-controller-leaderelection.yaml @@ -0,0 +1,15 @@ +{{- if .Values.enableVolumeSnapshot }} +--- +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: ebs-snapshot-controller-leaderelection + namespace: kube-system + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} +rules: + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create"] + +{{- end }} diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/rolebinding-snapshot-controller-leaderelection.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/rolebinding-snapshot-controller-leaderelection.yaml new file mode 100644 index 000000000..11d8ed49b --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/rolebinding-snapshot-controller-leaderelection.yaml @@ -0,0 +1,19 @@ +{{- if .Values.enableVolumeSnapshot }} +--- +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: snapshot-controller-leaderelection + namespace: kube-system + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} +subjects: + - kind: ServiceAccount + name: ebs-snapshot-controller + namespace: kube-system +roleRef: + kind: Role + name: snapshot-controller-leaderelection + apiGroup: rbac.authorization.k8s.io + +{{- end }} diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/serviceaccount-csi-controller.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/serviceaccount-csi-controller.yaml new file mode 100644 index 000000000..9e2cf7cc7 --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/serviceaccount-csi-controller.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: ebs-csi-controller-sa + namespace: kube-system + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.controller.annotations }} + annotations: {{ toYaml . | nindent 4 }} + {{- end }} + {{- if eq .Release.Name "kustomize" }} + #Enable if EKS IAM for SA is used + #annotations: + # eks.amazonaws.com/role-arn: arn:aws:iam::586565787010:role/ebs-csi-role + {{- end }} diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/serviceaccount-snapshot-controller.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/serviceaccount-snapshot-controller.yaml new file mode 100644 index 000000000..baa39c84e --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/serviceaccount-snapshot-controller.yaml @@ -0,0 +1,13 @@ +{{- if .Values.enableVolumeSnapshot }} +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: ebs-snapshot-controller + namespace: kube-system + labels: + {{- include "aws-ebs-csi-driver.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.snapshot.annotations }} + annotations: {{ toYaml . | nindent 4 }} + {{- end }} +{{- end }} diff --git a/assets/components/aws-ebs-csi-driver/manifests/templates/statefulset.yaml b/assets/components/aws-ebs-csi-driver/manifests/templates/statefulset.yaml new file mode 100644 index 000000000..b82460918 --- /dev/null +++ b/assets/components/aws-ebs-csi-driver/manifests/templates/statefulset.yaml @@ -0,0 +1,30 @@ +{{- 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 }} diff --git a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/controllers.tf b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/controllers.tf index 85d7ee858..cc4653016 100644 --- a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/controllers.tf +++ b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/controllers.tf @@ -13,6 +13,70 @@ resource "aws_route53_record" "etcds" { records = [aws_instance.controllers[count.index].private_ip] } +# IAM Policy +resource "aws_iam_instance_profile" "csi-driver-instance-profile" { + count = var.set_csi_driver_iam_role ? 1 : 0 + name = "${var.cluster_name}-iprof" + role = join("", aws_iam_role.csi-driver-role.*.name) +} + +resource "aws_iam_role_policy" "csi-driver-role-policy" { + count = var.set_csi_driver_iam_role ? 1 : 0 + name = "${var.cluster_name}-policy" + role = join("", aws_iam_role.csi-driver-role.*.id) + + policy = <<-EOF + { + "Version": "2012-10-17", + "Statement": [ + { + "Action": [ + "ec2:AttachVolume", + "ec2:CreateSnapshot", + "ec2:CreateTags", + "ec2:CreateVolume", + "ec2:DeleteSnapshot", + "ec2:DeleteTags", + "ec2:DeleteVolume", + "ec2:DescribeAvailabilityZones", + "ec2:DescribeInstances", + "ec2:DescribeSnapshots", + "ec2:DescribeTags", + "ec2:DescribeVolumes", + "ec2:DescribeVolumesModifications", + "ec2:DetachVolume", + "ec2:ModifyVolume" + ], + "Effect": "Allow", + "Resource": "*" + } + ] + } + EOF +} + +resource "aws_iam_role" "csi-driver-role" { + count = var.set_csi_driver_iam_role ? 1 : 0 + name = "${var.cluster_name}-role" + path = "/" + + assume_role_policy = <<-EOF + { + "Version": "2012-10-17", + "Statement": [ + { + "Action": "sts:AssumeRole", + "Principal": { + "Service": "ec2.amazonaws.com" + }, + "Effect": "Allow", + "Sid": "" + } + ] + } + EOF +} + # Controller instances resource "aws_instance" "controllers" { count = var.controller_count @@ -25,6 +89,7 @@ resource "aws_instance" "controllers" { ami = local.ami_id user_data = data.ct_config.controller-ignitions[count.index].rendered + iam_instance_profile = join("", aws_iam_instance_profile.csi-driver-instance-profile.*.name) # storage root_block_device { diff --git a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf index 0a57d19eb..3d8d76ad2 100644 --- a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf +++ b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf @@ -92,6 +92,12 @@ variable "tags" { description = "Optional details to tag on AWS resources" } +variable "set_csi_driver_iam_role" { + type = bool + default = false + description = "Set up IAM role needed for dynamic provisioning to work on AWS" +} + # configuration variable "ssh_keys" { diff --git a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/workers.tf b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/workers.tf index b350ffc95..580b6ab04 100644 --- a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/workers.tf +++ b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/workers.tf @@ -52,67 +52,6 @@ resource "aws_autoscaling_group" "workers" { ]) } -# Worker IAM Policy -resource "aws_iam_instance_profile" "worker-instance-profile" { - name = "${var.cluster_name}-${var.pool_name}-iprof" - role = aws_iam_role.worker-role.name -} - -resource "aws_iam_role_policy" "worker-role-policy" { - name = "${var.cluster_name}-${var.pool_name}-policy" - role = aws_iam_role.worker-role.id - - policy = <<-EOF - { - "Version": "2012-10-17", - "Statement": [ - { - "Action": [ - "ec2:AttachVolume", - "ec2:CreateSnapshot", - "ec2:CreateTags", - "ec2:CreateVolume", - "ec2:DeleteSnapshot", - "ec2:DeleteTags", - "ec2:DeleteVolume", - "ec2:DescribeAvailabilityZones", - "ec2:DescribeInstances", - "ec2:DescribeSnapshots", - "ec2:DescribeTags", - "ec2:DescribeVolumes", - "ec2:DescribeVolumesModifications", - "ec2:DetachVolume", - "ec2:ModifyVolume" - ], - "Effect": "Allow", - "Resource": "*" - } - ] - } - EOF -} - -resource "aws_iam_role" "worker-role" { - name = "${var.cluster_name}-${var.pool_name}-role" - path = "/" - - assume_role_policy = <<-EOF - { - "Version": "2012-10-17", - "Statement": [ - { - "Action": "sts:AssumeRole", - "Principal": { - "Service": "ec2.amazonaws.com" - }, - "Effect": "Allow", - "Sid": "" - } - ] - } - EOF -} - # Worker template resource "aws_launch_configuration" "worker" { name_prefix = "${var.cluster_name}-${var.pool_name}-" @@ -123,7 +62,7 @@ resource "aws_launch_configuration" "worker" { user_data = data.ct_config.worker-ignition.rendered - iam_instance_profile = aws_iam_instance_profile.worker-instance-profile.name + # iam_instance_profile = aws_iam_instance_profile.worker-instance-profile.name # storage root_block_device { diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index c8f69625d..877f66cd0 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -51,31 +51,145 @@ var vfsgenAssets = func() http.FileSystem { name: "templates", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), }, + "/components/aws-ebs-csi-driver/manifests/templates/NOTES.txt": &vfsgen۰CompressedFileInfo{ + name: "NOTES.txt", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 205, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcd\x31\x6e\x84\x30\x14\x84\xe1\x9e\x53\x8c\x5c\xaf\x9d\x3e\x52\xae\x90\x22\xca\x05\xde\xda\x93\x60\xc5\x18\xe4\xf7\x20\x42\xc8\x77\x5f\x41\x4b\xfb\x6b\xf4\xcd\xf7\x8c\x8d\x2d\xff\xec\xb0\x51\x0c\xf2\xaf\x9e\x4f\xf5\x51\xb3\x4f\x2d\x6f\x6c\x18\x45\xa1\x26\xcd\x98\x1e\x68\x6b\x7d\x1f\x06\x00\xf8\x5b\x9f\x8c\x56\xf0\x4b\xc3\x32\x27\xf8\x7a\x25\xaf\xbb\x1a\x27\xf8\x02\x27\xcb\x12\xce\xd6\x2a\x8d\x1a\xf2\xfc\x56\x65\xe2\xc7\x71\x20\xd7\x58\xd6\x44\xb8\xfb\x5f\x38\x37\x0e\x01\xbd\x3f\xee\x40\xae\x6a\x52\xe3\x85\x84\x2f\x16\x8a\x32\x7c\xca\x44\xf4\xee\x86\x57\x00\x00\x00\xff\xff\xd8\xf9\x69\xfc\xcd\x00\x00\x00"), + }, + "/components/aws-ebs-csi-driver/manifests/templates/_helpers.tpl": &vfsgen۰CompressedFileInfo{ + name: "_helpers.tpl", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 2184, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x55\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x0c\x08\x07\x70\xd2\x48\x2e\x50\xa0\x07\x03\x39\x14\x69\x0f\x45\x8b\x14\x68\x16\xd9\xe3\x86\x96\x46\xf6\x6c\xf8\xa1\x70\x28\x25\xde\xd8\xff\x7d\x41\x52\xf2\x57\xec\x8d\xbd\x37\xc2\x7e\xf3\xe6\xcd\x9b\x0f\xbd\xbd\x8d\xaf\xa0\x25\x3d\x01\x46\x0f\x15\x29\xf4\x8b\x1a\x6f\x74\xc3\x5e\x16\x73\x9c\xc0\xd5\x78\xb5\x1a\x04\xd4\xe0\xaf\xd7\x5a\x9a\x12\xfc\x1c\xc1\x48\x8d\x60\xab\xf8\x2e\xe6\xd2\xf9\x7c\xd0\xe1\x32\x28\xb1\x22\x83\x20\xe4\x0b\x67\x38\xe5\xac\x60\xca\x4a\x47\x2d\xba\x3c\x84\x09\xc8\x36\x40\xd9\x28\x0f\xf9\x6d\x64\xb8\x0b\x9c\xf9\x83\x54\x0d\x72\x44\xfe\xd7\xa2\x73\x54\x22\x2c\xc1\xbb\xc6\x14\xf0\xfb\x6f\xf1\x49\xfa\xbe\xa9\x2a\x7a\x05\x91\x6d\xc8\xd0\x94\xf1\x9d\xa4\xde\x3a\x94\x1e\x41\xae\x73\x54\x8d\x52\x0b\x78\x6e\xa4\xa2\x8a\xb0\x04\x59\xd7\xb1\x88\x7c\xf0\x19\x13\x7b\xc4\xfb\x90\x23\x14\xc4\x30\xc5\x42\x36\x8c\xc0\x56\x23\xfc\xd3\x4c\xd1\x19\xf4\xc8\xa9\xf4\x8a\x50\x95\x0c\xd2\x21\x28\xd2\xe4\xb1\x04\x6f\xc1\xcf\x89\x61\x34\x5d\x44\x5b\xfe\xbc\xbb\x0f\x58\x32\x33\xe0\x1a\x8b\xcb\x7c\xf0\x77\x05\x0e\x15\x4a\xee\xfc\x2b\xac\xf1\x92\x0c\x27\x07\xd3\x6f\xe4\xe1\x85\x94\x82\x29\x42\xc3\x41\x27\x83\x8c\xe2\x3b\xb5\xa7\xb8\x1c\xe0\xbb\x4e\x53\xb5\x36\xb6\xff\x73\x6d\x6e\x8f\x39\x0a\x38\xc9\x7d\xc5\x1b\xa6\x61\xac\x64\x72\x73\x7a\x83\xb7\x74\xae\x4d\x49\x2c\xf9\xff\xc9\xb1\x14\xbc\xd6\xba\xf3\xeb\xd9\x02\x6b\x47\xc6\x57\x20\x2e\x38\xbb\x60\xb1\xc7\x96\xf2\x9e\x33\x72\xc7\xde\x3b\xa3\xb8\xd5\xe3\xb0\x44\x2d\x3a\x26\x6b\x42\x7f\x63\x9f\xbb\xa1\x49\x28\x25\xa7\xa8\x4e\xeb\x75\x0c\x10\x47\x2b\xdb\x36\x3e\xbd\x1f\xba\xc4\x4b\x70\x58\x2b\x59\x20\x88\x5f\x04\x88\x2f\xe2\x67\xb6\xcc\x6a\x6d\x4d\x92\xcb\x27\xc9\x4d\xd0\x9e\x0f\xc8\x14\xaa\x29\x0f\x43\x19\x15\x16\xde\xba\x7f\xbb\x90\x1c\x36\x43\x62\xf6\x07\x43\x3c\x35\xec\xad\xa6\x6f\x28\x02\x6c\x8e\x4a\xe7\x3c\x1f\x47\x77\x26\xf0\x41\xa6\xce\xc3\xed\x04\x9d\x59\x7f\xd4\x75\xef\xd7\x6a\x35\x90\x75\x9d\x3f\xad\x0f\x41\x4e\x76\xdc\x75\x31\x66\x78\x1f\xb2\x84\xe7\xc6\x7a\x84\x2d\xef\x0e\xb2\x68\x69\xe4\x0c\xcb\x6c\xba\x48\x44\x7d\x65\xf7\xe8\x5a\x2a\xf6\xe3\x8f\xb6\xa1\x37\xec\x9c\x7e\xec\x9b\x9c\x1d\x14\x18\xa6\xf6\x43\x17\xd3\xc5\x39\xa7\x4b\xef\x13\x91\x61\x2f\x4d\x81\xbb\x3e\xc4\xd8\x8f\x4d\x30\x2d\x3a\x1f\xb7\xe8\x31\xcb\xf0\xd5\x3b\x99\xb5\x56\x35\x1a\x33\x2f\x67\xfc\x08\x85\xd5\x3a\xac\x9e\x0a\x66\x48\x37\x83\xca\x59\x0d\x12\xb4\xac\x4f\xdb\xb5\x77\x9c\x9b\xbd\x18\x3a\xe4\x70\xe9\xc2\xd1\xa3\xc2\x83\xa8\x25\x39\x16\x30\x52\xc4\xfe\x72\x0d\x73\xd2\xcc\x10\x86\x4f\xb8\xb8\x86\x61\x1b\x0e\x61\x88\xe8\x4f\x62\xe4\x7f\x88\xf4\x9f\xe4\x8c\xb7\xee\xa9\xb5\x75\x00\x6e\xb6\xfb\x26\x6c\x77\xe0\xe9\x69\x96\xe1\x8b\x16\x1c\xe9\x94\xe4\x51\x00\x2c\xe3\x57\xbd\x57\xd7\xab\x3a\x74\xb4\xa8\x82\x99\x87\x91\x42\xb3\x4b\x71\x09\xbf\x1e\xb8\x2e\x31\xbf\xc8\xe0\x80\xd1\x02\x46\x5f\x2d\x19\x10\xd7\x62\x9f\xe9\x47\xc7\xf2\x7b\x00\x00\x00\xff\xff\x2b\xc8\xd3\x50\x88\x08\x00\x00"), + }, + "/components/aws-ebs-csi-driver/manifests/templates/clusterrole-attacher.yaml": &vfsgen۰CompressedFileInfo{ + name: "clusterrole-attacher.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 593, + + 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"), + }, + "/components/aws-ebs-csi-driver/manifests/templates/clusterrole-provisioner.yaml": &vfsgen۰CompressedFileInfo{ + name: "clusterrole-provisioner.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 1145, + + 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"), + }, + "/components/aws-ebs-csi-driver/manifests/templates/clusterrole-resizer.yaml": &vfsgen۰CompressedFileInfo{ + name: "clusterrole-resizer.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 942, + + 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"), + }, + "/components/aws-ebs-csi-driver/manifests/templates/clusterrole-snapshot-controller.yaml": &vfsgen۰CompressedFileInfo{ + name: "clusterrole-snapshot-controller.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 1150, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x31\x8f\xd4\x30\x10\x85\xfb\xfc\x8a\x91\xeb\xd8\x27\x24\x0a\x94\x96\x82\x1e\xa4\x6d\x10\xc5\xc4\x1e\x6e\xad\x73\xec\x68\x66\x9c\x93\x38\xee\xbf\x23\x9b\xc0\x15\xbb\xa7\x43\x61\xab\x48\xd1\xf3\xfb\xde\xf3\x78\x9e\x9e\x2c\xc4\xef\xe0\x4e\x98\x2a\x89\xa3\x8c\x73\xa2\x53\x49\x75\xa1\x2f\x19\x57\x39\x17\x85\xe7\xe7\xc1\x5a\x3b\x3c\xc4\x1c\x26\xf8\x98\xaa\x28\xf1\xe7\x92\x68\xc0\x35\x9e\x88\x25\x96\x3c\x01\xcf\xe8\x1d\x56\x3d\x17\x8e\x3f\x50\x63\xc9\xee\xe1\x83\xb8\x58\xee\xb6\x77\xc3\x42\x8a\x01\x15\xa7\x01\x20\xe3\x42\x13\xd0\x2c\x56\x76\x80\xf5\x25\x2b\x97\x94\x88\x2d\x37\x5f\x80\x84\x33\x25\x69\x72\x80\x1e\x31\xfb\x54\x03\x81\xc1\x47\xb1\xed\xac\x97\x68\x03\xc7\x8d\xd8\xfd\xd6\x1a\x70\xf0\x13\x72\xcc\x81\xb2\xc2\xfb\x16\x9a\x6b\xa2\xee\x61\x01\xd7\xf8\x89\x4b\x5d\x65\x82\xaf\xc6\x7c\xeb\xbe\x4c\x52\x2a\x7b\xea\xff\xd6\xd6\x43\x94\xb2\x6e\xbd\xbc\xec\xa2\x8d\x78\xee\x82\x7b\x52\x33\x82\x49\x51\xfa\xf7\x11\xd5\x9f\xbb\xe6\x80\xb9\x4f\x18\x97\x7f\x23\x8c\x60\xea\x1a\x50\xe9\x1a\x4b\xb4\x30\xde\xd3\x7e\xd1\xd7\xc8\xbb\xc2\x27\x14\xb9\x6d\x27\xda\x28\xeb\x85\xe3\x45\x78\xcf\xd4\xc2\xbf\xd4\x18\xc1\xac\xaf\x71\xfe\x3c\x08\xf7\x76\xb1\x7d\x4a\xfb\x81\xff\xec\x77\x9c\x5b\xb2\x5e\xbb\x86\x97\xd6\x6f\x0c\x75\x04\x13\x28\xd1\x2b\xe3\x3d\x1a\xeb\x16\x4f\xeb\x30\xfb\x4e\x14\xb5\x5e\x44\xf8\x8b\x1a\xda\x3e\x53\x0e\x6d\x43\x7f\x05\x00\x00\xff\xff\xe5\x24\xb9\xec\x7e\x04\x00\x00"), + }, + "/components/aws-ebs-csi-driver/manifests/templates/clusterrole-snapshotter.yaml": &vfsgen۰CompressedFileInfo{ + name: "clusterrole-snapshotter.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 802, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x31\x8f\xd4\x30\x10\x85\xfb\xfc\x8a\x51\x6a\x9c\x13\x12\x05\x4a\x4b\x41\x0f\xd2\x36\x68\x8b\x89\xfd\xb8\xb5\xce\x6b\x47\x33\xe3\x1c\xe2\xb8\xff\x8e\x6c\x72\x20\xb4\x11\xa2\x80\x6e\xe4\x99\x79\xdf\xcb\xcb\x3c\x3d\x39\x8a\x9f\x69\x3a\x71\xaa\xd0\x09\x99\x97\x84\x53\x49\xf5\x8a\x8f\x99\x57\xbd\x14\xa3\xe7\xe7\xc1\x39\x37\x3c\xc4\x1c\x66\x7a\x97\xaa\x1a\xe4\x43\x49\x18\x78\x8d\x27\x88\xc6\x92\x67\x92\x85\xfd\xc4\xd5\x2e\x45\xe2\x57\xb6\x58\xf2\xf4\xf0\x56\xa7\x58\xee\xb6\xd7\xc3\x15\xc6\x81\x8d\xe7\x81\x28\xf3\x15\x33\x61\x51\x87\x2f\x06\xc9\x9c\x9c\xee\x24\x83\x38\x69\xc2\x44\x89\x17\x24\x6d\xf3\x44\xdd\x63\xf6\xa9\x06\xd0\xc8\x8f\xea\xda\xb2\xd7\xe8\x82\xc4\x0d\x32\xfd\x98\x1d\x69\xa2\x6f\x94\x63\x0e\xc8\x46\x6f\x9a\x6b\xa9\x09\x5d\xc3\x11\xaf\xf1\xbd\x94\xba\xea\x4c\x9f\xc6\xf1\xdc\x75\x05\x5a\xaa\x78\xf4\x37\x6c\xc8\xa6\x7b\x67\x83\x2c\xfd\x35\x45\xb5\xf1\x15\x8d\x8f\x6c\xfe\xd2\x0a\x2f\x60\x43\xab\xea\x1a\xf6\x6a\xed\xcd\xf3\xdf\x71\x14\x5e\x70\x0b\xba\x47\xe7\x74\xde\x81\xd2\x4b\x42\x93\x5a\x11\xbe\xc7\x9e\xed\x11\x60\xeb\x3f\xef\x65\xc1\x27\x56\xc5\x1f\x71\x3f\x3f\xef\x9f\x72\x4b\xb6\xa3\x40\x7f\xe5\x77\x68\xe1\xb7\x5c\x03\x12\x0c\xff\xc5\xd6\x9d\x1a\x5b\xbd\x71\xb7\xb3\xcf\x43\x3b\x39\xe4\xd0\x8e\xe8\x7b\x00\x00\x00\xff\xff\x90\x55\xf3\x8c\x22\x03\x00\x00"), + }, + "/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-attacher.yaml": &vfsgen۰CompressedFileInfo{ + name: "clusterrolebinding-attacher.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 380, + + 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"), + }, + "/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-provisioner.yaml": &vfsgen۰CompressedFileInfo{ + name: "clusterrolebinding-provisioner.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 386, + + 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"), + }, + "/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-resizer.yaml": &vfsgen۰CompressedFileInfo{ + name: "clusterrolebinding-resizer.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 428, + + 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"), + }, + "/components/aws-ebs-csi-driver/manifests/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, + + 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"), + }, + "/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-snapshotter.yaml": &vfsgen۰CompressedFileInfo{ + name: "clusterrolebinding-snapshotter.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 437, + + 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"), + }, "/components/aws-ebs-csi-driver/manifests/templates/controller.yaml": &vfsgen۰CompressedFileInfo{ name: "controller.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 3195, + uncompressedSize: 5549, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x56\x4f\x6f\x1b\xb7\x13\xbd\xeb\x53\x0c\xe0\x1c\xf2\x03\xb2\x96\xed\x5f\x5d\xb8\x04\x74\x10\x24\x35\x30\xd2\xda\x86\x65\x34\xe8\x49\xa0\xb8\x63\x89\x10\x97\xc3\x72\x66\x37\xde\x04\xf9\xee\x05\xf5\xcf\xab\xd5\xba\x49\x0a\x24\xa7\xea\xc8\xf7\xe6\x1f\xdf\xf0\xad\xb2\x2c\xeb\x9d\xc0\x88\xbc\x44\x72\x0e\x23\x4c\x31\x56\xd6\x60\x6f\x65\x7d\xae\x60\x8c\xc1\x51\x5d\xa0\x97\x9e\x0e\xf6\x0f\x8c\x6c\xc9\x2b\xd0\x21\x70\xbf\x3a\xef\x15\x28\x3a\xd7\xa2\x55\x0f\xc0\xeb\x02\x15\xe0\x9c\x33\xc3\x36\x33\xfb\x8c\x5b\x88\x83\x36\xa8\x60\x55\xce\x31\xe3\x9a\x05\x8b\x1e\x07\x34\x29\x32\x62\x70\xd6\x68\x56\x70\xd1\x03\x60\x74\x68\x84\x62\x42\x00\x0a\x2d\x66\xf9\x9b\x9e\xa3\xe3\xcd\x01\xa4\xe2\x2f\xd4\x11\x2c\x82\xd3\x82\xdb\xd0\x46\x73\xe9\xe7\x0e\xb2\xfc\x53\x1e\x80\x5d\x6b\xe9\xe7\x29\xc7\xe9\x41\x53\xe9\x97\x06\x89\x1e\x05\xf9\xd4\x52\x9f\x58\x81\xb3\xbe\x7c\xda\xe3\x73\x14\x7d\x7a\x48\xd2\xd1\x2c\x15\xe8\x22\xff\xf9\xa7\x2d\x8d\x37\x97\x3d\x34\x86\x4a\x2f\x5d\xdd\x64\xac\xb7\xdc\x10\x2d\x45\x2b\xf5\xc8\x69\xe6\x9b\xf5\x65\x6f\xee\x31\x33\xae\x64\xc1\x98\x99\x68\xc5\x1a\xed\xb6\x01\x42\x0e\xa3\x16\x4b\xbe\x31\x74\x06\x2b\xac\x15\x8c\xb6\xd4\x61\x9e\x93\xe7\x5b\xef\xea\x3d\x03\x80\x42\x8a\xa3\xa8\x60\xf2\x64\x59\x78\x0b\xa5\xa6\xb4\xf5\x18\x0f\xd2\x3d\xcb\x1e\x5c\xb9\xb0\xbe\x91\xc7\x16\x7a\x81\x69\x60\xfd\x91\x7c\x5f\x7f\xe0\x6c\x37\x5f\x1e\x6d\x85\x51\x25\xad\x58\x1a\x11\x3a\x2e\x18\x54\xe3\xe0\x04\x32\xf8\xa4\x9d\x7b\xf3\x7c\x23\x6f\x92\x1e\x9f\xe1\x64\xad\x91\x7d\xac\x41\x96\x08\x9b\x84\x50\x50\x8e\x8d\xe8\xd4\x5f\x96\xa1\xcf\x03\x59\x2f\x83\x57\xaf\x47\xd3\xeb\xd9\xe4\x66\x7c\x77\x7b\x7d\xf3\xf0\xbf\x23\xa2\xa3\x85\x10\x4b\x8e\x31\x1e\x61\xd5\xe0\xb2\x71\x86\xbe\x52\x2d\xca\xe6\x1e\x9a\x05\x0e\x08\x00\x95\x76\x25\x2a\x28\xbd\x7d\x52\xfd\x7e\xbf\xd2\xb1\xef\xec\xbc\x6f\xd8\xf6\x99\xcc\x0a\x85\xfb\x9b\x1b\x0c\x91\x9e\xea\x74\x7e\x9a\xce\x3b\xcb\x0c\xdf\x4f\x67\xc3\xd1\x68\x32\x9d\xce\xde\x4d\xfe\x9c\x5d\x8f\xbb\x6a\xfd\x1a\xa9\x50\x2d\x20\xad\x9c\x89\x28\xef\xb0\xbe\xc7\xc7\x63\x74\xf7\x8c\x93\x58\x1b\x66\x07\x65\xbd\x41\x2b\xac\x67\x36\xef\x40\x29\xa4\x95\xd3\x4e\x81\xc4\xb2\xad\xc6\x73\xfb\xd3\xc9\xe8\x7e\xf2\xd0\x98\xe2\xc7\x8f\xa0\x8d\x41\xe6\xd9\x0a\xeb\x6f\x19\xe3\x04\xa8\xc2\xf8\x21\x5a\xc1\xf5\xea\x0d\xdf\x4f\x21\xe2\xc2\x92\x07\xeb\x59\x50\xe7\x40\x8f\xe0\x88\x56\xd6\x2f\xc0\x0a\x94\x01\xf2\xda\xeb\x22\xbd\x37\x57\x43\x65\xf5\x3e\x6e\x32\xba\xd8\xdb\x14\x70\x65\x5a\x9b\xff\x7c\x5b\xf7\x93\xb7\xd7\xb7\x37\x07\xf0\xf3\x46\x71\x86\x9a\x25\x3b\x6f\xc0\x15\xb9\xb2\xc0\xdf\x93\xab\x70\xf7\xa6\x6e\x76\x2e\xcb\x6d\x6c\x0d\x5f\xa4\xa0\x3b\x2d\x4b\x05\x5f\x5c\xd2\x46\x68\xa0\xf8\x52\xa9\x25\x6a\x27\xcb\x8f\xad\x3a\x7b\x3b\xb9\xa3\x28\x0a\x7e\xb9\x3a\xbb\x6a\x31\x42\x24\x21\x43\x4e\xc1\xc3\xe8\xae\x81\x39\x5b\xa1\x47\xe6\xbb\x48\x73\x3c\x2c\xb9\x14\x09\x6f\x51\xda\x5b\x11\x36\xe3\x74\x37\x12\xd6\xf5\xbb\x30\xeb\xad\x58\xed\xc6\xe8\x74\x3d\x45\x43\x3e\x67\x05\xe7\x67\x07\x1c\xb1\x05\x52\x29\x7b\xf8\xff\x07\x68\xc0\x68\x29\x7f\x29\xf6\x51\x5b\x57\x46\x7c\x58\x46\xe4\x25\xb9\x5c\xc1\xe5\x91\xb3\x26\xbb\x0c\x91\x2a\x9b\xbe\xbc\x18\x8f\xed\xf5\xaf\x52\xd7\xe9\xeb\xb2\xba\xe2\x24\x53\x8b\xaf\xaa\xf3\xd3\xcb\xd3\xb3\x96\xc7\xb6\x75\xca\xd6\xae\xac\xf3\x3c\x22\xf3\xe0\xd5\xeb\xe1\x78\x7c\x3f\x99\x4e\x8f\x2d\xf2\xd0\x06\x37\x67\x8f\xa8\xa5\x8c\x98\x2d\x92\x9b\x0f\x1e\x28\x90\xa3\x45\x3d\xe8\x78\xfd\xc9\x8b\xf5\xdc\x61\xe6\x50\xe7\x18\xb3\xf5\x47\xd5\x92\x3f\x76\xe2\x43\x3c\x93\x3a\xe0\xc0\xa1\x66\xe4\xaf\x71\xe1\x6d\xfb\xdd\x06\xfc\x6f\x9c\xf7\x47\x3f\xa7\xa6\xf8\x5a\x44\x9b\xe5\x57\x2a\xbf\x23\x27\xd9\x2f\xbe\xaf\xec\x2d\x8d\xba\xf5\xfe\x4f\xc8\x4d\xd6\x9d\x65\xa5\xa7\x39\xc7\x2f\x4a\xb9\xa3\xaf\xd9\x49\xcb\xf3\x6f\xd4\xb2\xbf\x5d\x88\xef\x34\xbf\x61\xdb\x6b\x26\xec\xf8\x47\xd8\x99\x07\x8b\x20\xf5\xd8\x46\x05\x9f\x3e\xf7\xfe\x0e\x00\x00\xff\xff\x94\xda\xd5\x55\x7b\x0c\x00\x00"), + 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\x1a\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\x38\xfe\xef\x05\xb5\xfa\xd8\x2f\x45\xae\x50\xe7\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\xa3\x4c\x12\xc3\x08\x9d\xb6\x45\x86\x86\x7b\xc2\xa9\xcf\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\xad\xc7\xb5\x88\x9c\x90\x18\xc3\x4d\x3e\xc3\x88\x0a\x62\xcc\x7a\x00\x5a\xcc\x50\x53\xb0\x06\xb8\xbb\x8b\x40\x19\xa9\xf3\x04\xe1\x44\x7c\xa5\x68\xe3\x2a\xf1\x6a\x89\xbe\x5f\xea\x9e\x40\x1f\xbe\x83\x51\x26\x41\xc3\xf0\x06\xee\xef\x7b\xe4\x50\x06\x17\x1e\x9d\x56\x52\x50\x0c\x77\x77\xd0\xff\x2c\x74\x8e\xd4\x5f\x1f\x0e\x6d\x6e\x38\x28\x03\x10\x6a\x94\x6c\x7d\x19\x35\x13\x2c\xd3\x8f\x15\x18\x10\x92\xdb\x93\xc7\x43\x60\x6e\xdc\x7f\xec\x80\xfb\xb6\x44\xc0\x98\x39\x2d\x18\xd7\x08\x2a\x35\x0c\x9f\xae\x81\x39\x04\xe7\xb8\xba\xbd\x2b\x81\x6c\xcd\xe7\xdb\x7a\x39\x9b\x9c\x19\x63\x59\xb0\xb2\x86\x76\x6a\x62\x77\xb8\xaa\x2f\xdb\x2f\x22\xd3\xfb\xcc\xf6\x46\x42\x93\x6c\x0e\x36\x6d\x0b\x9f\xb1\x09\x4e\x6b\x7d\x09\x5f\xe0\x8a\x37\xc8\x48\x7d\x65\x07\x96\x62\xd0\xca\xe4\xb7\x7b\xe4\xc2\xcb\x34\x06\x91\x25\x6f\xdf\xd4\x6a\xf3\x55\x71\xba\xc5\x59\x0d\x14\x80\x54\x32\x81\xef\xd0\xc6\xdc\x42\x1d\xf8\xb3\xba\x20\x67\x52\x06\x4e\x5d\xec\x61\x7d\x44\x62\xad\xef\xbc\xb2\x5e\x71\x31\xd4\x82\xa8\x54\x2f\xf9\x1f\x49\x9d\x13\xa3\x8f\xa4\x57\xac\xa4\xd0\xbd\x3d\xa0\xc5\x7c\xae\x8c\xe2\xa2\xd2\x8d\xf5\x49\xad\x15\x0f\xaa\x3a\x00\x5b\x8d\x7e\xdd\xc9\x6d\x96\x11\x58\x17\x4e\xad\x8f\x61\x7c\xab\x88\x69\x1f\x98\x8a\xf9\x43\x0a\xd8\x0a\x1f\x4a\x24\x94\x41\x5f\x8b\xbe\x1b\x1e\x4e\xe7\x0b\x65\xb6\x22\x00\x95\x89\x05\xd6\xee\xf4\xea\x24\xdc\x6c\x4b\x8a\xad\x0f\x75\x89\x5b\x62\x16\x8b\x6a\x1b\xd7\x7e\x26\xb9\xd6\x13\xab\x95\x2c\x3a\x3c\xba\xad\xb0\x6e\x29\xfc\xa2\x02\xb6\x72\x69\x0c\x42\xff\x12\x35\x0a\xc2\x7e\xe8\x2c\x9c\xdc\xe4\xc4\x36\x53\xdf\xf0\xa4\xee\x22\xe4\xd8\x71\x77\x4b\x5f\x80\x9a\xb0\xa9\xff\x04\x22\xb8\x13\x5a\xbf\xdc\x99\xbd\x0c\xec\xbd\x87\x27\xab\xab\xa3\xe6\x05\x70\x8a\x50\xde\x72\xc8\x6c\x82\x2d\x88\xb5\xc2\x6f\x60\x44\x11\x9a\xc4\x59\x65\xf8\xf4\xe9\xf3\xe1\xf4\xfc\x7a\x7c\x31\x9a\x7c\x3a\xbf\xb8\x7a\xd1\x95\xe2\xa6\x42\x78\xcb\x5e\x7c\xb6\x3a\xcf\xf0\x4a\x2c\xa8\xe9\xf6\xf0\x18\x5a\x39\x88\x96\x2b\x0f\x11\x8b\x45\x63\x22\xbd\xfe\x5f\xd3\xe5\x0f\x12\xd0\x76\xc1\x96\x38\x41\xef\x5b\xb2\xe5\xe9\x2f\x95\x33\x34\xcb\xb8\xa1\x52\x52\xad\x9a\x78\x23\x93\x65\xc8\x38\x86\xdc\xa8\xdb\x78\x30\x18\x2c\x85\x1f\x68\x35\x1b\x48\x52\x03\xb2\xf2\x06\x99\x06\x25\x49\x9d\xb7\xb7\x45\x38\xef\x87\xf3\xce\x30\x67\x7f\x4c\xaf\xcf\x86\xc3\xf1\x74\x7a\xfd\x61\xfc\xe5\xfa\x7c\xd4\x15\xeb\x37\x6f\xb3\xb8\x21\x08\x73\x46\x7a\xe4\x0f\x58\x5c\xe2\xbc\x2d\xdd\xec\xdb\x50\xe9\x52\xb3\x43\xe5\x06\x8b\x38\xfc\xb9\x56\x49\x87\xd4\xba\x70\x8b\x85\x8e\x81\x7d\x8e\x7b\xe1\x4f\xc7\xc3\xcb\xf1\x55\x25\x8b\x9f\x9f\x82\x90\x12\x89\xae\x6f\xb0\xf8\x6b\x69\x34\x38\xec\x71\xa1\xac\x69\x13\x6a\x97\xeb\xe5\xf8\xfd\xf9\xa7\x8b\x6e\x3e\xd4\x1e\x15\x5d\x8e\x3a\x09\x5b\x12\xfe\xf7\xb0\x2a\xa8\x9b\x89\x25\xa7\xa2\x44\xf9\x46\xdc\x2c\x18\x4d\x04\xa7\x31\x1c\x24\x61\xc5\xd4\x59\xbf\x2f\x54\x8a\x42\x73\xfa\xad\x11\x67\x3b\x91\x27\xd6\x73\x0c\xbf\xbe\x7b\xf5\xae\xa1\xe1\xbc\x65\x2b\xad\x8e\xe1\x6a\x38\xa9\xc8\xb4\x5a\xa2\x41\xa2\x89\xb7\x33\xac\x87\x4c\x99\xdd\x7b\xe4\x66\xd7\x5d\x99\x4e\x37\x10\xb7\x8a\xdf\x25\x0b\xcb\x4e\x09\x3d\x42\x2d\x8a\x29\x4a\x6b\x12\x8a\xe1\xf5\xab\x9a\x0e\xab\x0c\x6d\xce\x5b\xf1\xff\x6b\x52\x87\x5e\xd9\x64\x9f\xed\x5c\x28\x9d\x7b\xbc\x4a\x3d\x52\x6a\x75\x12\x43\x75\x88\xb4\x76\xa0\x47\xb2\xb9\x97\xd8\x18\x83\xdb\xe3\x7d\x6b\xb9\x39\xe4\x3a\x18\xb3\x69\x55\x98\x9c\xce\xdb\xa5\x0a\x0f\xee\xda\xc6\xd8\xed\x43\xe7\x95\xe1\x39\x9c\x3c\xa3\xf8\x59\x18\xa7\x6b\x74\xa4\x12\x94\xc2\x53\xbf\x62\x7f\xde\x5c\x99\x87\x95\x5b\x0b\xb4\xbd\x06\xc3\xbc\x0d\x40\x45\x92\x78\x24\x3a\x7d\xfa\xfc\x6c\x34\xba\x1c\x4f\xa7\x2f\x0e\x8c\xe5\xf6\x7a\x31\x62\xa6\xb1\xdc\x2f\x53\x99\x62\x92\x6b\x65\x16\x5d\xb3\x7f\x8e\x82\x73\x8f\xd1\x42\x30\xd2\xe9\x95\x75\x56\xdb\x45\x71\xda\x79\xf7\xd1\x24\x9d\xeb\x2f\xc4\x8a\x34\x8a\x04\x7d\xb4\x7a\x0c\x2a\x6b\xda\x4b\xa6\x2e\x8f\xb8\x70\x78\xba\xda\xf5\xf4\x90\x05\xb3\xae\x44\xf7\x2c\x39\x66\xa9\xfc\xec\x49\x52\x65\xa2\x60\x16\x32\x3d\x92\x86\x1b\xe3\xc3\x1c\xac\x6b\x3e\x2e\x01\x3b\x5a\xdc\x26\xd1\x7f\x3c\xf8\xf1\x4d\x35\xc2\x51\x6a\x79\xdf\x00\xa3\xb5\x9c\x8f\x64\x4e\xc5\xfe\x30\x79\x5a\xca\x7f\x2f\x7f\x0e\x70\xe5\x9f\xdd\xff\xc6\x92\xfa\x01\x25\x2e\x91\xd4\xb7\xc6\xe8\xae\x52\xc2\x07\xf9\x91\x74\x58\xdb\x1e\xa6\x42\x4d\xf1\xf0\x3f\x82\x67\xfa\xab\x28\xe8\x71\x06\xcd\xbf\x8a\x17\x9b\x40\x9b\x77\x61\x78\xc1\xcc\xf0\xa8\x5e\xd7\x9e\x96\x87\x3b\xde\xa1\x7e\xc4\xf5\x5f\x25\xfd\x78\xa5\x95\xa4\x7a\x55\x87\x1d\xbf\x80\x74\xfa\xc1\xcc\x71\x31\x52\x3e\x86\xbb\xfb\xde\x9f\x01\x00\x00\xff\xff\xae\x5f\x2e\x9f\xad\x15\x00\x00"), }, - "/components/aws-ebs-csi-driver/manifests/templates/csidriver.yaml": &vfsgen۰FileInfo{ - name: "csidriver.yaml", - modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - content: []byte("\x2d\x2d\x2d\x0a\x0a\x61\x70\x69\x56\x65\x72\x73\x69\x6f\x6e\x3a\x20\x73\x74\x6f\x72\x61\x67\x65\x2e\x6b\x38\x73\x2e\x69\x6f\x2f\x76\x31\x62\x65\x74\x61\x31\x0a\x6b\x69\x6e\x64\x3a\x20\x43\x53\x49\x44\x72\x69\x76\x65\x72\x0a\x6d\x65\x74\x61\x64\x61\x74\x61\x3a\x0a\x20\x20\x6e\x61\x6d\x65\x3a\x20\x65\x62\x73\x2e\x63\x73\x69\x2e\x61\x77\x73\x2e\x63\x6f\x6d\x0a\x73\x70\x65\x63\x3a\x0a\x20\x20\x61\x74\x74\x61\x63\x68\x52\x65\x71\x75\x69\x72\x65\x64\x3a\x20\x74\x72\x75\x65\x0a\x20\x20\x70\x6f\x64\x49\x6e\x66\x6f\x4f\x6e\x4d\x6f\x75\x6e\x74\x3a\x20\x66\x61\x6c\x73\x65\x0a"), + "/components/aws-ebs-csi-driver/manifests/templates/csidriver.yaml": &vfsgen۰CompressedFileInfo{ + name: "csidriver.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 209, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\xcc\xb1\x4e\x03\x31\x0c\x06\xe0\x3d\x4f\xf1\xab\xfb\x05\x55\x62\x40\x59\x61\xe9\x80\x90\x40\x62\xf7\x25\x2e\x58\xcd\x39\x47\xec\xb4\x43\xe9\xbb\xa3\xa3\xfb\xa7\x8f\x56\xf9\xe4\x6e\xd2\x34\xc1\xbc\x75\xfa\xe2\x78\x7a\xb2\x28\xed\xe1\xbc\x9f\xd9\x69\x1f\x4e\xa2\x25\xe1\xf9\xe3\xf0\xd2\xe5\xcc\x3d\x2c\xec\x54\xc8\x29\x05\x40\x69\xe1\x04\x9e\x2d\x66\x93\x48\x17\x8b\xb9\x2d\x01\xa8\x34\x73\xb5\x4d\x00\xd7\xeb\x04\xd1\x5c\x47\x61\xec\xe8\x62\x13\xcf\x36\x65\x93\xa9\xfc\x7f\xf1\x6e\x77\x88\xf8\x85\x8a\x16\x56\xc7\x23\x6e\xb7\x60\x2b\xe7\xad\x20\x77\xca\xdf\xef\xfc\x33\xa4\x73\x49\xf0\x3e\x38\x00\x6b\x2b\x07\x3d\xb6\x37\x7d\x6d\x43\x3d\xe1\x48\xd5\x38\xfc\x05\x00\x00\xff\xff\xb6\x90\x9b\xde\xd1\x00\x00\x00"), }, "/components/aws-ebs-csi-driver/manifests/templates/node.yaml": &vfsgen۰CompressedFileInfo{ name: "node.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 3187, + uncompressedSize: 3793, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\xcd\x6e\xe3\x36\x10\xbe\xfb\x29\x08\x77\x0f\x29\x50\x59\x09\xda\x2d\x52\x01\x39\xa4\xb1\xb1\x0d\xda\x3a\x46\x1c\xec\xa5\x28\x02\x9a\x1c\x4b\x84\x29\x92\x3b\x1c\x29\xf6\x3e\x7d\x41\x49\x8e\xf5\x97\x64\x37\x15\x60\xc3\xe6\x7c\xf3\xcb\x6f\x66\x14\x45\xd1\xe4\x07\xb6\xb4\x12\xd8\x1a\xb0\x54\x02\x26\x3b\x65\x64\xc2\xe6\x1c\x72\x6b\xd6\x40\x13\xee\xd4\x67\x40\xaf\xac\x49\x18\x77\xce\xc7\xe5\xc5\x24\x07\xe2\x92\x13\x4f\x26\x8c\x19\x9e\x43\xc2\x60\xe3\x23\xe1\x55\x64\xac\x84\xe6\xd0\x3b\x2e\x20\x61\xbb\x62\x03\x91\x3f\x78\x82\x7c\xe2\x1d\x88\xa0\xe3\x41\x83\x20\x8b\xe1\x37\x63\x39\x27\x91\xfd\xc5\x37\xa0\x7d\x7d\xc0\x82\xa3\x81\x4d\x82\xdc\x69\x4e\xd0\x28\xb5\x42\x08\x8f\xee\xe8\x8f\x5b\x60\xec\x18\x40\x85\xd8\x6e\x95\x51\x74\x38\xe9\x04\xd8\xf5\xe0\x94\x31\x84\x2f\x85\x42\x90\xf3\x02\x95\x49\xd7\x22\x03\x59\x68\x65\xd2\xdb\xd4\xd8\xe7\xe3\xc5\x1e\x44\x41\xa1\x4c\x2d\xcd\xda\xe6\xba\x49\xf7\x01\x30\xf7\x5d\x71\x54\x67\xbf\xd8\x3b\x04\x1f\x8a\xdc\x93\x07\xc4\x0e\x0e\x09\x83\x9d\x9f\xf1\x9c\x7f\xb5\x86\x3f\xf9\x99\xb0\x79\x2c\x6c\xee\x0a\x82\x88\x0e\x0e\x7a\x3a\x8c\x59\x07\xc8\x43\x85\xd9\xd2\xd2\xad\x19\xc8\x4b\xae\x0b\x18\xf8\x0a\xde\xb6\x1c\x53\x4e\x47\x8b\xed\xf0\x4f\xe8\x70\xa7\x68\x80\xc0\xcf\x94\x8d\xad\x4f\x98\x56\xa6\xd8\x3f\xcb\x37\x40\x7c\xd6\x05\x71\x14\x59\xc2\x78\x2e\x7f\xfd\xa5\x81\x65\xd6\xd3\x12\xe8\xc9\xe2\x2e\x61\x84\xc5\xd1\xa5\x43\x65\x51\xd1\xe1\x46\x73\xef\x97\x15\xbb\x6a\xfa\x54\xd7\x18\x09\x54\xa4\x04\xd7\x0d\x9a\xac\x0e\x99\x76\x2b\x17\xb5\xf2\x5f\xec\x95\x27\xdf\x88\x84\x35\xc4\x95\x01\xec\x80\x4f\x14\x76\xba\x48\x55\xbb\x5a\x1e\x44\x51\x05\x63\x0d\xc1\x9e\xba\x05\x73\xa8\x4a\xa5\x21\x05\xd9\x49\x20\x3c\x2a\xe7\x29\x84\x7c\xc3\x8d\xc5\xfc\xc9\x47\x47\x2e\x4a\x54\x25\x60\x12\x98\xec\xa9\xa5\xc1\x31\x1d\x70\x23\x8a\xc0\x48\x67\x95\xa1\xab\x0f\x67\x37\xeb\xdb\xc7\xc5\x72\xbe\xba\xbb\x5d\x3e\xfc\x38\x00\x6a\x9b\x92\xf5\x24\x01\x71\x20\x2b\xaf\x3e\xb6\xce\xc0\x94\x7d\x3f\x75\x01\xda\x0e\x7a\xc4\xa8\xe8\x92\xb0\xc2\xa8\x7d\x12\x0b\xaf\xc2\x67\xe6\xad\xd8\xb5\x70\xa5\xd5\x45\x0e\x7f\xdb\xc2\xd0\x20\x91\xda\x41\x60\x84\x06\x8a\xa4\xc2\x9e\xfd\x3c\x68\xad\x38\x65\x09\x8b\x4b\x8e\xb1\x56\x9b\xb8\x41\x8f\x22\xd1\x3a\x9e\x56\xb7\x9e\xb0\xe9\xef\x4a\x2a\x04\x11\xfe\x71\x3d\x1d\xf5\x5c\xdf\xeb\x1b\x8e\x85\x57\xa3\xca\x12\xc2\x60\x7c\x43\x59\x42\xd9\x92\x3a\x8b\x2f\x15\x21\x03\xae\x29\xfb\xda\x33\xf5\x4c\xcc\x95\x45\x4a\xd8\x6f\x97\xe7\x97\x3d\x84\x43\x4b\x56\x58\x9d\xb0\x87\x9b\x55\x4b\xa6\x55\x09\x06\xbc\x5f\xa1\xdd\x40\xd7\x65\x46\xe4\x3e\x01\xf5\xbb\xdc\xd5\x11\x8f\x07\xe2\x2a\xff\x63\xb2\x30\x16\x15\xd7\x73\xd0\xfc\xb0\x06\x61\x8d\xf4\x09\xbb\x38\xef\x60\x48\xe5\x60\x0b\x7a\x16\xff\xdc\xed\x17\x40\x65\xe5\x4b\xba\x5b\xae\x74\x81\xf0\x90\x21\xf8\xcc\x6a\x99\xb0\x8f\x83\x1e\xad\x26\x40\xdd\x41\x11\x42\xaa\x3c\x21\xc7\x61\xdb\x7d\x29\xf8\x21\x0c\x9d\xdd\xa5\x6f\xc8\x1a\x8d\x6a\x26\xe5\xc5\xec\x62\x76\xfe\x66\x17\x06\x03\x5c\xca\x30\xa2\xaf\x3e\x9c\x5d\xcf\xe7\xf7\x8b\xf5\x7a\xd8\x83\x47\x7e\x1f\xed\x07\x46\x46\xa1\xda\x57\x1f\xce\xe6\xf7\xb7\x9f\x17\xf7\x8f\xf7\x8b\x4f\x8f\xeb\xbb\x9b\x3f\x1f\x57\xd7\x0f\x7f\x0c\x2d\x74\x3b\x55\xab\x2d\x88\x83\xd0\xd0\x1f\x3b\xb0\x26\xeb\xfa\xd7\x0a\xfb\xd3\x6e\x3b\x3d\xc2\xe6\x39\x0f\x1b\xfd\x9f\x69\xbc\x51\x26\xf6\xd9\xf4\x27\x36\x8d\x44\xf8\xc6\x9c\x45\xb8\x65\x71\x3b\xde\x18\x36\x7e\x16\xba\xbb\x59\x33\x21\x99\xaa\xd3\x59\xa7\xef\xa7\xff\x7e\xcb\x44\x69\x2a\x35\x3e\x4c\x5e\x9a\x23\x27\xf5\xb1\x9a\xbd\x60\xab\x37\x34\xe2\xba\xe1\x7d\x3f\x9b\xf7\xcd\xad\xff\x35\x3d\x3a\x64\x78\xdd\x44\x1b\x3a\xa0\xfe\xb1\xcf\x23\x17\x1a\xfd\x4d\xce\x1f\xe1\x15\xfa\x3d\x3c\x7f\xff\x98\xff\xce\x72\xd5\x06\x47\x16\xf2\xf8\xba\x08\xaf\x0d\x95\x8d\x6e\x4f\xbc\xbd\x3b\xc2\x7b\x52\xc2\xe6\xd5\xaa\xb0\x78\x18\xb8\x1b\x0d\xfb\x7b\xbc\xbd\x48\xba\xd7\xc2\xb8\xc3\x1b\x84\xd3\xfb\xd6\x37\xf1\xe6\x3d\x41\x3d\x36\xf6\x0e\xaf\x46\x33\x88\x62\x74\xf7\xbd\xea\xbf\xbb\x08\x87\x1e\xfe\x0b\x00\x00\xff\xff\x85\x20\xa3\x49\x73\x0c\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x6d\x6b\x1b\xb9\x13\x7f\x9f\x4f\x31\xf8\xdf\x42\xff\x70\xeb\x6d\xb9\xb6\xf4\x16\xf2\x22\x17\x9b\x9e\xb9\x9e\x6b\xe2\x10\x38\x8e\x23\xc8\xd2\x78\x57\x58\x2b\xe9\xa4\x59\xc7\x6e\x9a\xef\x7e\x68\xd7\x8e\xf7\xc9\x49\xea\x5b\x48\xc0\x9a\x99\xdf\x3c\xe8\x37\x33\xfa\x1f\x4c\x8d\x40\x98\xa3\x5b\x4b\x8e\x67\x2b\xa9\x45\x02\x23\x86\xb9\xd1\x73\xa4\x33\x66\xe5\x0d\x3a\x2f\x8d\x4e\x80\x59\xeb\xe3\xf5\xbb\xb3\x1c\x89\x09\x46\x2c\x39\x03\xd0\x2c\xc7\x04\x70\xe1\x23\xee\x65\xa4\x8d\xc0\xdd\xa1\xb7\x8c\x63\x02\xab\x62\x81\x91\xdf\x7a\xc2\xfc\x0c\x40\xb1\x05\x2a\x1f\xec\x00\xee\xef\x23\x90\x9a\xab\x42\x20\x0c\xd8\x9d\x8f\xf6\x20\xc2\xc9\x35\xba\x61\xa5\x3b\x80\x21\x7c\x07\x2d\xb5\x40\x4d\xf0\x1e\x1e\x1e\xce\xbc\x45\x1e\x20\x3c\x2a\xe4\x64\x5c\x05\x97\x33\xe2\xd9\x97\x1a\x3e\x84\x78\x3b\xa1\xbd\xc4\xf3\x1e\xf8\x4b\x4f\x04\x1f\x43\x04\x00\x84\xb9\x55\x8c\x70\xe7\xbb\x56\x90\xf0\xa9\x46\x18\xc7\x03\x39\xad\x08\x9f\xaa\x10\x1e\xcd\x97\x30\xbc\x61\xaa\x40\x3f\x0c\xd0\x43\x6b\xc4\x85\xd6\x86\x18\x49\xa3\xfd\x41\x97\x1d\x0e\x13\xb8\xbf\x07\x32\x7f\xb2\x5c\x3d\x69\x7b\xd4\x27\x6a\xb1\x3f\xd8\xdf\x46\xe9\x62\xb9\x94\x5a\xd2\xf6\x90\x79\x40\xbd\xe8\x9c\x02\x38\xfc\xa7\x90\x0e\xc5\xa8\x70\x52\xa7\x73\x9e\xa1\x28\x94\xd4\xe9\x24\xd5\xe6\xf1\x78\xbc\x41\x5e\x84\x48\xea\x96\x15\xe6\x7c\x77\x45\xd7\xe8\x72\xdf\x14\x47\x15\x15\xc6\x1b\xeb\xd0\xfb\x32\xdd\x86\x3c\x68\xac\x70\x9b\x00\xae\xfc\x90\xe5\xec\x9b\xd1\xec\xce\x0f\xb9\xc9\x63\x6e\x72\x5b\x10\x46\xb4\xb5\xd8\xb2\x01\x30\x16\x1d\x0b\x74\x83\xa9\xa1\x89\xee\xc8\xd7\x65\x1d\xdb\xbe\x82\xb7\x25\x73\x29\xa3\x3d\x62\x3d\xfc\x83\x76\xe8\x13\xa7\x91\xd0\x0f\xa5\x89\x8d\x4f\x40\x49\x5d\x6c\x8e\xc8\x99\xe3\x59\x02\x2c\x17\x1f\xdf\xef\x34\x32\xe3\x69\x8a\x74\x67\xdc\x2a\x01\x72\xc5\xde\x9b\x75\xd2\x38\x49\xdb\x4b\xc5\xbc\x9f\x96\xcd\x5a\x75\x63\xc9\xc3\x88\x3b\x49\x92\x33\xb5\xd3\x26\xa3\x42\x92\xcd\xa2\x45\xb5\xd4\xc7\x1b\xe9\xc9\x37\xe8\x7b\x27\x29\x6b\xb2\xa8\x86\x12\x58\x52\xe3\x1a\x7c\x87\x2e\xa1\x3a\x94\x02\xe0\x46\x13\x93\x1a\x5d\x23\x8c\xc3\xac\xb1\xaa\x48\x65\xfd\x0a\x3c\xf2\xa2\x4c\xd3\x68\xc2\x0d\x35\x6f\xc1\x3a\xb9\x96\x0a\x53\x14\x8d\xd2\x84\x4f\xe6\x2c\xc5\xb2\x1d\xf6\x19\x94\x27\x43\x87\xd6\x78\x49\xc6\x6d\xe1\xe1\x21\xe9\x88\x89\xa5\xf5\xf8\x01\x98\x4b\x3b\x34\x6c\x34\x7a\x75\x14\x45\xa8\x85\x35\x52\xd3\xf9\xab\x37\x97\xf3\xc9\xed\x78\x3a\x9a\x7d\x9d\x4c\xaf\xff\xdf\x51\x54\x26\x25\xe3\x49\xa0\x73\x1d\xd9\xfa\xfc\x43\xed\x0c\xf5\xba\xe3\xba\xac\x54\xdd\x41\x8b\x96\x25\x59\x13\x28\xb4\xdc\x24\x31\xf7\x32\xfc\x0d\xbd\xe1\xab\x9a\xde\xda\xa8\x22\xc7\x3f\x4c\xa1\xa9\x9b\x5b\xe9\x20\x90\x52\x21\x45\x42\xba\x16\x7e\x1e\xac\x66\x8c\xb2\x04\xe2\x35\x73\xb1\x92\x8b\x78\xa7\xdd\xab\xe9\x8c\x65\x69\x49\x99\x04\x06\xbf\x4a\x21\x1d\xf2\xf0\x8b\xa9\x41\xaf\xe7\x8a\x00\xcf\x38\xe6\x5e\xf6\x1a\x0b\x0c\xab\xee\x19\x63\x81\xeb\x9a\xd4\x1a\x77\xac\x08\x19\x32\x45\xd9\xb7\x16\xd4\x23\x83\x67\xc6\x51\x02\xbf\x7c\x7a\xfb\xa9\xa5\x61\x9d\x21\xc3\x8d\x4a\xe0\xfa\x72\x56\x93\x29\xb9\x46\x8d\xde\xcf\x9c\x59\x60\xd3\x65\x46\x64\x3f\x23\xb5\x67\x8c\xad\x22\xee\x0f\xc4\x96\xfe\xfb\x64\x61\x28\x4b\xa6\x46\xa8\xd8\x76\x8e\xdc\x68\xe1\x13\x78\xf7\xb6\xa1\x43\x32\x47\x53\xd0\xa3\xf8\xe7\x66\x63\xa1\x93\x46\x1c\xb3\x5d\x32\xa9\x0a\x87\xd7\x99\x43\x9f\x19\x25\x12\xf8\xd0\x69\xe6\x72\x08\x55\xbb\x2e\x72\x98\x4a\x4f\x8e\xb9\xde\xfe\xb4\x4e\x6a\x5a\xc2\xe0\xb5\x4f\x5e\x87\x85\xb8\xeb\x47\x2f\x05\x72\xe6\xaa\xc9\x33\x2a\x81\xae\xf6\x38\x93\x76\x2b\xbf\xdc\xe8\x45\x0d\x1e\x95\x9b\x9a\x09\x11\x16\xcd\xf9\xab\x37\x17\xa3\xd1\xd5\x78\x3e\xef\xf6\xf2\xbe\x4f\xf6\x19\x06\x66\x47\xe1\xd6\xce\x5f\xbd\x19\x5d\x4d\x6e\xc6\x57\xb7\x57\xe3\xcf\xb7\xf3\xaf\x97\xbf\xdf\xce\x2e\xae\x7f\xeb\x22\x34\x3b\x5e\xc9\x25\xf2\x2d\x57\xd8\x9e\x73\x38\x27\x63\xdb\xf4\xc0\xcd\x61\x43\x1f\x3e\x6e\xf2\x9c\x85\xb7\xde\x5f\x83\x78\x21\x75\xec\xb3\xc1\x4f\x30\x88\x78\xf8\xef\x72\x88\xdc\x12\xe2\x7a\xbc\x31\x2e\xfc\x30\x4c\x89\xdd\xb2\x0c\xc9\x94\x13\x03\x1a\xf3\x63\xf0\xf7\x4b\x26\xd3\xae\x52\xfd\x43\xe9\xd8\x3c\x3a\x98\xf7\xd5\xec\x08\x56\x6b\xf8\xc4\xd5\xe0\xf0\xed\x6c\x4e\x9b\x7f\xff\x69\x0a\x35\xc8\xf0\x34\x44\x5d\xb5\xd3\x42\xfb\x79\x11\xd9\x30\x30\x4e\xea\x9d\xc6\xc8\x79\xbe\x6b\x7a\xd4\x4f\xe8\x97\xd3\xd7\xce\x0f\x96\xbd\x02\xec\x79\x49\xf4\xaf\xaf\xf0\x92\x2a\x31\x9a\xbd\xf5\xfc\x2e\x0b\xaf\xc6\x04\x46\xe5\xea\x32\x6e\xdb\x71\xd7\x1b\xf6\x8f\x78\x3b\x4a\xde\xa7\xc2\xf8\xea\x2e\x1d\x1e\x5e\x9f\x2f\xe2\xdf\x29\x41\xdd\xee\xf0\xb6\x4f\x46\xd3\x89\xa2\x77\x17\x3f\xe9\xbf\xb9\x98\xbb\x1e\xfe\x0d\x00\x00\xff\xff\xfc\x07\x6d\xd6\xd1\x0e\x00\x00"), }, - "/components/aws-ebs-csi-driver/manifests/templates/rbac.yaml": &vfsgen۰CompressedFileInfo{ - name: "rbac.yaml", + "/components/aws-ebs-csi-driver/manifests/templates/role-snapshot-controller-leaderelection.yaml": &vfsgen۰CompressedFileInfo{ + name: "role-snapshot-controller-leaderelection.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 398, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\xb1\x4e\x03\x31\x10\x44\x7b\x7f\xc5\xea\x6a\x7c\x08\x89\x02\xdd\x0f\xd0\x83\x94\x06\xa5\xd8\xb3\x07\x62\x65\xcf\x3e\xed\xda\x89\x20\xe4\xdf\x91\x2f\x29\xe8\x9e\xd6\xa3\xe7\x99\xcb\xc5\x53\xfa\xa4\x71\xc7\xd2\x60\x23\x32\xcf\x82\x5d\x91\xb6\xe0\x3d\xf3\x6a\x87\x52\xe9\x7a\x75\xde\x7b\x77\x4c\x39\x4e\xf4\x56\x04\x8e\xd7\xb4\x83\x5a\x2a\x79\x22\x9d\x39\x8c\xdc\xea\xa1\x68\xfa\xe1\x9a\x4a\x1e\x8f\x2f\x36\xa6\xf2\x78\x7a\x72\x0b\x2a\x47\xae\x3c\x39\xa2\xcc\x0b\x26\xc2\x6c\xde\xee\x66\x1f\x4a\xae\x5a\x44\xa0\x5e\xc0\x11\x0a\x41\xe8\x8a\x7b\xdc\x56\x0e\x98\xe8\xd8\x66\x78\xfb\xb6\x8a\xc5\x11\x09\xcf\x10\xeb\x46\xa2\xad\x7e\x0e\xd2\x22\x68\xe0\xb3\xf9\xae\x0f\x96\x7c\xd4\x74\x82\x8e\xb7\xec\x40\x23\xfd\x52\x4e\x39\x22\x57\x7a\xee\x83\xb4\x09\x36\x87\x27\x5e\xd3\xab\x96\xb6\xda\x44\x1f\x43\x28\x45\x63\xca\xff\x77\x0c\xfb\xed\x2b\x85\x95\xa6\x01\x5b\x4c\xc0\x06\xbb\xbf\x9c\xa0\xf3\x76\xfd\x42\x1d\x1e\x68\x38\x73\x0d\x87\x0e\x92\x6c\x3b\x44\x08\x2a\x3a\xb5\x35\xf2\x8d\x82\xa2\xd3\xde\xb9\xbe\x01\x39\xf6\x56\x7f\x01\x00\x00\xff\xff\x66\x90\xf8\x38\x8e\x01\x00\x00"), + }, + "/components/aws-ebs-csi-driver/manifests/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, + + 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"), + }, + "/components/aws-ebs-csi-driver/manifests/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, + + 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"), + }, + "/components/aws-ebs-csi-driver/manifests/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: 2460, + uncompressedSize: 341, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x94\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\x22\xbd\xd6\x6e\x73\x48\x1b\xf8\x96\x0d\xc5\x30\x0c\xbb\x34\xc0\x2e\x43\x0f\xb4\xcc\x24\x5a\x64\xc9\x10\x69\x67\xeb\xd3\x0f\x72\xd5\x20\x45\xed\xc4\x68\xd3\x61\x97\x44\x51\x28\xfe\xfa\x29\xf2\xc3\x5a\xff\x20\xcf\xda\xd9\x1c\xda\x69\xb2\xd5\xb6\xcc\x61\x49\xbe\xd5\x8a\x16\x4a\xb9\xc6\x4a\x52\x91\x60\x89\x82\x79\x02\x60\xb1\xa2\x1c\xa8\xe0\x54\xb1\x4e\x95\xb3\xe2\x9d\x31\xe4\x53\xc6\xf8\x2f\xd7\xa8\x28\x87\x6d\x53\x50\xca\x7f\x58\xa8\x4a\x00\x2e\xee\x2c\x16\x86\x40\xaf\xe0\xee\xdb\x12\xbe\x2e\xbe\xc3\xca\x79\x58\x2e\x40\x33\x34\x4c\x65\x88\x41\x6b\x9d\xa0\x68\x67\x39\x48\x5d\x00\xd0\x96\x33\xac\xf0\xd1\x59\xdc\x71\xa6\x5c\x75\xe5\x9d\xa1\x14\xbd\xcd\x21\x7c\xe0\x8e\x73\x8d\x55\x9e\xcf\xe6\x37\xb3\x9b\xd9\xed\xfc\xf6\x7a\x7a\x9d\x87\x98\xab\xe7\x2b\x86\x1f\x49\x92\xa6\x69\x12\xcd\x7d\x36\x0d\x0b\xf9\xfb\xb0\x7f\xe8\xde\x17\xa8\x32\x6c\x64\xe3\xbc\x7e\xec\x6e\x91\x6d\xe7\x9c\x69\x77\xd5\x4e\x07\x4a\x40\xbf\x85\xbc\x45\x93\xd6\xde\xb5\x3a\xa4\x21\xff\x24\xe8\x1b\x43\x9d\x89\x14\xb0\xd6\x5f\xbc\x6b\x6a\xce\xe1\xe7\x64\xf2\x90\x00\x00\x78\x62\xd7\x78\x45\xdd\x5e\x1d\x6e\xc0\x42\x56\x5a\x67\x9a\x8a\x38\x06\xb5\xe4\x8b\x2e\x60\x4d\x32\xb9\x84\x89\xd1\xdc\x7d\xef\x50\xd4\x26\x2c\x94\x27\x14\x0a\xab\x92\x0c\x09\x75\xe7\xde\x20\xa8\x0c\xea\x6a\xb4\x6a\x53\x97\xd8\xaf\xc5\xe2\x3c\xae\x29\x96\xad\x4f\x39\x46\x28\x83\xcc\x23\x7d\x8e\xf4\x44\x2d\x59\x79\x95\xf1\x48\xc9\xa2\x8d\x4b\x98\xd4\x43\x3a\x6c\xb1\xe6\x8d\x93\xec\xb4\xb1\xf8\x72\xf1\xc0\x51\x67\xe7\x14\x0a\xf3\xd7\xe7\xfb\x94\xde\x49\x19\xc5\xda\xba\xf2\xbc\x4f\xf4\xae\x84\xca\x39\x5f\x6a\x7b\x38\x97\x7d\x1a\x86\x70\xb8\xb1\xf6\x5d\xf0\xac\x16\xc7\xe6\x45\x37\xc4\x0e\x79\x18\x62\xc6\x27\x6d\x4b\x6d\xd7\xef\x45\x47\x40\xd3\x21\x35\x8a\x98\x96\x9b\xe2\x17\x29\x89\xec\xe8\xc5\x71\xb0\x76\x1c\xc3\x83\x20\x0e\x6c\xba\xa7\x55\x48\xfe\x1a\x86\xe3\xc8\x06\xfb\x77\x39\xe2\xfb\xc3\x81\x8b\x22\xa8\x36\xff\x94\xb6\xc3\xdc\x3b\x7f\xb3\xb3\x1e\x81\x82\x38\xa3\xda\xae\xdc\x9b\x95\xc6\x02\xe7\xa9\xde\xd5\x29\xd6\xf4\xd6\xeb\xe3\x07\x69\xdf\x0d\xff\xeb\x14\xbd\x6c\xd7\x91\x23\x94\xfc\x0d\x00\x00\xff\xff\xe1\x38\xd5\x59\x9c\x09\x00\x00"), + 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"), + }, + "/components/aws-ebs-csi-driver/manifests/templates/statefulset.yaml": &vfsgen۰CompressedFileInfo{ + name: "statefulset.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 860, + + 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"), }, "/components/aws-ebs-csi-driver/manifests/templates/storageclass.yaml": &vfsgen۰CompressedFileInfo{ name: "storageclass.yaml", @@ -3390,9 +3504,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/controllers.tf": &vfsgen۰CompressedFileInfo{ name: "controllers.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2408, + uncompressedSize: 4041, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x5d\x6b\x23\x37\x14\x7d\x9f\x5f\x71\x99\x38\x34\x29\xce\xc4\x69\x5a\x28\x0b\x7e\x28\xbb\x2f\x0b\x65\x29\xf4\xad\x4b\x10\x8a\x74\x6d\xdf\x8d\x46\x12\x92\xc6\x89\xd7\xf8\xbf\x17\x7d\xcc\x78\xc6\x76\x96\xcd\x4b\xec\xab\xa3\x33\x47\xe7\x1e\xdd\xf1\x15\x7c\x22\x2f\x1c\x06\x84\x4f\x5f\xfe\x05\x87\xc2\x38\xe9\x61\x65\x1c\x20\x17\x1b\x10\x46\x07\x67\x94\x42\xf7\x8b\x07\xeb\x68\xcb\x03\xc2\xe7\x7f\xb6\xbf\x67\x48\x10\x12\x3a\xcf\xd7\x58\x39\xf4\xa6\x73\x02\xa1\xe6\xaf\x9e\x39\xd3\x05\xfc\xe3\x91\x65\xbe\x1a\xea\x88\xf4\x35\xec\x2b\x00\x61\x3a\x1d\x60\x09\x5b\xee\x9a\x23\x3d\x4b\xe5\xaa\x02\xb8\x4a\x4a\xfe\x33\x1a\xe1\x75\x83\x0e\x8b\x28\xf0\x1b\xd3\x29\x09\xcf\x08\xc2\x21\x0f\x28\x2b\x80\xef\x46\x23\x23\x59\xd8\xa4\xf6\xac\x54\x22\x91\xe6\x2d\xc2\x32\x0a\x6d\x79\xb8\xa9\xaf\xfd\x5d\x54\x71\x2d\x9b\x6b\xdf\xd4\xf3\xfc\x7c\xd5\xf9\x80\x8e\x45\xe8\x3c\x2b\x6b\x48\x4b\x7c\x9b\x4f\x08\x6f\x2b\x80\xb0\xb3\x91\xad\xfe\xab\x8e\x5f\x82\x02\x58\xc2\xe3\x62\x91\x15\x4f\x9c\xe1\x52\x3a\xf4\x7e\x70\xa8\x82\xc1\xd7\x25\x7c\x8d\xf6\x90\xf6\x81\x6b\x81\xa3\xf3\xfb\xaf\xa3\xa7\x3f\x35\x85\x90\x91\x7d\xaa\x0e\x55\x75\x05\x1f\x07\x24\xf4\xbb\xfd\x89\xe9\x7d\xbd\x86\x7a\xc4\xfb\x73\xa6\x07\xbe\x8e\xea\x5a\x74\x6b\xbc\x89\xa0\x58\x98\xa7\xad\x00\x5f\xb2\x91\xf5\x6c\x7f\xea\xd9\xe1\xee\x48\x76\x37\xdb\x8f\x8e\x70\x88\x36\x1d\x6e\x23\x77\xaf\x8b\x15\x0b\x4f\x34\xc4\x6a\x84\xf1\x96\x20\xff\x2d\x41\x19\xc1\x55\xc3\x5b\x8a\xad\x04\xe8\x3c\x3a\x26\x79\xe0\xb0\x84\xf8\xaf\x11\x81\x09\xa3\x57\xb4\x1e\x11\xdd\xd1\x5a\x53\x20\xa3\x4f\xac\x74\xa8\x25\x3a\x94\xb9\x53\x3e\x18\x17\xf3\x0a\xe0\x8c\x09\xec\x59\x19\xf1\xc2\x24\x6e\x49\x60\x39\xed\xd6\xa8\xae\x9d\x88\x95\xe4\x5f\xb2\xcc\xd1\xba\xa7\xef\x93\xf5\xf8\x3d\xad\x93\xb1\x1e\x86\x93\x0c\xeb\xb1\x9c\xd6\x51\x0b\xb7\xb3\x01\x65\x5a\x0f\xae\x8b\xdb\x0e\x59\x9d\xc6\xf0\x6a\xdc\x4b\x74\xc3\x7b\x23\x28\x46\xc0\x76\xcf\x8a\x04\x23\xcb\xfa\x60\x0d\xbb\x7c\xf7\xac\x31\xc4\x0b\x70\xfe\xb7\x84\x98\x89\x8c\x68\x32\xc7\xd4\x97\xe4\xec\xd6\x0a\xe6\x51\x74\x8e\xc2\x8e\xad\x9d\xe9\x2c\x23\xe9\x7b\x86\x14\xd6\xe9\xf2\xc8\xf0\x86\xe4\x53\x94\xad\x68\x85\x62\x27\x54\x6f\x20\xad\xb5\x71\xc8\xc4\x86\xeb\x35\xa6\xcc\x57\x99\x90\xb7\x34\x2f\x1f\x87\x8e\xe6\xc2\x53\xb2\xe0\x34\xe8\x9f\x4b\x43\x21\xf7\xda\x57\x29\x02\xf5\xd0\xfc\x49\xd0\x8f\xed\x1f\x27\x7e\xd2\x87\xb3\xe0\x43\x9a\x6f\xd8\xe3\x4a\xb8\x02\xb6\x56\x45\xe7\x57\xa4\xc6\x57\xf4\xae\xc8\x78\x27\x5e\x00\xd6\x61\x08\x3b\x66\x1d\xa5\xbb\xb6\xe2\xca\xa7\x2e\x69\xb2\x16\x83\x7f\x47\x89\x12\xac\x47\x9c\x39\x10\x3f\x72\xd2\xe8\xe0\x6f\xd2\xdd\xdb\x89\x11\x13\xa1\x53\x33\x0a\xf0\x27\x2f\x7f\xe1\x89\x9a\x49\xe1\x4d\x3d\xdb\x5b\x1e\x36\x4d\x6b\x64\xa7\xf0\x70\x2f\xd4\xfd\xa8\xeb\x3b\xde\xaa\x26\xb4\x56\xd5\xe9\x76\x6f\xb9\x8b\x3d\xce\xad\xbf\x82\x8f\x5c\x6b\x13\x62\x7f\x21\x66\x82\x04\x48\xb4\xd1\x22\x2d\x08\x3d\xe4\x66\xf6\xb3\x09\x8c\x83\xb0\x41\x72\xe3\x97\x4f\xbe\x24\x41\xc8\x34\x61\x92\x65\xe9\xf5\x71\x3e\x5e\x0a\x4c\x9a\x96\x93\x7e\x6f\x40\x9d\x6f\x6d\x32\xac\x1f\xee\x85\xea\x2a\x91\x2d\x96\x9b\x10\xac\xff\x70\x7f\x5f\x58\xd2\xfe\x45\x83\x6f\xbc\xb5\x29\x0d\xed\x3c\x56\x1e\x2e\xe2\x1e\x26\xb8\xa6\x69\x8e\x22\x29\x86\x93\x2b\x56\xe0\xe9\x58\xdf\x0c\xe9\x9b\x7a\x5e\xcf\x2f\xe5\x2e\xbd\x31\x9b\x5f\x87\x7c\xdd\x26\x2e\xef\x37\xec\x05\x77\xfe\xec\xb2\x7f\xf3\x46\xa3\x16\x46\xe6\xf1\xdd\xe3\xf2\xae\xde\x91\x78\x64\x8f\x2e\x0e\x3b\x46\x16\x96\x20\x48\xba\x8d\xf1\x21\xef\x29\x2b\xb1\x38\x87\x87\xc5\xc9\xde\xe4\x32\xf3\xdd\x6a\x45\x6f\x43\x8e\x2f\x2d\xf6\x77\xf9\x72\x48\xcf\x7e\x09\xfc\xe8\x7a\x8e\x92\x99\x33\x30\xdb\xe7\x1e\x0e\xf6\xcf\x66\xfb\x0b\xfd\xee\x61\xcd\x6c\xb6\x1f\xfa\xfc\xe1\xb7\xc7\x3f\x17\xf5\x59\x66\x13\xf2\x68\xe4\x28\x29\x93\xf3\x97\x5f\x13\xa7\x01\x4b\x98\xfe\x11\xe3\x99\x5f\x4a\xc5\x8c\xff\x03\x00\x00\xff\xff\x8f\x90\x2b\xb6\x68\x09\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x6d\x6f\xdb\x36\x10\xfe\xee\x5f\x71\x60\x5c\x2c\x29\x6c\xc5\x49\x37\x6c\x30\x6a\x0c\x41\xdb\x01\x01\xd6\xae\x68\x87\x7e\x58\x10\x08\x0c\x75\xb6\xaf\xa1\x48\x81\xa4\x9c\xb8\x41\xfe\xfb\xc0\x17\xc9\x92\xdf\xd6\x01\xcd\x97\x58\xbc\xbb\x47\xc7\xe7\x9e\xe3\x51\x27\xf0\x96\xac\x30\xe8\x10\xde\x7e\xf8\x0c\x06\x85\x36\x85\x85\xb9\x36\x80\x5c\x2c\x41\x68\xe5\x8c\x96\x12\xcd\x4f\x16\x2a\x43\x2b\xee\x10\xae\x3f\xae\x7e\x8e\x2e\x4e\x14\x50\x5b\xbe\xc0\x81\x41\xab\x6b\x23\x10\x18\x7f\xb0\xb9\xd1\xb5\xc3\x5f\x5e\xe5\x11\x8f\x01\xf3\x9e\x96\xc1\xd3\x00\x40\xe8\x5a\x39\x98\xc1\x8a\x9b\x6c\x03\x9f\x87\xe5\xc1\x00\xe0\x24\x64\xf2\x8f\x56\x08\x0f\x4b\x34\x98\x92\x02\xbb\xd4\xb5\x2c\xe0\x0e\x41\x18\xe4\x0e\x8b\x01\xc0\x37\xad\x30\xa7\x22\xa1\x15\xca\xe6\x69\xc5\x03\x29\x5e\x22\xcc\x7c\xa2\x25\x77\xa7\xec\x85\x1d\xfb\x2c\x5e\x14\xd9\x0b\x9b\xb1\x51\x7c\xbf\xac\xad\x43\x93\x7b\xd7\x51\xcc\x2c\x23\x55\xe0\xe3\xa8\x07\x78\x36\x00\x70\xeb\xca\xa3\xb1\x2b\xe6\x1f\x9c\x04\x98\xc1\xab\xc9\x24\x66\xdc\x63\x86\x17\x85\x41\x6b\x5b\x86\x06\xd0\xf2\x3a\x83\x1b\x4f\x0f\x29\xeb\xb8\x12\xd8\xd9\xbf\xbd\xe9\xbc\xfd\x36\x4b\x80\x39\x55\xb7\x83\xe7\xc1\xe0\x04\xae\xaf\xde\xc3\x47\x2d\x49\xac\xb7\xa8\x26\x5e\xb6\x78\x79\x65\xf4\x9c\x24\x32\x60\xc2\xd2\xb8\x30\xb4\x42\x33\x6e\xac\xe3\xd6\xba\x5d\x06\x8b\x2e\x17\x96\xf2\x18\x10\x20\x8d\x96\x08\xbf\xc3\x05\x4c\x61\xb2\xe1\x92\x0d\x9f\xb6\x69\x7b\x1e\x93\xc7\xf5\xac\x84\x98\x19\x7c\xd5\xa4\x4e\x19\x1b\x41\x93\x9e\x5f\xcf\x3a\x09\x85\xe7\x97\x99\x8f\x3e\xf3\xbb\xdb\xdd\x90\xf7\xc8\xab\xb0\xdd\xfe\x5e\xbc\x61\xdc\x18\x7e\xec\x36\x12\xea\xff\xdf\x07\x15\x67\x5e\x05\x31\x1e\x66\xf0\xfa\xf5\xf8\xdd\x5f\x7f\x0c\x20\xe4\x07\xc0\xbe\xa0\xb1\xa4\x15\x9b\x02\xbb\x9c\x5c\x5c\x8e\x2f\x26\xe3\x8b\x5f\xd9\x28\x1a\x3f\x3b\xee\xb0\x44\xe5\xd8\x14\x6e\xc2\x52\x13\x17\xcc\x57\xc2\xc5\xd0\x9b\x76\x0d\x80\xa1\xb8\x9c\x5e\x39\xc7\xc5\xf2\x8b\x96\x75\x89\x09\xac\x63\x7d\x13\x5a\xe4\xb3\xe2\x95\x5d\x6a\x77\xc8\xfe\x37\x5f\xd8\x43\xb6\x43\xc8\x6f\x51\xe2\x31\xe4\x68\xdf\x8f\x1c\x6d\x87\x91\xad\x30\x74\x87\x57\x2b\x4e\x92\xdf\x91\x24\xb7\xf6\xc7\xc0\x5e\xa0\xe8\x7a\x9d\xa4\x7d\xc4\xa5\xc9\xf4\x88\xcb\xa1\x64\xa3\x35\xa6\xfb\xdf\x0e\xef\x75\x41\x73\x12\xdc\x17\x6c\xaf\xf7\xb1\x7a\x85\xe0\x75\xb2\xb6\xc6\xdb\x8d\x1f\x7b\x37\x9f\xa3\xf0\x2a\x61\x57\x52\xea\x87\x0e\x04\xfb\x94\xfa\xc7\x1b\x5f\x36\xd1\xcf\xe1\xff\xed\x20\xfe\xf2\x82\x3c\xd8\x69\xbb\x2d\xf6\xa3\x7b\x2b\x60\xfa\x1e\xe1\x6e\xe9\x7d\xce\x99\xef\x18\x6e\x6d\x5d\x62\xb7\xd9\x7f\x44\xf7\x74\xfb\x07\x7a\x3d\xc4\xac\xb3\xd3\xab\xf0\xd2\x4f\x3e\xa1\x51\xdf\xef\xa3\x21\x25\xa8\xe2\x92\x4d\xb7\x20\xc2\xab\xd0\xac\x28\x72\x8c\xe2\x32\xe3\x25\xff\xa6\x15\x7f\xb0\x99\xd0\x25\xeb\x79\x3f\x6f\xe1\x1e\xae\x5c\x04\xa6\xc2\xdb\x36\x18\x7b\x2b\x77\x02\x6f\xda\x59\x01\xcd\x89\x6e\xb7\x0b\x9a\xd6\x7d\x41\x37\x93\xe5\xfb\xc6\xae\xe3\x0b\x3f\x9f\x4a\x34\x0b\x3c\xf5\x4e\x7e\x61\x94\x88\xf8\x70\xa4\xb6\x1b\xb0\xf1\xf0\xa9\x33\xc4\x9e\xfd\x8e\x9e\xc3\xd1\xd8\xce\xa7\x34\x44\xb7\x72\xf0\xab\x41\x0f\x25\x25\x0a\x66\x20\xb5\xe0\x32\xe3\x25\xf9\x61\x0e\x50\x5b\x34\x79\xc1\x1d\x87\x19\xf8\x7f\x99\x70\xb9\xd0\x6a\x4e\x8b\x0e\xd0\x98\x16\x8a\x42\xfb\xf5\x87\xa9\x41\x55\xa0\x09\x17\x86\x7d\xd3\x72\xdf\x51\xbf\xed\x93\x1d\x99\xa7\xed\x28\x0b\x57\x01\xeb\xb4\xf1\x17\x22\x3f\x46\xb4\xcb\xef\xa4\x16\xf7\x79\x81\x5e\x3b\x89\xcc\x55\xe8\xf2\x2e\x17\x05\xd9\xfb\xc8\x42\xc7\x6e\xe9\x5b\xcf\xee\x9f\x83\x9d\x74\x65\xa1\x25\xaa\xb5\xfb\xe5\x60\x47\x25\xcc\xba\x72\x58\x04\xbb\x33\x35\x06\x29\x85\xec\x14\xba\x07\x6d\xee\x63\xf3\x69\x41\xfe\x8e\x51\xd5\x77\x92\x44\x4e\x55\xde\xdc\x5c\xda\x28\x5b\xdf\x29\x74\xfe\x86\xb5\xfb\x37\x0b\x64\x45\x8f\x2c\x62\xf4\x69\x0f\x85\x5b\x55\x22\xb7\x28\x6a\x43\x6e\x9d\x2f\x8c\xae\xab\x9c\x0a\xdb\x20\x84\xdb\x50\xdf\xdc\xa9\x67\x46\xc5\xad\x4f\x5b\xd2\x1c\xc5\x5a\xc8\x86\x40\x5a\x28\x6d\x30\x17\x4b\xae\x16\x18\x2e\x55\xa9\x77\x78\x49\x4d\x73\xb5\x82\x19\x75\xba\x69\xbb\x8f\xae\x93\x5e\x20\x4a\xc9\x0e\x82\xc2\x58\xab\xad\x5e\x1f\x6d\xd4\xd5\x6d\xa8\x5e\x1d\x76\xfa\x0a\xc2\x05\x1a\x1b\xbf\xa4\x5d\x87\x65\x25\x3d\xf3\x51\x59\x9b\x37\xa4\x34\x0e\xaa\xb7\x32\xe8\xdc\x3a\xaf\x0c\x85\x56\x9e\x73\x69\x43\x95\x14\x55\x15\x3a\x7b\x20\x13\x29\xf2\xc6\x63\x87\x01\xff\x93\x93\x42\x03\x7f\x92\xaa\x1f\xb7\x88\xe8\x25\xda\x27\x23\x39\x7e\xe7\xd9\x92\x70\x7c\xce\x24\xf1\x94\x0d\x9f\xfc\x24\xc8\x4a\x5d\xd4\x12\x9f\xcf\x85\x3c\xef\x54\x7d\xcd\x4b\x99\xb9\xb2\x92\x2c\xb4\xd4\x8a\x1b\x5f\xe3\x58\xfa\x13\x78\xc3\x95\xd2\xce\xd7\x17\xbc\x26\x48\x40\x81\x95\xa7\x48\x09\x42\x0b\xb1\x98\xcd\xd1\x07\xda\x80\x5b\x22\x99\xee\xd7\x4d\x6c\x12\x27\x8a\x70\x80\x05\xca\xc2\xf7\xc9\xee\xe9\x95\xdc\x0a\x5d\x72\x52\x87\xce\xbf\xdd\xd0\x2c\xba\x35\x5f\x0f\x09\xea\x24\x80\x4d\x66\x4b\xe7\x2a\x3b\x3d\x3f\x4f\x28\x21\x7e\x92\xe1\x23\x2f\xab\xa0\x86\x72\xe4\x57\x2e\xf6\xfa\x5d\xf4\xfc\xb2\x2c\xdb\x24\x49\x5e\x9c\x5c\xe6\xc9\x3d\x6c\x2b\x1e\x6b\x23\x36\xda\xa7\xbb\xf0\x49\x96\xbd\x6c\xf5\x75\x16\xb0\xac\x5d\xe6\xf7\xb8\xb6\x3b\xcd\xfe\xd5\x6a\x85\x4a\xe8\x22\x4e\x87\xc6\x2f\x46\x35\x8c\xf8\x2d\xdb\x38\x28\x73\xaa\x60\x06\x82\x0a\xb3\xd4\xd6\xc5\x98\x64\xf1\x8b\x23\xb8\x98\x6c\xc5\x06\x96\x73\x5b\xcf\xe7\xf4\xd8\xea\x78\x9f\xb1\xe9\xe5\xfd\x22\xdd\xf9\xd4\x3c\xd6\x9e\x1d\x65\x46\x0d\x0c\x9f\x62\x0d\x5b\xfa\x87\xc3\xa7\x3d\xf5\x6e\xdc\xb2\xe1\xf0\xa9\xad\xf3\xf4\xf2\xd5\x6f\x13\xb6\xa3\xd9\xe0\xb9\x21\xb2\xa3\x94\xde\xfe\xd3\xfd\x69\x5b\x60\xc1\xa7\x79\x45\xf7\xcc\x4f\x4b\x89\x8c\x7f\x03\x00\x00\xff\xff\x9b\xfa\xc9\x5a\xc9\x0f\x00\x00"), }, "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/dns.tf": &vfsgen۰CompressedFileInfo{ name: "dns.tf", @@ -3446,9 +3560,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 4136, + uncompressedSize: 4300, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\x5d\x6f\xdb\x3a\x12\x7d\xf7\xaf\x18\xb8\x0f\x75\x00\x5f\xad\xed\x74\xd3\x14\xb8\x7d\x70\x9c\xec\xbd\xd9\xdb\x7c\x6c\xdd\x34\x40\x17\x0b\x81\x26\x47\x12\x11\x8a\xd4\x72\x48\x3b\xee\xa2\xff\x7d\x41\x4a\x71\x6c\x4b\xde\x4d\x7a\xdb\x87\x28\x11\xe7\xcc\x99\x0f\x9d\x19\x2e\x99\x95\x6c\xa1\x10\xfa\x5c\x79\x72\x68\x53\xcd\x4a\xec\xc3\x7f\x7a\x00\x6e\x5d\x21\x34\xff\x3e\x02\x39\x2b\x75\xde\x03\x10\x48\xdc\xca\xca\x49\xa3\xe1\x23\xf4\xef\xb4\xfc\xb7\x47\x68\xcc\x21\x98\xc3\xa0\xb2\x58\xa1\x16\x28\xc0\x19\x10\x9a\xd2\xef\x46\xe3\x51\xbf\xf7\xa3\xd7\x7b\x03\xd3\xfb\x79\xaf\xf7\xec\xf8\xe9\xf5\x6b\x9c\x4e\xef\xe7\xf0\xd9\x78\x87\x7f\x3d\x86\xf3\xeb\x39\x7c\x33\x1a\x61\x80\x49\x9e\x00\x5b\x51\x82\x8f\xac\xac\x14\x26\xdc\x94\xb5\xd3\xb6\xb7\x54\x8a\x3f\xed\xf0\xf2\xbc\xf1\xf9\xed\xf8\x76\x3a\x3d\x3b\x9b\xfd\x6d\xfa\xc7\xc5\x6c\xb4\xef\x12\x1f\x2b\x43\x98\x6a\x23\xb0\x32\xd6\x51\x97\xdf\x85\x31\x2a\x7a\xcd\x98\x57\xae\xf9\x63\xc6\x14\x61\x9b\xcb\x45\xc4\x83\x80\x07\x11\x10\x8e\x47\xa3\xd1\xe8\x97\xe3\xc9\xfb\x93\xf7\x20\x35\xb8\x02\x81\x90\x7b\x2b\xdd\x1a\x72\x6b\x7c\xd5\x64\x5e\x6a\x72\x4c\x73\xa4\x6d\x7a\xdc\x68\x67\x8d\x52\x68\x53\x6e\xbc\x76\x5d\xf4\xb4\x2f\x17\x68\x5b\x04\xc7\x6d\x72\xd7\xf1\x24\x98\x0c\x9e\x71\x09\x06\x32\xc1\x04\x4a\x16\x5a\x84\xf6\xf3\xb3\x45\x20\x78\xdd\xf2\xbf\x55\x8f\x37\x70\x5f\xa0\x06\x61\xa4\xce\x63\x80\xbe\xca\x2d\x13\x48\x5b\xae\x2a\xc5\x34\x82\xd1\xe0\x8e\x13\x2a\x99\x52\x9b\x80\x6b\xb8\x55\x81\x3a\x42\x15\x6c\x19\x60\x42\x0d\x49\xea\x5c\xe1\x2e\x42\xc8\xec\xf0\x19\xa4\x60\x04\xda\x38\x40\x6d\x7c\x5e\x40\x89\xa5\xb1\x6b\x18\x4c\x7e\x3b\x3b\x8a\x68\xce\x80\xf5\x1a\x4a\x63\x11\x5c\xc1\x74\xc4\xdd\x78\x36\x19\x3c\xf8\x05\xfe\xc2\x2a\x49\x68\x97\x68\x43\x85\x2a\x66\x99\x52\xa8\x86\x40\x06\x56\x08\x1a\xeb\x4f\xc5\xc7\x7a\xbf\x01\x06\x0b\x99\xe7\xf1\x6c\x0d\x93\xc0\xbd\x74\x05\xfc\x3e\xdd\x61\xba\x45\x92\x0a\xe3\x95\x80\x05\x42\x26\xe3\x8b\x22\x92\xcd\x8c\x8d\x80\x95\x35\xc2\xf3\x58\x24\x42\xe7\x2b\x1a\x82\x74\x6f\x09\x2c\x72\x53\x96\x9b\x4f\xd5\xd3\x33\x73\x82\x55\x70\x19\xc3\xfa\x3c\xbd\x1a\x82\x33\x11\x2a\x97\x4b\x84\x4a\xa1\x76\xeb\x10\x9c\xa7\x58\xc5\x26\x2b\x99\xb1\x80\x8e\x0b\x60\x5a\xec\xc5\x9d\xb4\xda\xa7\xef\x8e\x93\x12\x85\xf4\x65\xbf\xa3\xcb\x67\x93\xbd\xf2\x05\xec\xad\xa6\xda\xeb\x22\x43\x2f\x91\xae\x1d\xf7\x99\x62\x8e\x33\xdb\xe1\xfc\x3a\xa8\x98\xc9\xe0\xa6\x42\xcb\x5c\xe8\x95\xf9\x9a\x1c\x96\x30\xe0\xc6\xa2\x21\x30\x16\x1a\xeb\xfd\x6e\x36\x94\xf2\x82\x69\x8d\xea\x35\x54\xc8\x05\xeb\x0e\x26\xd3\xab\x4b\x68\xf0\x62\x02\x42\xeb\xdf\xcc\x61\x50\x1b\x0c\x61\x81\x8e\x0d\x81\xa9\xaa\x60\x43\x40\x91\x63\x07\x9f\x25\x5a\x92\x46\xbf\x86\x0f\xf7\xd6\xa2\x76\x1d\x84\xbe\xd6\x60\x21\x3b\x4f\x5c\x9a\xc3\x21\x29\xda\x97\x68\x25\x87\xc6\x25\x90\xe7\x05\x30\x82\xc9\xe4\x64\x9c\x7c\xf8\x90\xb4\xc4\x51\x48\x7a\x48\x49\x7e\xef\x2c\xdc\x01\xd9\x79\x37\x6a\xd3\x9a\xcb\xef\xf8\xc4\xe9\xe2\x6c\x0e\x4b\xa3\x7c\x19\x9a\x19\x7e\x3b\xeb\x72\xb9\xa7\x34\xff\x37\x21\x79\x35\xe9\x48\xc6\x97\x60\xdb\xf6\x5a\x4f\x85\xd0\xbb\x82\x59\x31\x84\xbc\x9a\x0c\x41\x9a\x71\x67\xf0\xd2\x54\x9d\x23\xe1\x40\xf0\x1d\xb1\x5f\xde\xdc\xce\x0f\xb2\x18\x8f\x5a\x39\xdf\x56\x7c\xc5\x53\xd2\xb2\xaa\xb0\x7b\x2e\x29\x49\x6e\x50\xe7\xe4\xa8\xed\x78\xb6\x01\x82\xf0\xc8\xa4\x46\x0b\x9f\xa4\xf6\x8f\xe1\xf7\x4c\xe6\xb0\xc1\x6e\xc5\xf1\xcf\x7f\xed\x92\x72\x2c\xa7\x1d\xe9\x2f\x59\xb5\x65\xf4\x31\xbe\x02\xe8\x5f\x31\xcd\x72\x14\x67\xeb\x7e\x60\xf0\xc9\x3c\x98\xd2\x38\xb9\x8c\xdf\x0e\x40\x7f\x66\x91\xb9\xcd\xeb\x3b\x4d\x15\x72\x99\x49\x14\xe1\xfd\x8f\x76\x08\x37\xf1\x89\x29\x10\xe8\x98\x54\x14\x54\xd0\xb1\x30\x1b\xc2\x9e\x02\x16\xc9\x78\xcb\x91\x9a\x09\xca\x63\x58\x3e\x88\x82\xd1\xdb\xf4\x89\x8a\xf4\x01\xd7\x3f\x91\xc4\xf9\xfc\x77\xa8\xfc\x42\x49\x0e\x01\x20\x7e\xe5\x9e\xd0\xc2\xdb\xa0\x35\x6f\xf7\x6a\xc7\x88\xd0\xa5\x42\xda\xda\xd1\x1e\xd6\x2d\x73\x45\x88\x80\x81\x90\x16\xb9\x0b\x92\xbc\x2a\xd0\x22\xe4\xa8\x83\x94\xa1\x80\x88\x40\x5b\x03\xa3\x52\x8c\xa3\x08\xd2\x16\x4b\x48\x61\x77\xb0\xe8\xc2\x9c\x3e\xf0\x75\xec\x30\xd2\xe8\x56\xc6\x3e\xa4\xa5\xf3\x9d\x9c\x66\xd7\x97\x20\xb5\x43\x9b\x31\x8e\x70\xf5\xe5\x2e\x81\x3b\x42\x38\xfd\x70\x3a\x06\x19\xe6\x47\x90\xd7\xe7\xa1\x13\x1c\x36\xa3\xe7\xef\xbe\x5c\x18\xc8\x2c\x2b\x91\x92\x36\x99\x43\x4b\xc9\xbb\xd3\xd1\x2e\xc3\xc2\x90\x4b\xb9\x14\xdd\x39\x9b\x5d\x9e\x7f\x86\xcb\xdb\xe5\x3b\xb0\x4c\xe7\x18\xd3\x47\x24\x73\x1d\x9e\xc2\x14\x0a\xeb\x00\x1d\xcc\x45\x4b\x29\xc6\xa3\x24\xfe\xff\xcb\xf8\x64\xaf\x76\x95\x11\x3f\x43\xe3\x0f\xbf\x40\xab\xd1\x21\x41\x65\xc4\xeb\x98\x4c\xba\x99\x84\x89\x2c\x39\x1e\x64\xf3\xeb\xaf\x17\x37\xe7\xbd\x17\x51\x6a\xa0\x28\xe9\x7d\x29\x10\xc6\xe4\xe0\xf2\x16\x56\x52\xa9\xd0\x5a\x16\xe3\xec\x17\xb1\xa9\xc3\x3a\x90\x6e\xd6\x81\x61\x94\xab\xf1\xc8\x15\x07\x0d\x42\xff\x0b\x4d\x49\x2f\x90\xe9\x6d\x85\xdd\x11\x72\x1d\xee\x71\x77\xb8\x4f\x77\x1b\x61\x4a\x26\x75\x4a\x3e\xcb\xe4\x63\x67\x15\xfe\xe1\xd1\x4a\xac\x3f\xc2\xfa\x74\xd3\x8b\x71\xa7\x8e\x76\x1b\xae\x4c\xd3\x0a\x2d\x0a\x58\xac\x37\x54\xe1\xbc\xe1\x23\xe9\xe9\x4a\x94\x28\xc3\x99\x6a\xd4\x38\x33\x26\x69\x28\x27\xb4\xe4\xc9\xce\x99\x23\x78\x79\x6d\x77\x0c\xf7\x2f\x1c\x3a\xfc\x4c\x6d\xbc\x6e\x48\x9d\xff\xcf\x0b\xc7\xee\xd2\x15\x2d\xc3\x4e\x97\x63\x18\xe7\x4c\x33\xb5\x76\x92\x87\x45\xb1\x01\x8b\x6b\x62\x45\xce\x22\x2b\x09\x06\x33\xa6\x24\x37\x47\x6d\x7d\xaf\x2f\x2f\x5d\xbc\x58\x9e\x5b\xcc\xa3\x82\x76\xd6\xa0\x21\x11\x32\xbe\xd5\x67\xd3\x67\x2b\xf8\xc4\xd6\x68\x61\xd0\x38\xac\x35\xdb\x7a\xec\x10\xac\xce\x7b\x55\x38\xdb\x1a\xc4\x91\x1a\xa1\xca\xd2\x20\x17\x28\xd2\xd0\xae\x0a\x5d\x27\xc5\xf3\xfa\x7c\x73\xd3\x52\x19\xd4\x36\xd0\xd8\xd4\x72\xa6\x54\xdd\x1b\x8d\xf3\x03\xe4\xe2\x58\x99\xa1\x75\x32\x93\x9c\xb9\xbd\xbb\x19\x5a\x47\xe9\x92\x29\x29\xa4\x5b\xa7\x15\x5a\x69\x44\x5a\x18\x6f\xa9\x93\xd7\xd7\xe6\x64\xd8\x06\xc2\xad\x20\xf0\xe3\x5b\xd8\x61\x1f\xaa\xad\x5f\xaa\xa6\xa7\xef\x4f\x82\x9a\xfe\x37\x00\x00\xff\xff\x35\x7c\xff\xf8\x28\x10\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\x6d\x6f\xdb\x38\x12\xfe\xee\x5f\x31\x70\x3f\xd4\x01\xbc\x3a\x3b\xe9\xf5\x05\xd8\x7e\x70\x9c\xde\x6e\x6e\x9b\x26\x57\xb7\x5b\x60\x0f\x07\x81\x26\x47\x12\x11\x8a\xd4\x71\x48\xbb\xee\x61\xff\xfb\x61\x28\xc5\xf1\x8b\x7c\xd7\xec\xb6\x1f\xa2\x44\x9c\x67\x9e\x79\xe1\x33\xa3\x95\xf0\x5a\x2c\x0d\xc2\x50\x9a\x48\x01\x7d\x6e\x45\x8d\x43\xf8\xcf\x00\x20\x6c\x1a\x84\xee\xdf\x5b\xa0\xe0\xb5\x2d\x07\x00\x0a\x49\x7a\xdd\x04\xed\x2c\xbc\x85\xe1\x67\xab\xff\x1d\x11\x3a\x73\x60\x73\x18\x35\x1e\x1b\xb4\x0a\x15\x04\x07\xca\x52\xfe\xcd\x59\x3c\x1b\x0e\x7e\x1f\x0c\x9e\xc1\xec\xcb\x62\x30\x78\x74\xfc\xf0\xfa\x29\x4e\x67\x5f\x16\xf0\xd1\xc5\x80\x7f\xbd\x80\xab\x0f\x0b\xf8\xcd\x59\x84\x11\x66\x65\x06\x62\x4d\x19\x7e\x15\x75\x63\x30\x93\xae\x6e\x9d\x1e\x7b\xcb\xb5\xfa\xd3\x0e\xaf\xaf\x3a\x9f\xbf\x5d\xdc\xcd\x66\x97\x97\xf3\xbf\xcd\x7e\x79\x37\x9f\x1c\xba\xc4\xaf\x8d\x23\xcc\xad\x53\xd8\x38\x1f\xa8\xcf\xef\xd2\x39\x93\xbc\x16\x22\x9a\xd0\xfd\xb1\x10\x86\xf0\x98\xcb\xbb\x84\x07\x8c\x07\x09\x10\x2e\x26\x93\xc9\xe4\x87\x8b\xf3\x57\x2f\x5f\x81\xb6\x10\x2a\x04\x42\x19\xbd\x0e\x1b\x28\xbd\x8b\x4d\x97\x79\x6d\x29\x08\x2b\x91\x76\xe9\x49\x67\x83\x77\xc6\xa0\xcf\xa5\x8b\x36\xf4\xd1\xb3\xb1\x5e\xa2\x3f\x22\x38\x3d\x26\xf7\x21\x9d\x04\x57\xc0\x23\x2e\xc1\x48\x67\x98\x41\x2d\xb8\x45\xe8\x30\x3f\x3b\x04\xd8\xeb\x8e\xff\x9d\x7a\x3c\x83\x2f\x15\x5a\x50\x4e\xdb\x32\x05\x18\x9b\xd2\x0b\x85\xb4\xe3\xaa\x31\xc2\x22\x38\x0b\xe1\x22\xa3\x5a\x18\xb3\x0d\xb8\x85\x5b\x57\x68\x13\x54\x25\x56\x0c\xc3\x35\x24\x6d\x4b\x83\xfb\x08\x9c\xd9\xf1\x23\x48\x25\x08\xac\x0b\x80\xd6\xc5\xb2\x82\x1a\x6b\xe7\x37\x30\x3a\xff\xe9\xf2\x2c\xa1\x05\x07\x3e\x5a\xa8\x9d\x47\x08\x95\xb0\x09\x77\xeb\xd9\x15\x70\x1f\x97\xf8\x83\x68\x34\xa1\x5f\xa1\xe7\x0a\x35\xc2\x0b\x63\xd0\x8c\x81\x1c\xac\x11\x2c\xb6\x57\x25\xa6\x7a\x3f\x03\x01\x4b\x5d\x96\xe9\x6c\x0b\x93\xc1\x17\x1d\x2a\xf8\x79\xb6\xc7\x74\x87\x24\x55\x2e\x1a\x05\x4b\x84\x42\xa7\x17\x55\x22\x5b\x38\x9f\x00\x1b\xef\x54\x94\xa9\x48\x84\x21\x36\x34\x06\x1d\x9e\x13\x78\x94\xae\xae\xb7\x57\x35\xd2\x23\x73\x82\x35\xbb\x4c\x61\x7d\x9c\xdd\x8c\x21\xb8\x04\x55\xea\x15\x42\x63\xd0\x86\x0d\x07\x17\x29\x55\xb1\xcb\x4a\xe1\x3c\x60\x90\x0a\x84\x55\x07\x71\x67\x47\xed\x33\x0c\x17\x59\x8d\x4a\xc7\x7a\xd8\xd3\xe5\xf3\xf3\x83\xf2\x31\xf6\x4e\x53\x1d\x74\x91\xa3\xef\x91\xae\x3d\xf7\x85\x11\x41\x0a\xdf\xe3\xfc\x03\xab\x98\x2b\xe0\xb6\x41\x2f\x02\xf7\xca\x62\x43\x01\x6b\x18\x49\xe7\xd1\x11\x38\x0f\x9d\xf5\x61\x37\x3b\xca\x65\x25\xac\x45\xf3\x14\x2a\x14\xd8\xba\x87\xc9\xec\xe6\x1a\x3a\xbc\x94\x00\x6e\xfd\xdb\x05\x8c\x5a\x83\x31\x2c\x31\x88\x31\x08\xd3\x54\x62\x0c\xa8\x4a\xec\xe1\xb3\x42\x4f\xda\xd9\xa7\xf0\x91\xd1\x7b\xb4\xa1\x87\xd0\xaf\x2d\x18\x67\xe7\x81\x4b\x77\x98\x93\x62\x63\x8d\x5e\x4b\xe8\x5c\x02\x45\x59\x81\x20\x38\x3f\x7f\x39\xcd\xde\xbc\xc9\x8e\xc4\x51\x69\xba\xcf\x49\x7f\xeb\x2d\xdc\x09\xd9\x79\x31\x39\xa6\xb5\xd0\xdf\xf0\x81\xd3\xbb\xcb\x05\xac\x9c\x89\x35\x37\x33\xfc\x74\xd9\xe7\xf2\x40\x69\xfe\x6f\x42\xca\xe6\xbc\x27\x19\x9f\xd8\xf6\xd8\x6b\x3b\x15\xb8\x77\x95\xf0\x6a\x0c\x65\x73\x3e\x06\xed\xa6\xbd\xc1\x6b\xd7\xf4\x8e\x84\x13\xc1\xf7\xc4\x7e\x7d\x7b\xb7\x38\xc9\x62\x3a\x39\xca\xf9\xae\xe2\x1b\x99\x93\xd5\x4d\x83\xfd\x73\xc9\x68\x0a\xa3\x36\x27\x67\xc7\x8e\xe7\x5b\x20\xe0\x47\xa1\x2d\x7a\x78\xaf\x6d\xfc\xca\xbf\x17\xba\x84\x2d\xf6\x51\x1c\xff\xfc\xd7\x3e\xa9\x20\x4a\xda\x93\xfe\x5a\x34\x3b\x46\x6f\xd3\x2b\x80\xe1\x8d\xb0\xa2\x44\x75\xb9\x19\x32\x83\xf7\xee\xde\xd5\x2e\xe8\x55\xba\x3b\x00\xc3\xb9\x47\x11\xb6\xaf\x3f\x5b\x6a\x50\xea\x42\xa3\xe2\xf7\xbf\x1f\x87\x70\x9b\x9e\x84\x01\x85\x41\x68\x43\xac\x82\x41\xf0\x6c\xe0\x3d\x05\x3c\x92\x8b\x5e\xe2\xa1\xda\x10\x86\x5c\x92\xce\x95\xd7\x2b\xf4\xb9\x16\x75\xee\x9d\xe9\xed\xa8\xa7\x8c\xf6\x05\x06\x88\x0d\x5c\xcf\x6e\x80\xe1\xd2\x5c\x40\x95\x2e\xbe\xda\x58\x51\x6b\xc9\x4a\xbe\xd2\x7c\xb7\xd2\x20\x74\xb0\x76\xfe\xbe\x63\xdb\x4d\x79\x99\x52\x1f\x59\xb8\x9c\xdd\x23\x4d\x55\x7e\x8f\x9b\x3f\x50\xe8\xc5\xe2\x67\x68\xe2\xd2\x68\x09\x0c\x90\x08\x45\x42\x0f\xcf\x59\x0f\x9f\x1f\x24\x47\x10\xa7\x47\x69\xdf\x3a\x3a\xc0\xba\x13\xa1\x62\xe2\x02\x94\xf6\x28\x03\x8f\x8d\x75\x85\x1e\xa1\x44\xcb\x72\x8b\x0a\x12\x02\xed\x0c\xb5\xc6\x08\x89\x8a\xe5\x37\xb5\x19\xf1\x7e\xe3\x31\xf0\x2e\x71\xe2\x06\xef\x31\xb2\x18\x38\x4f\x79\x1d\x62\x2f\xa7\xf9\x87\x6b\xd0\x36\xa0\x2f\x84\x44\xb8\xf9\xf4\x39\x83\xcf\x84\xf0\xfa\xcd\xeb\x29\x68\x9e\x71\x9c\xec\xc7\xc1\xc8\x0e\xbb\xf1\xf8\xf7\x58\x2f\x1d\x14\x5e\xd4\x48\xd9\x31\x99\x53\x8b\xd3\x8b\xd7\x93\x7d\x86\x95\xa3\x90\x4b\xad\xfa\x73\x36\xbf\xbe\xfa\x08\xd7\x77\xab\x17\xe0\x85\x2d\x31\xa5\x8f\x48\x97\x96\x9f\x78\x52\xf2\xca\x42\x27\x73\x71\xa4\x66\xd3\x49\x96\xfe\xff\x65\xfa\xf2\xa0\x76\x8d\x53\x7f\x84\xc6\x2f\x71\x89\xde\x62\x40\x82\xc6\xa9\xa7\x31\x39\xef\x67\xc2\x5b\x83\x96\x78\x92\xcd\x8f\x3f\xbe\xbb\xbd\x1a\x7c\x17\xa5\x0e\x8a\xb2\xc1\xa7\x0a\x61\x4a\x01\xae\xef\x60\xad\x8d\xe1\xd6\xf2\x98\xf6\x93\xf6\x96\xf1\xca\x92\x6f\x57\x96\x71\x92\xd4\xe9\x24\x54\x27\x0d\xb8\xff\x95\xa5\x6c\xc0\x64\x06\x3b\x61\xf7\x84\xdc\x86\x7b\xd1\x1f\xee\xc3\xf7\x97\x72\xb5\xd0\x36\xa7\x58\x14\xfa\x6b\x6f\x15\xfe\x11\xd1\x6b\x6c\x2f\x61\x7b\xba\xeb\xc5\xb4\xf7\x27\xbb\x2d\x57\x61\x69\x8d\x1e\x15\x2c\x37\x5b\xaa\x70\xd5\xf1\xd1\xf4\xf0\xd9\x96\x19\x27\x85\xe9\x26\x46\xe1\x5c\xd6\x51\xce\x68\x25\xb3\xbd\x33\x67\xf0\xfd\xb5\xdd\x33\x3c\xfc\x28\xb2\xfc\x33\xf7\xe9\x93\x48\xdb\xf2\x7f\x2a\xe7\xfe\x62\x98\x2c\x79\xef\x2c\x91\x57\x0e\x61\x85\xd9\x04\x2d\x79\x99\xed\xc0\xd2\x2a\xdb\x50\xf0\x28\x6a\x82\xd1\x5c\x18\x2d\xdd\xd9\xf1\x0c\x6a\x55\xb8\x8f\x97\x28\x4b\x8f\x65\x52\xd0\xde\x1a\x74\x24\x38\xe3\x3b\x7d\x36\x7b\xb4\x82\xf7\x62\x83\x1e\x46\x9d\xc3\x76\xae\xf8\x88\x3d\x82\xd5\x3b\x20\xf8\xec\xd1\xb2\x90\xa8\x11\x9a\x22\x67\xb9\x40\x95\x73\xbb\x1a\x0c\xbd\x14\xaf\xda\xf3\xdd\xd7\xa0\x29\xa0\xb5\x81\xce\xa6\x95\x33\x63\xda\xde\xe8\x9c\x9f\x20\x97\xc6\xca\x1c\x7d\xd0\x85\x96\x22\x1c\x7c\x3f\xa2\x0f\x94\xaf\x84\xd1\x4a\x87\x4d\xde\xa0\xd7\x4e\xe5\x95\x8b\x9e\x7a\x79\xfd\xda\x9d\xe4\x8d\x85\xbf\x5c\x98\x9f\xdc\xc1\xe6\x9d\xad\xb5\xfe\x5e\x35\x7d\xfd\xea\x25\xab\xe9\x7f\x03\x00\x00\xff\xff\xa1\x98\x51\xb9\xcc\x10\x00\x00"), }, "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers": &vfsgen۰DirInfo{ name: "workers", @@ -3496,9 +3610,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/workers.tf": &vfsgen۰CompressedFileInfo{ name: "workers.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 4272, + uncompressedSize: 2860, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x6d\x6f\xe3\xc6\x11\xfe\xce\x5f\x31\x60\x02\xf4\xdc\x5a\xf2\x4b\x3f\x14\x30\x22\x14\x46\x92\x06\x07\x34\xbd\x20\x57\x24\x45\x0f\xc6\x62\xb4\x1c\x92\x53\x2f\x77\x89\xdd\xa5\x74\xba\x83\xff\x7b\x31\xbb\x24\x25\xf9\xa4\x8b\xaf\x68\xf4\xc1\x96\xf6\x99\x99\x9d\x97\x67\x86\xc3\xaf\xe0\x57\xe7\x1f\xc9\x07\xb8\x1f\xa2\x7b\xab\xd1\xb0\x6d\xe0\x07\xef\x86\xbe\xf0\x14\xdc\xe0\x35\x41\x89\xdb\xa0\x70\x88\x2e\x64\x5c\x35\x82\x97\x50\x6e\xb3\x6e\x09\x1f\x0b\x00\x8b\x1d\xc1\x0a\xca\xaf\x3f\x6e\xd0\x2f\xb5\x19\x42\x24\xaf\xe4\xf4\x69\x91\xcf\x7a\xe7\xcc\x78\x30\x69\x16\x05\xc0\x57\xa0\xdd\x60\x63\x01\x50\x51\x60\x4f\x95\xd2\xd8\xa3\xe6\xb8\x83\xf9\xb3\x02\x31\x90\xb5\xd4\x24\xde\xb1\x55\x81\x3f\x10\x7c\xf2\x39\x2d\x8e\xef\x5f\x2c\x0e\x7f\x82\xdb\xe4\x50\x8d\x83\x89\x4a\x3b\x67\x2a\xb7\xb5\x87\x2a\x7f\xbe\x2e\x00\x5a\x42\x13\x5b\xa5\x5b\xd2\x8f\xaa\xf1\xa8\x49\xf5\xe4\xd9\x55\x59\x20\x45\x67\x29\x8a\xe9\x02\x60\xd3\x6b\xf5\xc1\x59\x52\x5c\x91\x8d\x5c\x33\xf9\xf1\xee\x30\xac\x2d\x45\xc5\x55\xc8\x3a\x91\xba\xde\x60\xa4\x02\xc0\xe0\x60\x75\xab\xb4\xb3\x35\x37\x83\xc7\xc8\xce\xc2\x0a\xa4\x26\xa7\xa0\x31\x8c\xa5\xe4\x79\xb4\x85\xbe\xa1\x08\xa9\x68\x01\xa2\x83\x6d\xcb\xba\x05\xb6\x21\xa2\xd5\x14\x20\xb4\x6e\x30\x15\xac\x09\xb0\xaa\xa8\x2a\x60\x54\xc9\x75\x56\xe8\x6d\x80\x15\xd4\x06\x63\x24\xfb\xea\x5d\x21\xf1\xa7\xeb\xd7\xea\x50\x70\xbc\x39\x2c\xda\x18\xfb\x25\x57\x97\x2f\x12\x0c\xb3\xa4\xe4\xe1\x50\x2c\xc8\xf1\xc3\x85\x04\x61\xb8\x26\xbd\xd3\x86\x12\xd3\x24\x28\xb7\x21\xef\xb9\x22\x88\x2d\x4d\x65\x12\xfe\x44\xef\x76\x80\xb6\x02\x4f\xbd\x41\x4d\x30\xf4\x15\x46\x82\x35\xb5\xb8\x61\xe7\x93\xba\xf6\x84\x91\xd4\x9a\x6a\xe7\x49\x4d\x5a\x2b\x88\x7e\x90\x8c\x3f\xe5\xbc\xfd\x8a\x1c\xa5\x1b\x6a\xe7\xe7\x64\x65\x55\xa9\x40\x45\x06\x77\x41\x32\x26\x32\xe2\xc5\xfd\xdb\x1f\x24\xbb\x21\x62\xa4\x25\xbc\xae\xf7\x19\xce\x24\x47\xfb\x87\x28\x49\xce\xb7\x57\xf0\x8a\x96\xcd\x12\x42\xef\x22\xf4\x9e\x35\x41\x74\x0e\x8c\xdb\x5e\x5c\xce\xe6\xb6\x6c\x8c\xa8\x38\xdf\xb7\x68\xa9\x5a\x26\x4b\x6f\xc6\x5f\x22\x12\x80\x82\xc6\x9e\x40\x1b\x42\x3b\xf4\x97\xfb\x7b\x72\xe4\xd5\x65\x4a\xc7\x23\x51\x0f\x6b\xce\xde\x72\x9d\xaf\xe5\xec\xd9\x10\xa8\x5a\xc2\x77\x1c\x70\x6d\x08\xb6\xc8\x51\xe2\xc0\x8d\xe3\x0a\x38\x84\x81\x42\x32\x81\x86\x1b\x0b\x5b\x8e\x2d\xb8\xd8\x92\x07\x6d\xdc\x50\x05\xf1\x49\x74\x54\xed\xfc\xdc\xb9\x2a\x72\x47\x6e\x88\x32\x10\xae\x53\x97\x47\x6c\x3e\x65\x51\xfe\x0b\x63\x55\xe5\xf3\x48\xbb\x13\xed\x59\xfe\x03\x3b\x2a\x67\xa1\x0d\x9a\xe1\x79\x1b\x7f\xd9\xe4\xd9\xdb\xea\xbd\xeb\xb1\x11\x3a\x60\x1c\x1b\x6a\xcf\x04\xf9\x3c\x65\x76\x3e\x5c\x1e\x79\x2c\xa4\x88\xd8\x00\x5b\x71\x39\xbc\xca\xe4\x6d\xc2\x05\xdc\xbd\x30\x26\xd1\x5e\x4d\xa1\xc1\x5f\xa1\xfc\xd7\x22\x7f\xbd\x13\xe8\x37\x62\x9d\xae\x7b\x17\xb1\x79\xf8\x82\x58\xf6\xa1\x3c\x5c\x14\x4f\x45\x31\xcd\x7f\x78\x7d\xff\x23\xfc\xe4\x0c\xeb\xdd\xb3\xb9\xcf\xd8\xa9\x89\xc8\xaa\xf7\xae\x66\x43\xf3\xe8\x5f\x4c\xc8\x62\x46\xbe\xf8\x51\xc0\xa2\x2a\xf5\xf0\xce\xd0\x38\xd8\xe4\x52\xf9\x39\x4e\x8a\x45\xfa\x9e\x26\xda\x53\x71\xc2\x3f\x81\x55\x9f\xbc\xdf\xbb\x26\x87\x8b\xe9\xf0\x8b\xbd\x1a\x15\x5f\xe0\x16\x57\x42\xef\x2c\x0f\x2b\xf8\xe6\x9b\xc5\xf7\x6f\xfe\x56\x4c\xf5\x2f\x7f\x21\x1f\xd8\xd9\xf2\x0e\xca\xdb\xeb\x9b\xdb\xc5\xcd\xf5\xe2\xe6\x2f\x65\x26\x53\xf9\x56\x66\x45\x47\x36\x96\x77\x27\x7a\xa1\xbc\xd7\x31\xab\xbe\x2b\xf6\xc5\x2f\x49\xdf\xde\xdd\xc7\x88\xba\xfd\xc5\x99\xa1\xa3\xd1\xd8\x01\xfa\x6d\x9a\x30\x6f\x2d\xf6\xa1\x75\xf1\x1c\xfe\x4f\x6c\xc2\x39\xec\x9c\xe5\xef\xc8\xd0\xe7\x2c\x67\xfc\xb4\xe5\x8c\x9d\xb7\x1c\xb4\xe7\x35\xdd\x6f\x90\x0d\xae\xd9\x70\xdc\xfd\xdb\x59\x3a\x69\x28\x8b\xbe\x9e\xe6\xeb\x79\x91\xc9\xd3\xcf\x88\x9c\x73\x36\xa3\xd9\xdd\xdf\x16\xf8\xd1\x55\x5c\xb3\x4e\xcf\x86\x93\xd2\x9f\xab\x57\x52\xde\x8d\xe8\x0c\x3e\xec\xe5\xca\xef\xeb\x9a\xb4\xb0\xa4\xbc\x37\xc6\x6d\x0f\x4c\x94\x3f\x8f\xed\x20\xe0\x1f\xcb\xe3\x46\x2f\xf2\x37\x21\xe4\xd9\xc6\x39\xee\x98\xff\xa1\x55\x92\x9a\xb4\x00\x46\x19\x37\xe5\x55\x9a\xf7\x18\xc2\xd0\xd1\x61\x6b\xfe\x3f\x9a\xe3\xb0\x3d\xe0\xa8\x45\xca\x10\xc3\xdd\x7d\xba\xf4\x67\x71\xe8\xf2\x58\xee\x27\xcf\x56\x73\x8f\xa6\xbc\x7b\x66\x22\x5d\x45\x7e\xc3\x39\x85\xa4\x6f\x97\xd8\xe1\x07\x67\x71\x1b\x96\xda\x75\xe5\x91\xf4\xd3\x33\xbb\xe7\x0b\x93\x0d\x73\x25\xd8\xde\xc6\xc9\xc2\xcc\x53\x78\x5e\xfb\x8e\x4b\x75\x6a\xcf\x9b\xcb\xb6\xaf\x98\xea\x3d\xd5\xfc\x7e\xbc\xe9\xa5\xe5\x13\xdf\xb8\xc3\x46\xb6\xd2\xbd\xe7\x2b\x30\x4e\xa3\x59\x62\xc7\x8a\x65\x25\x9c\x9f\x01\x71\xd7\xd3\x28\x22\x96\x8e\xce\x0b\x48\x8b\x85\xca\xfb\xcc\x6c\x2a\x6d\xb8\xf3\x79\x01\x40\x56\x56\x0d\xd5\x39\xcb\xd1\x79\x59\x49\x56\x50\xa3\x09\x69\x63\x1d\x02\x79\x55\x61\x44\x58\x81\xfc\x5b\xea\x38\x86\x3e\xcd\x5d\x6e\x2c\xa7\x5d\xd7\x93\xad\xc8\x53\x9a\xc0\xa7\x1e\x54\x07\x73\xfb\x39\xb4\x3c\xf3\x04\x3b\x58\x9c\x43\x74\x1e\x1b\x4a\xcf\x00\x17\xd5\xda\x38\xfd\xa8\x2a\x12\xa6\x8c\x1c\xda\xa4\x96\xcd\x29\xc9\x61\x56\x1c\x1e\xa7\x54\xcc\x78\x7a\xeb\x38\xc0\xe5\x77\xc2\xd9\xf5\xe1\x38\x4d\x09\x97\xe3\x84\x93\xd5\x7e\xd7\xcb\xb2\x08\x9f\xac\xa7\xfb\xd7\x8a\x40\x7a\xf0\xb2\x74\x8d\x2b\xfe\x98\xf0\xe3\xd3\x53\x6b\xf4\xd5\x15\xbc\xf9\x1d\xf7\x68\x00\x6e\xac\x20\xba\x45\xdb\xd0\x41\xa4\xef\x26\xc2\xe5\x46\x38\x5a\x44\xc6\xda\x42\x2e\x79\x91\x88\x50\xce\x14\x38\x58\x3d\x46\xc1\xcc\x7f\xed\x6c\x24\x1b\xa7\x0b\x12\x6f\xa6\x6e\x52\x87\xf5\x1e\x99\x34\x33\x47\xb6\x26\x8a\x71\x27\xdc\xb4\x71\xe6\x21\x40\xb0\xdc\xf7\x14\xc3\x41\x71\xb4\xd1\x6a\x3a\x3e\x72\xfa\x5b\x67\x23\xb2\x25\x0f\x7f\x67\x3b\xbc\x3f\xf6\xfd\xc8\x8d\xbd\xff\x53\x3c\xe2\xfd\x24\x22\xd7\xb3\xa1\x57\xe5\xd7\x1f\x65\x9a\x2e\x3b\x57\x0d\x86\x9e\xae\xb4\xb9\x1a\x5f\xeb\x76\xd8\x99\x65\xec\x7a\x53\xa6\x17\xa3\x0d\x7a\xa9\x77\x2e\xe7\xe3\xb0\xa6\x6c\xf5\x68\xba\xad\x80\xad\xbc\x6f\xbe\xba\xb9\xbe\x4c\x61\xec\xe5\x2e\x92\x5e\x08\xad\x92\x25\xf6\xd9\x54\x5c\xc1\x7f\x82\xb3\x64\xb5\xab\x28\xed\xb7\x93\x5c\xd6\x9a\xc6\x4a\x65\x83\x0a\x79\x7e\x2a\xee\x61\x05\x9a\x2b\xdf\xba\x10\xb3\xce\x88\xc8\xe1\x25\xdc\x5c\x3f\xd3\x75\x1d\xca\x4b\xfc\x50\xa7\xb9\x35\x65\xf9\x04\x38\xf2\xe4\xbf\x01\x00\x00\xff\xff\xfe\x0e\xbc\xad\xb0\x10\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\xdf\x8b\x1b\x37\x10\x7e\xdf\xbf\x62\x70\x02\xbd\xa3\x77\xbe\x4b\xfb\x16\x30\x25\xb4\x10\x02\xa5\x79\xc8\x43\x0a\xe1\x10\x63\x69\x76\x57\x3d\xad\x24\xa4\x91\x1d\x27\xdc\xff\x5e\x66\xb5\xbb\xb6\x73\x86\x26\x0f\xdd\x87\xe4\x3c\x3f\xa4\xf9\x66\xbe\xf9\x76\x5f\xc0\xc7\x90\x1e\x29\x65\x78\x53\x38\x7c\xd0\xe8\xac\xef\xe0\x6d\x0a\x25\x36\x89\x72\x28\x49\x13\xac\x70\x9f\x15\x16\x0e\xb9\xfa\x55\x27\xfe\x15\xac\xf6\x35\x77\x05\x5f\x1b\x00\x8f\x03\xc1\x06\x56\x2f\xbf\xee\x30\xad\xb5\x2b\x99\x29\x29\xb1\x3e\xdd\x56\x5b\x0c\xc1\x4d\x86\x39\xb3\x69\x00\x5e\x80\x0e\xc5\x73\x03\x60\x28\xdb\x44\x46\x69\x8c\xa8\x2d\x1f\x60\x79\x36\x20\x07\xd4\x2c\x35\x87\x0f\xd6\xab\x6c\xbf\x10\x3c\x7b\x2e\x87\xe3\xe7\xef\x0e\x87\x9f\xe1\x97\xb1\xa0\x16\x8b\x63\xa5\x43\x70\x26\xec\xfd\x69\xca\xaf\xf7\x0d\x40\x4f\xe8\xb8\x57\xba\x27\xfd\xa8\xba\x84\x9a\x54\xa4\x64\x83\xa9\x01\x23\x3a\x4f\x2c\x47\x37\x00\xbb\xa8\xd5\x97\xe0\x49\x59\x43\x9e\x6d\x6b\x29\x4d\x77\xe7\xb2\xf5\xc4\xca\x9a\x5c\x73\x98\x86\xe8\x90\xa9\x01\x70\x58\xbc\xee\x95\x0e\xbe\xb5\x5d\x49\xc8\x36\x78\xd8\x80\xcc\xe4\x92\x6b\x82\xb1\x96\x3e\x4f\x67\x61\xea\x88\x61\x1c\x5a\x06\x0e\xb0\xef\xad\xee\xc1\xfa\xcc\xe8\x35\x65\xc8\x7d\x28\xce\xc0\x96\x00\x8d\x21\xd3\xc0\x94\x52\xe7\xac\x30\xf9\x0c\x1b\x68\x1d\x32\x93\xbf\xfa\xd4\x08\xfe\xf1\xfa\xad\x3a\x0d\x9c\x6e\xce\xb7\x3d\x73\x5c\x5b\x73\xf3\x5d\x81\x79\x89\x94\x3e\x9c\x86\x65\x31\x3f\x5c\x0b\x08\x67\x5b\xd2\x07\xed\x68\x64\x9a\x80\x0a\x3b\x4a\xc9\x1a\x02\xee\x69\x1e\x93\xf0\x87\x53\x38\x00\x7a\x03\x89\xa2\x43\x4d\x50\xa2\x41\x26\xd8\x52\x8f\x3b\x1b\xd2\x98\xae\x13\x21\x93\xda\x52\x1b\x12\xa9\x39\x6b\x03\x9c\x8a\x74\xfc\xa9\xf6\xed\x23\x5a\x96\x6d\x68\x43\x5a\x9a\x55\x53\x65\x02\x86\x1c\x1e\xb2\x74\x4c\x62\xa4\x8a\x37\x1f\xde\x4a\x77\x33\x23\xd3\x1a\xde\xb5\xc7\x0e\x57\x92\xa3\xff\x89\xa5\xc9\xf5\x76\x03\x57\xb4\xee\xd6\x90\x63\x60\x88\xc9\x6a\x02\x0e\x01\x5c\xd8\x5f\xdf\x2c\xc7\xed\xad\x73\x92\x12\x52\xec\xd1\x93\x59\x8f\x27\xbd\x9f\x7e\x49\x48\x06\xca\x1a\x23\x81\x76\x84\xbe\xc4\x9b\xe3\x3d\x15\xb9\xb9\x19\xdb\xf1\x48\x14\x61\x6b\x6b\xb5\xb6\xad\xd7\xda\x5a\x59\xc9\x64\xd6\xf0\x87\xcd\xb8\x75\x04\x7b\xb4\x2c\x38\x70\x17\xac\x01\x9b\x73\xa1\x3c\x1e\x81\xce\x76\x1e\xf6\x96\x7b\x08\xdc\x53\x02\xed\x42\x31\x59\x6a\x92\x1c\xd5\x86\xb4\x6c\xae\x62\x3b\x50\x28\x2c\x82\x70\x3f\x6e\x39\x63\xf7\x9c\x45\xf5\x5f\x98\xa6\x2a\xcf\x23\x1d\x2e\xac\xe7\xea\x2f\x1c\x68\xb5\x04\xed\xd0\x95\x6f\xd7\xf8\xc7\x94\xe7\x78\x56\x4c\x21\x62\x27\x74\x40\x9e\x16\xea\xc8\x04\x79\x9e\x2a\x3b\x1f\x6e\xce\x2a\x16\x52\x30\x76\x60\xbd\x94\x9c\xaf\x2a\x79\xbb\x7c\x0d\xaf\xbf\x13\x93\x64\x6f\x66\x68\xf0\x1b\xac\xfe\xbe\xad\x7f\xbe\x16\xd7\x7f\x60\x9d\xaf\xfb\xc4\xd8\x3d\xfc\x00\x96\x23\x94\x87\xeb\xe6\xa9\x69\x66\xfd\x3f\x0a\xce\xb9\xea\x5f\x52\x98\x45\xf8\x8f\xba\xaf\x62\xa2\xd6\x7e\xfe\xc1\x51\xc8\x10\xec\x80\x9d\xe8\xe1\x29\x38\x17\x34\xba\x35\x0e\x56\x59\x11\xa3\x79\x8d\x14\x1f\x22\x9d\xe0\x3f\xb3\x37\x30\x52\x5a\xd5\x4d\x3a\xeb\xd3\xd1\xde\x00\x90\x17\x92\xab\x21\x78\xcb\x21\xc9\x32\x6c\xa0\x45\x97\x47\xad\x2c\x99\x92\x32\xc8\x08\x1b\x90\xff\xd6\x9a\x27\xe8\x93\x64\xdd\xda\xce\xdb\x51\x65\x13\x79\x43\x89\x4c\x95\x0a\x8b\x83\x5a\xca\x89\x29\xb4\xd6\xd1\xa4\xd1\x97\x5c\xcb\x69\x93\xfd\x76\xb6\x1f\x45\x3b\x73\x48\xd8\x49\xc5\x29\x04\x56\x5b\x17\xf4\xa3\x32\xb4\x13\x74\x95\x59\xbb\xe0\xca\x30\x35\xa5\x02\x35\x36\x3f\xce\xcd\x58\xfc\xe3\x1b\xef\xc4\x2f\xbf\x47\xbf\x0d\x31\x9f\x37\x6a\xf4\x8b\x79\xf4\x93\xd7\xe9\x10\x45\xa8\xe0\x99\x34\x1e\x5f\x69\x99\x74\x49\xb2\xf0\xd3\xeb\x65\x6a\xf9\xb9\xf5\x92\x84\xdf\xdd\xc1\xfb\xff\x51\xc3\x01\x6c\xe7\xc5\xa3\x7b\xf4\x1d\x9d\x20\xfd\x34\x53\xee\x61\xc4\x73\xba\x04\xef\xa6\xe9\x42\x1d\x7a\x33\x52\x61\xb5\x90\x60\x21\xfe\x42\x83\xba\x01\x3a\x78\x26\xcf\xf3\x05\x23\x73\xe6\x7d\x52\xa7\xf3\x9e\xb8\xb4\x70\x47\x36\x96\x98\x0f\xc2\x4e\xcf\x0b\x13\x01\xb2\xb7\x31\x12\xe7\x93\xe1\x68\xa7\xd5\x6c\x3e\x2b\xfa\xf7\xe0\x19\xad\xa7\x04\x7f\x5a\x5f\x3e\x9f\xd7\x7e\x56\xc6\xb1\xfe\x19\x8f\x54\x3f\x87\xc8\xf5\xd6\xd1\xd5\xea\xe5\xd7\x88\xdc\xaf\x87\x60\x8a\xa3\xa7\x3b\xed\xee\xa6\x4f\x8a\x03\x0e\x6e\xcd\x43\x74\xab\xf1\xa5\xbc\xc3\x24\xf3\xae\xe3\x7c\x2c\x5b\xaa\xa7\x7e\xa3\x54\xd6\xcb\xb7\xce\xd5\xab\xfb\x9b\x11\xc6\x31\xee\x7a\xcc\xcb\xb9\x57\x22\xa0\xcf\x14\xee\x9f\x1c\x3c\x79\x1d\x0c\x8d\xda\x3a\xc7\xd5\xac\x59\x58\x8c\xcf\x2a\x53\x92\xad\x50\x36\xc2\x06\xb4\x35\xa9\x0f\x99\x6b\xce\xe4\x11\xe3\x0d\xbc\xba\xff\x26\x37\x0c\x28\x1f\x90\xa5\x1d\x95\x6b\xee\xf2\x05\xe7\xc4\x93\x7f\x03\x00\x00\xff\xff\x44\x8c\x30\x50\x2c\x0b\x00\x00"), }, "/lokomotive-kubernetes/azure": &vfsgen۰DirInfo{ name: "azure", @@ -4908,10 +5022,26 @@ var vfsgenAssets = func() http.FileSystem { fs["/components/aws-ebs-csi-driver/manifests/values.yaml"].(os.FileInfo), } fs["/components/aws-ebs-csi-driver/manifests/templates"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/components/aws-ebs-csi-driver/manifests/templates/NOTES.txt"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/_helpers.tpl"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/clusterrole-attacher.yaml"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/clusterrole-provisioner.yaml"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/clusterrole-resizer.yaml"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/clusterrole-snapshot-controller.yaml"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/clusterrole-snapshotter.yaml"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-attacher.yaml"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-provisioner.yaml"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-resizer.yaml"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-snapshot-controller.yaml"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/clusterrolebinding-snapshotter.yaml"].(os.FileInfo), fs["/components/aws-ebs-csi-driver/manifests/templates/controller.yaml"].(os.FileInfo), fs["/components/aws-ebs-csi-driver/manifests/templates/csidriver.yaml"].(os.FileInfo), fs["/components/aws-ebs-csi-driver/manifests/templates/node.yaml"].(os.FileInfo), - fs["/components/aws-ebs-csi-driver/manifests/templates/rbac.yaml"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/role-snapshot-controller-leaderelection.yaml"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/rolebinding-snapshot-controller-leaderelection.yaml"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/serviceaccount-csi-controller.yaml"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/serviceaccount-snapshot-controller.yaml"].(os.FileInfo), + fs["/components/aws-ebs-csi-driver/manifests/templates/statefulset.yaml"].(os.FileInfo), fs["/components/aws-ebs-csi-driver/manifests/templates/storageclass.yaml"].(os.FileInfo), } fs["/components/cert-manager"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ diff --git a/pkg/platform/aws/aws.go b/pkg/platform/aws/aws.go index ba1bc3a1a..a7e7a9434 100644 --- a/pkg/platform/aws/aws.go +++ b/pkg/platform/aws/aws.go @@ -73,6 +73,7 @@ type config struct { HostCIDR string `hcl:"host_cidr,optional"` PodCIDR string `hcl:"pod_cidr,optional"` ServiceCIDR string `hcl:"service_cidr,optional"` + SetCSIDriverIAMRole string `hcl:"set_csi_driver_iam_role,optional"` ClusterDomainSuffix string `hcl:"cluster_domain_suffix,optional"` EnableReporting bool `hcl:"enable_reporting,optional"` CertsValidityPeriodHours int `hcl:"certs_validity_period_hours,optional"` diff --git a/pkg/platform/aws/template.go b/pkg/platform/aws/template.go index d4ad2f47a..faafe1820 100644 --- a/pkg/platform/aws/template.go +++ b/pkg/platform/aws/template.go @@ -30,6 +30,7 @@ module "aws-{{.Config.ClusterName}}" { tags = {{.Tags}} dns_zone = "{{.Config.DNSZone}}" dns_zone_id = "{{.Config.DNSZoneID}}" + set_csi_driver_iam_role = {{.Config.SetCSIDriverIAMRole}} {{- if .Config.ClusterDomainSuffix }} cluster_domain_suffix = "{{.Config.ClusterDomainSuffix}}" {{- end }}