23 lines
676 B
YAML
23 lines
676 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- ../../base
|
|
|
|
# The dev overlay is where a rig says how its estate differs from the base —
|
|
# which components are real, which are mocked, which point at a live system.
|
|
# Kept empty on purpose: the base already boots, and an overlay full of examples
|
|
# is harder to read than one that starts blank.
|
|
#
|
|
# The shape a patch takes, for when the first one is needed:
|
|
#
|
|
# patches:
|
|
# - target: {kind: Service, name: example-service}
|
|
# patch: |
|
|
# - op: replace
|
|
# path: /spec/type
|
|
# value: NodePort
|
|
# - op: add
|
|
# path: /spec/ports/0/nodePort
|
|
# value: 30080
|