-
Bug
-
Resolution: Done
-
Undefined
-
1.0.0
-
None
-
False
-
-
False
-
-
Bug Fix
-
Done
-
-
-
3
-
Full Snow Moon
4.1. Configuring Amazon DNS provider credentials
The command in the step 2 does not include environment variables that are configured in the previous step.
kubectl create secret generic my-aws-credentials \
--namespace=my-gateway-namespace \
--type=kuadrant.io/aws \
--from-literal=AWS_ACCESS_KEY_ID \
--from-literal=AWS_REGION \
--from-literal=AWS_SECRET_ACCESS_KEY
Should this be as follows?
kubectl create secret generic my-aws-credentials \
--namespace=my-gateway-namespace \
--type=kuadrant.io/aws \
--from-literal=AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID \
--from-literal=AWS_REGION=$AWS_REGION \
--from-literal=AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY
Since this is the first time my-gateway-namespace namespace has appeared, it would be better to explain it at the beginning of the chapter.
4.2. Configuring Google DNS provider credentials
The command in the step 2 does not include environment variables that are configured in the previous step.
kubectl create secret generic my-test-gcp-credentials \
--namespace=my-gateway-namespace \
--type=kuadrant.io/gcp \
--from-literal=PROJECT_ID=xxx \
--from-file=GOOGLE
Should this be as follows?
kubectl create secret generic my-test-gcp-credentials \
--namespace=my-gateway-namespace \
--type=kuadrant.io/gcp \
--from-literal=PROJECT_ID=$PROJECT_ID \
--from-file=GOOGLE=$GOOGLE