Deployment
The CI/CD job called Deploy to GKE Cluster runs on the latest version of Ubuntu and depends on the previously executed Security Testing job. It is intended to install the application on the Google Kubernetes Engine (GKE) cluster, check the installation status and load the necessary configurations.
Description
Checkout repository: uses the actions/checkout@v4 action to download the content of the repository to the working environment. This step ensures that the repository will be available for further steps in the workflow.
Authenticate with Google Cloud: uses the google-github-actions/auth@v2 action to authenticate with Google Cloud using the credentials stored in the secret (credentials_json: '${{}'). This step ensures that the Google Cloud permissions are set correctly.
Set up Google Cloud SDK: uses the google-github-actions/setup-gcloud@v2 action to set up Google Cloud SDK by installing the "gke-gcloud-auth-plugin" add-on. This step enables the use of Google Cloud tools in the following steps.
Configure kubectl: executes the "gcloud container clusters get-credentials autopilot-cluster-1 --region europe-central2" command to get the credentials for the GKE cluster and the "kubectl config current-context" command to check the current kubectl context. This step ensures that kubectl is correctly configured to communicate with the GKE cluster.
Download IMAGE_TAG file: uses the actions/download-artifact@v4 action to download an artifact named 'image-tag'. This step ensures that the image tag file (IMAGE_TAG) is available for use in the next step.
Apply Kubernetes manifests: executes the command to read the image tag from the file (IMAGE_TAG=
IMAGE_TAG|g" k8s/resources.yaml). Then apply the updated Kubernetes manifest (kubectl apply -f k8s/resources.yaml). This step installs the application on the GKE cluster using the corresponding Docker image. Verify deployment: executes the command to check the deployment status (kubectl rollout status deployment/testopspoc) and print out the current pods (kubectl get pods). This step ensures that the deployment is successful and provides an overview of the current pod status.