-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bundle: Modify the name and reference of the sample storagesystem
In certain instances customers unintentionally create two storagesystems to the same storagecluster. This becomes problematic when attempting to delete one storagesystem, as it triggers the deletion of the associated storagecluster. By changing the name and reference, we aim to prevent this issue from occurring. It will make sure that even if they create the storagesystem from the OCP console it wont refer to the same storagecluster. Signed-off-by: Nitin Goyal <[email protected]>
- Loading branch information
Showing
3 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
apiVersion: odf.openshift.io/v1alpha1 | ||
kind: StorageSystem | ||
metadata: | ||
name: ibm-flashsystemcluster-storagesystem | ||
name: my-flashsystemcluster-storagesystem | ||
namespace: openshift-storage | ||
spec: | ||
kind: flashsystemcluster.odf.ibm.com/v1alpha1 | ||
name: ibm-flashsystemcluster | ||
name: my-flashsystemcluster | ||
namespace: openshift-storage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
apiVersion: odf.openshift.io/v1alpha1 | ||
kind: StorageSystem | ||
metadata: | ||
name: ocs-storagecluster-storagesystem | ||
name: my-storagecluster-storagesystem | ||
namespace: openshift-storage | ||
spec: | ||
kind: storagecluster.ocs.openshift.io/v1 | ||
name: ocs-storagecluster | ||
name: my-storagecluster | ||
namespace: openshift-storage |