Last active
November 20, 2019 09:22
-
-
Save rvanbutselaar/d93d929e9a8cc70d16079b6f12ce7217 to your computer and use it in GitHub Desktop.
OpenShift 4.2 troubleshooting
This file contains hidden or 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
# controleer OpenShift credentials | |
oc get secret -n kube-system openstack-credentials --template='{{index .data "clouds.conf"}}' | base64 -d | |
oc get secret -n kube-system openstack-credentials --template='{{index .data "clouds.yaml"}}' | base64 -d | |
# controleer status van registry | |
oc get configs.imageregistry.operator.openshift.io/cluster -o json | jq '.status'\ | |
# delete OCS operator | |
oc patch cephcluster.ceph.rook.io/ocs-storagecluster-cephcluster -p '{"metadata":{"finalizers": []}}' --type=merge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment