Created
May 22, 2020 20:27
-
-
Save cppforlife/762908f90b13b308726c6b069d0868cf to your computer and use it in GitHub Desktop.
append args
This file contains 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
kind: Deployment | |
containers: | |
- name: first | |
args: | |
- something | |
- name: second | |
args: | |
- something | |
- second |
This file contains 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": "Deployment"}) | |
--- | |
containers: | |
#@overlay/match by=overlay.subset({"name": "second"}) | |
- args: | |
#@overlay/append | |
- third |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment