Skip to content

Instantly share code, notes, and snippets.

@jkinkead
Created September 7, 2017 20:57
Show Gist options
  • Save jkinkead/be65d7bba6c2be0b5ec8bba3daff9dee to your computer and use it in GitHub Desktop.
Save jkinkead/be65d7bba6c2be0b5ec8bba3daff9dee to your computer and use it in GitHub Desktop.
HTTP echo server Deployment
kind: Deployment
metadata:
name: echo-service
labels:
application: echo-service
spec:
replicas: 1
template:
metadata:
labels:
application: echo-service
spec:
containers:
- name: echo-service
image: brndnmtthws/nginx-echo-headers:latest
ports:
- containerPort: 8080
# This name will be used in the Service.
name: backend-http
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment