31 lines
610 B
YAML
31 lines
610 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- ../../base
|
|
|
|
patches:
|
|
# Gateway as NodePort for local access
|
|
- target:
|
|
kind: Service
|
|
name: gateway
|
|
patch: |
|
|
- op: replace
|
|
path: /spec/type
|
|
value: NodePort
|
|
- op: add
|
|
path: /spec/ports/0/nodePort
|
|
value: 30080
|
|
|
|
# Redis as NodePort for redis-cli access from host
|
|
- target:
|
|
kind: Service
|
|
name: redis
|
|
patch: |
|
|
- op: replace
|
|
path: /spec/type
|
|
value: NodePort
|
|
- op: add
|
|
path: /spec/ports/0/nodePort
|
|
value: 30379
|