Created
February 28, 2021 05:36
-
-
Save making/220a2d9f065d8275dd93d111c2cc10dd to your computer and use it in GitHub Desktop.
ConfigMapのdataの値に追記したい
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: v1 | |
kind: ConfigMap | |
metadata: | |
name: demo | |
data: | |
demo.conf: | | |
[INPUT] | |
Name cpu | |
Tag my_cpu |
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") | |
#@overlay/match by=overlay.subset({"kind":"ConfigMap","metadata":{"name":"demo"}}) | |
--- | |
data: | |
#@overlay/replace via=lambda left, right: "{}\n\n{}".format(left, right) | |
demo.conf: | | |
[OUTPUT] | |
Name stdout | |
Match my_mem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment