Created
August 20, 2018 06:02
-
-
Save matthewpalmer/d70ca836c7d7c5da37660923915d9526 to your computer and use it in GitHub Desktop.
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: Pod | |
apiVersion: v1 | |
metadata: | |
name: banana-app | |
labels: | |
app: banana | |
spec: | |
containers: | |
- name: banana-app | |
image: hashicorp/http-echo | |
args: | |
- "-text=banana" | |
--- | |
kind: Service | |
apiVersion: v1 | |
metadata: | |
name: banana-service | |
spec: | |
selector: | |
app: banana | |
ports: | |
- port: 5678 # Default port for image |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment