Created
October 14, 2019 19:16
-
-
Save coryodaniel/5b5bd156fe09d83fafdb7860152b0f97 to your computer and use it in GitHub Desktop.
Kustomize JSON Patch container args
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
--- | |
[ | |
{ | |
"op": "add", | |
"path": "/spec/template/spec/containers/0/args/-", | |
"value": "--dns01-self-check-nameservers" | |
}, | |
{ | |
"op": "add", | |
"path": "/spec/template/spec/containers/0/args/-", | |
"value": "8.8.8.8:53,1.1.1.1:53" | |
}, | |
{ | |
"op": "add", | |
"path": "/spec/template/spec/containers/0/args/-", | |
"value": "--default-issuer-name=letsencrypt-prod" | |
}, | |
{ | |
"op": "add", | |
"path": "/spec/template/spec/containers/0/args/-", | |
"value": "--default-issuer-kind=ClusterIssuer" | |
} | |
] |
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
--- | |
patchesJson6902: | |
- target: | |
group: apps | |
version: v1 | |
kind: Deployment | |
name: cert-manager | |
namespace: cert-manager | |
path: patch.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment