Skip to content

Commit

Permalink
Testing lsblk implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Patil committed Jul 14, 2022
1 parent 08ccb67 commit 69649f9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/aws-ebs-csi-driver/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.8.0
name: aws-ebs-csi-driver
description: A Helm chart for AWS EBS CSI Driver
version: 2.8.19
version: 2.8.20
kubeVersion: ">=1.17.0-0"
# home: https://github.com/kubernetes-sigs/aws-ebs-csi-driver
# sources:
Expand Down
2 changes: 1 addition & 1 deletion charts/aws-ebs-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ image:
# repository: public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver
repository: public.ecr.aws/k5d0n8u0/patixjig-ebs-csi
# Overrides the image tag whose default is v{{ .Chart.AppVersion }}
tag: "4fb837c895e9c12817bdabf6ab9760162c01bec3-linux-amd64-amazon"
tag: "08ccb67318898512cad4543d8a036932800cdbaf-linux-amd64-amazon"
pullPolicy: IfNotPresent

# -- Custom labels to add into metadata
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/base/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
tolerationSeconds: 300
containers:
- name: ebs-plugin
image: public.ecr.aws/k5d0n8u0/patixjig-ebs-csi:4fb837c895e9c12817bdabf6ab9760162c01bec3-linux-amd64-amazon
image: public.ecr.aws/k5d0n8u0/patixjig-ebs-csi:08ccb67318898512cad4543d8a036932800cdbaf-linux-amd64-amazon
imagePullPolicy: IfNotPresent
args:
# - {all,controller,node} # specify the driver mode
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/base/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
- name: ebs-plugin
securityContext:
privileged: true
image: public.ecr.aws/k5d0n8u0/patixjig-ebs-csi:4fb837c895e9c12817bdabf6ab9760162c01bec3-linux-amd64-amazon
image: public.ecr.aws/k5d0n8u0/patixjig-ebs-csi:08ccb67318898512cad4543d8a036932800cdbaf-linux-amd64-amazon
imagePullPolicy: IfNotPresent
args:
- node
Expand Down
4 changes: 2 additions & 2 deletions pkg/driver/node_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ func (d *nodeService) findDevicePath(devicePath, volumeID, partition string) (st

klog.V(5).Infof("[Debug] Falling back to snow volume lookup for: %q", devicePath)

//snowDevicePath, err := findSnowVolume(d, err)
snowDevicePath, err := d.deviceIdentifier.FindSnowVolume()
snowDevicePath, err := findSnowVolume(d, err)
//snowDevicePath, err := d.deviceIdentifier.FindSnowVolume()
if err == nil {
klog.V(5).Infof("[Debug] successfully resolved devicePath=%q to %q", devicePath, snowDevicePath)
canonicalDevicePath = snowDevicePath
Expand Down

0 comments on commit 69649f9

Please sign in to comment.