Please enter search query.
Search <book_title>...
Veritas InfoScale™ for Kubernetes Environments 8.0.330 - Linux
Last Published:
2024-09-26
Product(s):
InfoScale & Storage Foundation (8.0.330)
Platform: Linux
- Overview
- System requirements
- Preparing to install InfoScale on Containers
- Installing Veritas InfoScale on OpenShift
- Installing InfoScale on a system with Internet connectivity
- Installing InfoScale in an air gapped system
- Installing Veritas InfoScale on Kubernetes
- Tagging the InfoScale images on Kubernetes
- Installing InfoScale on Kubernetes
- Configuring KMS-based Encryption on an OpenShift cluster
- Configuring KMS-based Encryption on a Kubernetes cluster
- InfoScale CSI deployment in Container environment
- Dynamic provisioning
- Snapshot provisioning (Creating volume snapshots)
- Managing InfoScale volume snapshots with Velero
- Volume cloning
- Installing and configuring InfoScale DR Manager on OpenShift
- Installing and configuring InfoScale DR Manager on Kubernetes
- Disaster Recovery scenarios
- Configuring InfoScale
- Administering InfoScale on Containers
- Upgrading InfoScale
- Troubleshooting
Approving certificate signing requests (csr) for OpenShift
Sometimes entry into the shell of an OpenShift container returns an error message like
Error from server: error dialing backend: x509: certificate is valid...
This error message is due to pending certificate signing requests (csr) approval or expired certificate signing requests (csr). Complete the following steps to approve certificate signing requests (csr). You can also refer to OpenShift documentation to know about csr.
- Ensure that entry into the shell returns an error on all pods of the node.
- Run the following command to check for pending approvals.
oc get csr
- Run the following command to approve pending csrs.
oc get csr -o go-template='{{range .items}}{{if not .status}}{{.metadata.name}}{{"\n"}}{{end}}{{end}}' | xargs oc adm certificate approve
- Try entry into the shell to ensure that it is unblocked.