When attempting to enable Velero backup for Kubernetes clusters in a VMware Cloud Foundation (VCF) 9 environment, administrators encounter an error message when accessing: Manage & Govern > Kubernetes Management > Configurations > Credentials.
The UI displays the following banner: API Error: Failed to list credentials: [Service Unavailable: please try again later]
This prevents the creation or management of credentials required for Velero backup integration.
VCF Automation 9.0.x
The api-gateway component is unable to connect to the account-manager service via internal gRPC due to an expired TLS certificate. Although cert-manager may have successfully renewed the api-gateway-instack-tls secret, the running pods may not have reloaded the new certificate, causing an authentication handshake failure.
To resolve this issue, verify the certificate status and force a rolling restart of the affected services to reload the valid certificates.
api-gateway-instack-tls secret contains a renewed certificate with a future expiration datekubectl get secret api-gateway-instack-tls -n prelude -o jsonpath='{.data.tls\.crt}' | base64 -d | openssl x509 -noout -datesapi-gateway-server deploymentkubectl rollout restart deployment/api-gateway-server -n prelude
kubectl rollout status deployment/api-gateway-server -n preludeaccount-manager-server to ensure it is also using the valid certificate (account-manager-server-tls)kubectl rollout restart deployment/account-manager-server -n prelude
kubectl rollout status deployment/account-manager-server -n preludekubectl rollout restart deployment/dataprotection-server -n prelude
kubectl rollout status deployment/dataprotection-server -n preludekubectl get pods -n prelude -l app=api-gateway-server
kubectl get pods -n prelude -l app=account-manager-serverThis behavior will reoccur during future certificate rotations, including the next scheduled certificate renewal cycle. Should the issue occur again, restarting the affected services will allow to pick up the newly rotated certificates and restore normal functionality.