Last active
January 14, 2020 13:26
-
-
Save tasdemirbahadir/791fa1fb07d521d87c55e237f49c3654 to your computer and use it in GitHub Desktop.
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: ${CI_PROJECT_NAME}-config | |
| namespace: mpc | |
| data: | |
| config.sample.url: 'http://sample-url.com' |
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: Secret | |
| metadata: | |
| name: ${CI_PROJECT_NAME}-secret | |
| namespace: mpc | |
| data: | |
| secret.sample.password: <base64-encoded-password-value> |
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: ${CI_PROJECT_NAME}-toggle | |
| namespace: mpc | |
| data: | |
| toggle.sample.switch: 'true' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment