Hello RAMESH, RAM
It seems your private key is not being properly associated with the public key after importing the certificate into your application using Kubernetes.
Try to
- Make sure that your generated certificate contains both the public and private keys.
- Make sure that secret associated with your application has both the certificate and the private key:
kubectl get secret <secret-name> -o yaml
ortls.crt
(certificate) andtls.key
(private key) in the output. - Verify the secret is correctly mounted in your pod/deployment.
- Confirm that the latest certificate version is being used from the Key Vault.
- Inspect Kubernetes logs and ensure correct permissions are granted.