Skip to content

Commit

Permalink
show note on SDC enablement always
Browse files Browse the repository at this point in the history
  • Loading branch information
kumarp20 committed Sep 27, 2024
1 parent ae12ae0 commit bcb0cc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
4 changes: 2 additions & 2 deletions content/docs/deployment/csminstallationwizard/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -348,13 +348,13 @@

<div class="row mb-4 enable-sdc">
<div class="col-sm-12">
<input class="form-check-input" type="checkbox" id="enable-sdc" value="" onchange="onEnableSdcChange() checked">
<input class="form-check-input" type="checkbox" id="enable-sdc" value="">
<label for="enable-sdc" class="form-check-label ms-2 text-dark" data-bs-toggle="tooltip" data-bs-placement="right" title="Install SDC">Install SDC</label>
</div>
<div class="row child-level-one" id="enablesdc-note-wrapper-helm">
<div class="mt-3 py-2 note">
<i class="icon dds__icon dds__icon--alert-info-cir"></i>
<span class="h6">Click on the <a href="https://dell.github.io/csm-docs/docs/deployment/helm/drivers/installation/powerflex/#manual-sdc-deployment" target="_blank">documentation link</a> for the steps to manually install SDC. SDC is required for using block storage. </span>
<span class="h6"> SDC is required for using block storage. Click on the <a href="https://dell.github.io/csm-docs/docs/deployment/helm/drivers/installation/powerflex/#install-powerflex-storage-data-client" target="_blank">documentation link</a> for more details. </span>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ function onArrayChange() {
onSnapshotChange(snapshotNote, driver, CONSTANTS);
onCertManagerChange(certmanagerNote);
onApproveSdcChange(approveSdcNote);
onEnableSdcChange();
onTopologyChange(topologyNote);
onVSphereChange();
onReplicationChange(replicationNote);
Expand Down Expand Up @@ -167,14 +166,6 @@ function onApproveSdcChange(approveSdcNoteValue) {
}
}

function onEnableSdcChange() {
if ($("#enable-sdc").prop('checked') === true) {
$('div#enablesdc-note-wrapper-helm').hide();
} else {
$('div#enablesdc-note-wrapper-helm').show();
}



function onTopologyChange(topologyNoteValue) {
if ($("#topology").prop('checked') === true) {
Expand Down Expand Up @@ -576,7 +567,6 @@ if (typeof exports !== 'undefined') {
onSnapshotChange,
onCertManagerChange,
onApproveSdcChange,
onEnableSdcChange,
onTopologyChange,
onReplicationChange,
onVSphereChange,
Expand Down

0 comments on commit bcb0cc0

Please sign in to comment.