Skip to content

Commit

Permalink
fixed volume prefix for powerscale (#902)
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhatdell authored Nov 24, 2023
1 parent 20de3bf commit 11dd47a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ describe("GIVEN displayModules function", () => {
expect($(".image-repository").css("display")).toEqual("none");
expect($(".cert-manager").css("display")).toEqual("none");
expect($(".resizer").css("display")).toEqual("none");
expect($(".vol-name-prefix").css("display")).toEqual("none");
expect($(".vol-name-prefix").css("display")).toEqual("block");
expect($(".snapshot-feature").css("display")).toEqual("none");
expect($(".fsGroupPolicy").css("display")).toEqual("block");
expect($(".resiliency").css("display")).toEqual("none");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,6 @@ function displayModules(installationType, driverName, CONSTANTS_PARAM) {
$(".cert-manager").hide();
$(".resizer").hide();
$(".snapshot-feature").hide();
$(".vol-name-prefix").hide();
document.getElementById("label-value").value = CONSTANTS_PARAM.POWERSCALE_LABEL_VALUE;
}
break;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ spec:

sideCars:
- name: provisioner
args: ["--volume-name-prefix=csipscale"]
args: ["--volume-name-prefix=$VOLUME_NAME_PREFIX"]
# health monitor is disabled by default, refer to driver documentation before enabling it
- name: external-health-monitor
enabled: $HEALTH_MONITOR_ENABLED
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ spec:

sideCars:
- name: provisioner
args: ["--volume-name-prefix=csipscale"]
args: ["--volume-name-prefix=$VOLUME_NAME_PREFIX"]
# health monitor is disabled by default, refer to driver documentation before enabling it
- name: external-health-monitor
enabled: $HEALTH_MONITOR_ENABLED
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ spec:

sideCars:
- name: provisioner
args: ["--volume-name-prefix=csipscale"]
args: ["--volume-name-prefix=$VOLUME_NAME_PREFIX"]
# health monitor is disabled by default, refer to driver documentation before enabling it
- name: external-health-monitor
enabled: $HEALTH_MONITOR_ENABLED
Expand Down

0 comments on commit 11dd47a

Please sign in to comment.