26 lines
448 B
YAML
26 lines
448 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
labels:
|
|
- pairs:
|
|
app.kubernetes.io/instance: kitchen
|
|
|
|
resources:
|
|
- kitchen.yaml
|
|
- secrets.yaml
|
|
|
|
patches:
|
|
- patch: |-
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: kitchen
|
|
spec:
|
|
template:
|
|
spec:
|
|
imagePullSecrets:
|
|
- name: imagepull-gitea
|
|
target:
|
|
kind: Deployment
|
|
labelSelector: app.kubernetes.io/name=kitchen
|