f1e2be3a54
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
680 B
680 B
Kustomize - Common Labels
Requirements
- Running Kubernetes cluster
- Kubctl version 1.14 or above
Objectives
In the current directory there is an app composed of a Deployment and Service.
- Write a kustomization.yml file that will add to both the Service and Deployment the label "team-name: aces"
- Execute a kustomize command that will generate the customized k8s files with the label appended
Solution
- Add the following to kustomization.yml in someApp directory:
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
commonLabels:
team-name: aces
resources:
- service.yml
- deployment.yml
- Run
kubectl apply -k someApp