File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ You must have:
31
31
You should also:
32
32
33
33
- Be a cluster admin
34
- - Have access to your DNS provider.
34
+ - Have access to your DNS provider
35
35
- Have an AWS account so that you can access
36
36
[ Route 53] ( https://aws.amazon.com/route53/ ) and
37
37
[ IAM] ( https://aws.amazon.com/iam/ )
@@ -97,8 +97,14 @@ To make sure that your `clusterIssuer` can change your DNS settings,
97
97
[ create the required IAM role] ( https://cert-manager.io/docs/configuration/acme/dns01/route53/#set-up-an-iam-role )
98
98
99
99
When you create the secret for cert-manager, referenced below as
100
- ` route53-credentials ` be sure it is in the cert-manager namespace since it's
101
- used by the cert-manager pod to perform DNS configuration changes.
100
+ ` route53-credentials ` , be sure it is in the cert-manager namespace since it's
101
+ used by the cert-manager pod to perform DNS configuration changes:
102
+
103
+ ``` console
104
+ kubectl --namespace cert-manager \
105
+ create secret generic route53-credentials \
106
+ --from-literal="secret-access-key=<YOUR-AWS-SECRET-ACCESS-KEY>"
107
+ ```
102
108
103
109
## Step 4: Create the ACME Issuer
104
110
You can’t perform that action at this time.
0 commit comments