Im trying to access from node.
The issue was resolved using the following steps:
Encoded the CA certificate into Base64 format.
Exported the cluster configuration in JSON format.
az rest --method get --url "/subscriptions/<subscription-id>/resourceGroups/<resource-grou-name>/providers/Microsoft.ContainerService/managedClusters/<cluster-name>?api-version=2025-01-01" > body.json
Update Base64 values to the below porfile.
"securityProfile": {
"customCaTrustCertificates": ["values"]
Upload the update body json to cluster and it will take sometime to update the certificate.
az rest --method put --url "/subscriptions/<subscription-id>/resourceGroups/<resource-group-name>/providers/Microsoft.ContainerService/managedClusters/<cluster-name>?api-version=2025-01-01" --body @body.json
@Dharani Reguri , Thanks for the support and document "Use the Custom certificate authority (CA)"