Skip to content

Commit

Permalink
Changed driver name
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepSpace2 committed Feb 7, 2022
1 parent efece41 commit abac425
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions charts/aws-ebs-csi-driver/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apiVersion: v2
appVersion: 1.5.0
name: aws-ebs-csi-driver
name: test-csi-driver
description: A Helm chart for AWS EBS CSI Driver
version: 2.6.2
kubeVersion: ">=1.17.0-0"
home: https://github.com/kubernetes-sigs/aws-ebs-csi-driver
home: https://github.com/DeepSpace2/test-csi-driver
sources:
- https://github.com/kubernetes-sigs/aws-ebs-csi-driver
- https://github.com/DeepSpace2/test-csi-driver
keywords:
- aws
- ebs
Expand Down
2 changes: 1 addition & 1 deletion charts/aws-ebs-csi-driver/templates/csidriver.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: {{ ternary "storage.k8s.io/v1" "storage.k8s.io/v1beta1" (semverCompare ">=1.18.0-0" .Capabilities.KubeVersion.Version) }}
kind: CSIDriver
metadata:
name: ebs.csi.aws.com
name: test.csi.driver.com
labels:
{{- include "aws-ebs-csi-driver.labels" . | nindent 4 }}
spec:
Expand Down
4 changes: 2 additions & 2 deletions charts/aws-ebs-csi-driver/templates/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ spec:
- name: ADDRESS
value: /csi/csi.sock
- name: DRIVER_REG_SOCK_PATH
value: /var/lib/kubelet/plugins/ebs.csi.aws.com/csi.sock
value: /var/lib/kubelet/plugins/test.csi.driver.com/csi.sock
{{- if .Values.proxy.http_proxy }}
{{- include "aws-ebs-csi-driver.http-proxy" . | nindent 12 }}
{{- end }}
Expand Down Expand Up @@ -157,7 +157,7 @@ spec:
type: Directory
- name: plugin-dir
hostPath:
path: {{ printf "%s/plugins/ebs.csi.aws.com/" (trimSuffix "/" .Values.node.kubeletPath) }}
path: {{ printf "%s/plugins/test.csi.driver.com/" (trimSuffix "/" .Values.node.kubeletPath) }}
type: DirectoryOrCreate
- name: registration-dir
hostPath:
Expand Down
2 changes: 1 addition & 1 deletion charts/aws-ebs-csi-driver/templates/storageclass.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ metadata:
{{- with .labels }}
labels: {{- . | toYaml | trim | nindent 4 }}
{{- end }}
provisioner: ebs.csi.aws.com
provisioner: test.csi.driver.com
{{ omit (dict "volumeBindingMode" "WaitForFirstConsumer" | merge .) "name" "annotations" "labels" | toYaml }}
{{- end }}
4 changes: 2 additions & 2 deletions deploy/kubernetes/base/csidriver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
apiVersion: storage.k8s.io/v1
kind: CSIDriver
metadata:
name: ebs.csi.aws.com
name: test-csi-driver
labels:
app.kubernetes.io/name: aws-ebs-csi-driver
app.kubernetes.io/name: test-csi-driver
spec:
attachRequired: true
podInfoOnMount: false
4 changes: 2 additions & 2 deletions deploy/kubernetes/base/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ spec:
- name: ADDRESS
value: /csi/csi.sock
- name: DRIVER_REG_SOCK_PATH
value: /var/lib/kubelet/plugins/ebs.csi.aws.com/csi.sock
value: /var/lib/kubelet/plugins/test.csi.driver.com/csi.sock
volumeMounts:
- name: plugin-dir
mountPath: /csi
Expand All @@ -111,7 +111,7 @@ spec:
type: Directory
- name: plugin-dir
hostPath:
path: /var/lib/kubelet/plugins/ebs.csi.aws.com/
path: /var/lib/kubelet/plugins/test.csi.driver.com/
type: DirectoryOrCreate
- name: registration-dir
hostPath:
Expand Down

0 comments on commit abac425

Please sign in to comment.