Created
February 28, 2021 05:33
-
-
Save making/5875519ce58d8a7060e9c533159e83d1 to your computer and use it in GitHub Desktop.
全リソースのnamespaceを設定したい
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#@ load("@ytt:overlay", "overlay") | |
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: demo | |
#@overlay/match by=overlay.not_op(overlay.subset({"kind":"Namespace"})),expects="1+" | |
--- | |
metadata: | |
#@overlay/match missing_ok=True | |
namespace: demo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment