In this setup we integrate the secrets exercise with GCP GKE and let pods consume secrets from the GCP Secret manager. If you want to know more about integrating secrets with GKE, check this link.
Have the following tools installed:
- gcloud CLI - Installation
- Tfenv (Optional) - Installation
- Terraform CLI - Installation
- Wget - Installation
- Helm Installation
- Kubectl Installation
- jq Installation
Make sure you have an active account at GCP for which you have configured the credentials on the system where you will execute the steps below.
Note: Applying the Terraform means you are creating cloud infrastructure which actually costs you money. The authors are not responsible for any cost coming from following the instructions below. If you have a brand new GCP account, you could use the $300 in credits to set up the infrastructure for free.
Note-II: We create resources in europe-west4
by default. You can set the region by editing terraform.tfvars
.
Note-III: The cluster you create has its access bound to the public IP of the creator. In other words: the cluster you create with this code has its access bound to your public IP-address if you apply it locally.
- check whether you have the right project by doing
gcloud config list
. Otherwise configure it by doinggcloud init
. - Run
gcloud auth application-default login
to be able to use your account credentials for terraform. - Enable the required gcloud services using
gcloud services enable compute.googleapis.com container.googleapis.com
- Run
terraform init
(if required, use tfenv to select TF 0.14.0 or higher ) - Run
terraform plan
- Run
terraform apply
. Note: the apply will take 10 to 20 minutes depending on the speed of the GCP backplane. - When creation is done, run
gcloud container clusters get-credentials wrongsecrets-exercise-cluster --region YOUR_REGION
- Run
./k8s-vault-gcp-start.sh
Your EKS cluster should be visible in EU-West4 by default. Want a different region? You can modify terraform.tfvars
or input it directly using the region
variable in plan/apply.
Are you done playing? Please run terraform destroy
twice to clean up.
Run ./k8s-vault-gcp-start.sh
and connect to http://localhost:8080 when it's ready to accept connections (you'll read the line Forwarding from 127.0.0.1:8080 -> 8080
in your console). Now challenge 9 and 10 should be available as well.
When you're done:
- Kill the port forward.
- Run
terraform destroy
to clean up the infrastructure. - Run
unset KUBECONFIG
to unset the KUBECONFIG env var. - Run
rm ~/.kube/wrongsecrets
to remove the kubeconfig file. - Run
rm terraform.ts*
to remove local state files.
- Does your worker node now have access as well?
- Can you easily obtain the GCP IAM role of the Node?
- Can you get the secrets in the SSM Parameter Store and Secret Manager easily? Which paths do you see?
- You should see at the configuration details of the cluster that
databaseEncryption
isDECRYPTED
(gcloud container clusters describe wrongsecrets-exercise-cluster --region europe-west4
). What does that mean?