Please enter search query.
Search <book_title>...
Veritas InfoScale™ for Kubernetes Environments 8.0.300 - Linux
Last Published:
2023-12-12
Product(s):
InfoScale & Storage Foundation (8.0.300)
- Overview
- System requirements
- Preparing to install InfoScale on Containers
- Installing Veritas InfoScale on OpenShift
- Introduction
- Prerequisites
- Additional Prerequisites for Azure RedHat OpenShift (ARO)
- Considerations for configuring cluster or adding nodes to an existing cluster
- Creating multiple InfoScale clusters
- Installing InfoScale on a system with Internet connectivity
- Installing InfoScale in an air gapped system
- Removing and adding back nodes to an Azure RedHat OpenShift (ARO) cluster
- Installing Veritas 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
- CSI plugin deployment
- Raw block volume support
- Static provisioning
- Dynamic provisioning
- Resizing Persistent Volumes (CSI volume expansion)
- Snapshot provisioning (Creating volume snapshots)
- Managing InfoScale volume snapshots with Velero
- Volume cloning
- Using InfoScale with non-root containers
- Using InfoScale in SELinux environments
- CSI Drivers
- Creating CSI Objects for OpenShift
- Creating ephemeral volumes
- 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
- Migrating applications to 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.