Created
January 12, 2018 14:08
-
-
Save bobbytables/734feb39fa2fa6c60bec0dadd2da8adf to your computer and use it in GitHub Desktop.
Example of ConfigMaps and PodSpecs
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 | |
| data: | |
| endpoint_deadline: 5s | |
| listen_addr: "0.0.0.0" | |
| listen_port: "50051" | |
| metadata: | |
| name: heimdall | |
| 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
| env: | |
| - name: LISTEN_ADDR | |
| valueFrom: | |
| configMapKeyRef: | |
| name: heimdall | |
| key: listen_addr | |
| - name: LISTEN_PORT | |
| valueFrom: | |
| configMapKeyRef: | |
| name: heimdall | |
| key: listen_port |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment