We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Users should be instructed to create an AWS-related secret, before performing this action:
kubectl apply -f deploy/deployment-rbac.yaml
The secret to create should take this form (users must supply their own AWS KEY and KEY_ID):
apiVersion: v1 kind: Secret metadata: name: k8s-rds type: Opaque data: AWS_ACCESS_KEY_ID: ################################## (must be encrypted) AWS_SECRET_ACCESS_KEY: ################################# (must be encrypted)
The text was updated successfully, but these errors were encountered:
Note - the encryption should not include a new line char - on Linux, this tool can be used:
echo -n "########" | base64
Sorry, something went wrong.
No branches or pull requests
Users should be instructed to create an AWS-related secret, before performing this action:
The secret to create should take this form (users must supply their own AWS KEY and KEY_ID):
The text was updated successfully, but these errors were encountered: