Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Node Publish volume changes for the nfs support #192

Closed
wants to merge 46 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
3bcd44b
indentation fixed for controller.yaml
khareRajshree May 7, 2023
39e88c6
NFS storage class yaml updated
khareRajshree May 7, 2023
e7304c8
create NFS volume implemented
khareRajshree May 7, 2023
45e9e5c
go.mod and go.sum updated
khareRajshree May 8, 2023
d62f5a1
update controller publish volume for nfs.
VamsiSiddu-7 May 8, 2023
4178044
Merge branch 'nfs-create-volume' of https://github.com/dell/csi-power…
VamsiSiddu-7 May 8, 2023
16731eb
hardcoded volume name for testing.
VamsiSiddu-7 May 8, 2023
8134973
add debug.
VamsiSiddu-7 May 8, 2023
628f423
files updated
khareRajshree May 9, 2023
c9e6068
add debug.
VamsiSiddu-7 May 10, 2023
7e56707
Merge branch 'nfs-create-volume' of https://github.com/dell/csi-power…
VamsiSiddu-7 May 10, 2023
2d7fd6c
removed debug statements
khareRajshree May 10, 2023
cf0b1ea
add debug.
VamsiSiddu-7 May 10, 2023
3417c10
fixed error.
VamsiSiddu-7 May 10, 2023
7071293
fix the panic.
VamsiSiddu-7 May 10, 2023
678d3de
add debug.
VamsiSiddu-7 May 10, 2023
46dba71
fixed the nil panic.
VamsiSiddu-7 May 10, 2023
df0ed72
fixed the nfs export.
VamsiSiddu-7 May 10, 2023
3f6b779
fix nfs export error.
VamsiSiddu-7 May 10, 2023
e6a7083
files updated
khareRajshree May 10, 2023
065864b
Merge branch 'nfs-create-volume' of https://github.com/dell/csi-power…
VamsiSiddu-7 May 11, 2023
8fbdd07
updated files.
VamsiSiddu-7 May 11, 2023
a0e9f92
files updated
khareRajshree May 11, 2023
2e5888a
Merge branch 'nfs-create-volume' of https://github.com/dell/csi-power…
VamsiSiddu-7 May 11, 2023
0bc1ba6
removed debug logs.
VamsiSiddu-7 May 11, 2023
f004983
remove debug logs.
VamsiSiddu-7 May 11, 2023
2be908c
Merge branch 'nfs-support' of https://github.com/dell/csi-powerflex i…
VamsiSiddu-7 May 11, 2023
331a1c0
add debug.
VamsiSiddu-7 May 11, 2023
3e3ea6c
add debug.
VamsiSiddu-7 May 11, 2023
c7ce0f5
add debug3.
VamsiSiddu-7 May 11, 2023
1ebf863
fixed a mistake.
VamsiSiddu-7 May 11, 2023
850e772
add debug.
VamsiSiddu-7 May 11, 2023
ffd1a2a
fixed th idempotency.
VamsiSiddu-7 May 12, 2023
1182759
remove debug logs.
VamsiSiddu-7 May 12, 2023
1d65ccd
removed the hardcoded name.
VamsiSiddu-7 May 12, 2023
34b1d73
Merge branch 'nfs-support' of https://github.com/dell/csi-powerflex i…
VamsiSiddu-7 May 12, 2023
0c29740
node publish volume nfs changes.
VamsiSiddu-7 May 13, 2023
a26665b
modified the dockerfile.
VamsiSiddu-7 May 13, 2023
ec50237
fixed the path to send to nfs mount.
VamsiSiddu-7 May 13, 2023
6d1eb26
added fileinterface functionality.
VamsiSiddu-7 May 13, 2023
7f5b27d
fixed a small mistake.
VamsiSiddu-7 May 13, 2023
eaedc7e
update controller.go
VamsiSiddu-7 May 15, 2023
aeb733b
files updated.
VamsiSiddu-7 May 15, 2023
5d91e31
updated nfs storageclass.
VamsiSiddu-7 May 15, 2023
0201314
fixed the debug log.
VamsiSiddu-7 May 15, 2023
b1379f0
updated files.
VamsiSiddu-7 May 15, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add debug.
VamsiSiddu-7 committed May 8, 2023

Unverified

The committer email address is not verified.
commit 813497379ad73faf6cc94dfa590f8ae7d923d196
6 changes: 5 additions & 1 deletion service/controller.go
Original file line number Diff line number Diff line change
@@ -315,7 +315,11 @@ func (s *service) CreateVolume(
if existingFS != nil {
if existingFS.SizeTotal == int(size) {
vi := s.getCSIVolumeFromFilesystem(existingFS, systemID)
vi.AccessibleTopology = volumeTopology
vi.VolumeContext[KeyNasName] = nasName
vi.VolumeContext[KeyNfsACL] = nfsAcls
vi.VolumeContext[KeyFsType] = fsType
nfsTopology := s.GetNfsTopology(systemID)
vi.AccessibleTopology = nfsTopology
csiResp := &csi.CreateVolumeResponse{
Volume: vi,
}