Just a simple repo to POC EKS/ASM integration
- kubectl
- awscli
- eksctl
Replace anything with <value>
with the required value.
Setup aws credentials.
Use the following commands to create the docker container from the repo root directory.
docker build -t your-tag .
docker push your-tag
Use the following commands to create the EKS Cluster from the repo root directory.
eksctl create cluster -f cluster.yaml
Use the following commands to create the ASM secrets.
aws secretsmanager create-secret --region region --name secretname --description "The first example secret that is needed" --secret-string "mysecret"
Use the following commands to create the k8s deployment from the repo root directory.
kubectl -n secrets apply -f deployment.yaml
kubectl -n secrets logs readsecrets
kubectl -n secrets delete -f deployment.yaml
- Provide more links