Last active
November 20, 2022 06:54
-
-
Save mamachanko/608d99f47a6fd33fdf1aa5d8478c5628 to your computer and use it in GitHub Desktop.
carvel-ytt#769 recommended
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:data", "data") | |
#@ load("@ytt:yaml", "yaml") | |
#@ def config(): | |
cluster: #@ data.values.cluster.config | |
#@ end | |
--- | |
apiVersion: v1 | |
data: | |
config.yaml: #@ yaml.encode(config()) | |
kind: ConfigMap | |
metadata: | |
name: my-cm | |
namespace: default |
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
#@data/values | |
--- | |
cluster: | |
config: val |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment