devops-exercises/topics/kubernetes/exercises/kustomize_common_labels/exercise.md
Chimon Sultan c7f89d43d5
Removed the need for Kustomize in prerequisites (#332)
Since 1.14, Kubectl also supports the management of Kubernetes objects using a kustomization file.
cf. https://kubernetes.io/docs/tasks/manage-kubernetes-objects/kustomization/#bases-and-overlays
2023-01-04 14:18:35 +02:00

475 B

Kustomize - Common Labels

Requirements

  1. Running Kubernetes cluster
  2. Kubctl version 1.14 or above

Objectives

In the current directory there is an app composed of a Deployment and Service.

  1. Write a kustomization.yml file that will add to both the Service and Deployment the label "team-name: aces"
  2. Execute a kustomize command that will generate the customized k8s files with the label appended

Solution

Click here to view the solution