- OpenShift 4.6 or 4.7
- Cluster-admin user access
- Your Pre-requisites
The Kubernetes Container Platform has been long managed Storage Driver in-tree to support vSphere Volume Driver, EBS, Azure Disk, etc. Now the persistence storage requirements are expanding to support more external storage operation like snapshot, volume expansion or migration, so the Container Storage Interface is the standard container storage interface for integration with external storage provider https://kubernetes-csi.github.io/docs/introduction.html.
After the infrastucture met minimum requirements (vSphere 6.7U3), this is the high level process to install vSphere CSI on OpenShift Container Platform
- Create Compliance Operator source and subscription
- Create ComplianceScan
- How to check Reports and Remediation
Steps:
- a
- b
- c
- d
Code Block
uname -a---
sample: yaml
spec:
key1: value1
item_list:
- name: item1
property: prop1
- name: item2
property: prop2Sample inline yaml to oc apply
cat <<EOF | oc create -f -
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: image-registry-storage
namespace: openshift-image-registry
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Gi
storageClassName: thin
volumeMode: Filesystem
EOF