22 lines
536 B
YAML
22 lines
536 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- deployment.yaml
|
|
- service.yaml
|
|
- ingress.yaml
|
|
- network-policy.yaml
|
|
- pod-disruption-budget.yaml
|
|
- configmap.yaml
|
|
|
|
# Common labels to apply to all resources
|
|
labels:
|
|
- includeSelectors: true
|
|
pairs:
|
|
app.kubernetes.io/component: web
|
|
app.kubernetes.io/instance: math-exercises-instance
|
|
app.kubernetes.io/managed-by: kustomize
|
|
app.kubernetes.io/name: math-exercises
|
|
app.kubernetes.io/part-of: math-suite
|
|
app.kubernetes.io/version: "1.0"
|