Skip to content

Instantly share code, notes, and snippets.

@making
Created February 28, 2021 05:31
Show Gist options
  • Save making/44747e4e24639efb12cf382cb5dd0508 to your computer and use it in GitHub Desktop.
Save making/44747e4e24639efb12cf382cb5dd0508 to your computer and use it in GitHub Desktop.
フラグを有効にした場合のみリソースを追加したい
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: demo
name: demo
spec:
replicas: 1
selector:
matchLabels:
app: demo
template:
metadata:
labels:
app: demo
spec:
containers:
- image: ghcr.io/making/hello-tanzu
name: hello-tanzu
#@ load("@ytt:data", "data")
#@ if data.values.ingress.enabled:
apiVersion: networking.k8s.io/v1
kind: Ingress
spec: {}
#@ end
#@data/values
---
ingress:
enabled: True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment