This DNS provider allows you to create and manage DNS entries in Alibaba Cloud DNS.
You need to provide an access key (access key ID and secret access key) for Alibaba Cloud to allow the dns-controller-manager to authenticate to Alibaba Cloud DNS.
For details see AccessKey Client.
Currently the regionId
is fixed to cn-shanghai
.
Create a Secret
resource with the data fields ACCESS_KEY_ID
and SECRET_ACCESS_KEY
.
The values are the base64 encoded access key ID and secret access key respectively.
apiVersion: v1
kind: Secret
metadata:
name: alicloud-credentials
namespace: default
type: Opaque
data:
# Replace '...' with values encoded as base64.
ACCESS_KEY_ID: ...
SECRET_ACCESS_KEY: ...
# Alternatively use Gardener cloud provider credentials convention
#accessKeyID: ...
#secretAccessKey: ...