Skip to content

Instantly share code, notes, and snippets.

@solev
Forked from chukaofili/echo-server.yml
Last active December 4, 2022 11:26
Show Gist options
  • Save solev/4ff8c43e0d003b99b76a99082196575c to your computer and use it in GitHub Desktop.
Save solev/4ff8c43e0d003b99b76a99082196575c to your computer and use it in GitHub Desktop.
Echo Server Deployment
apiVersion: apps/v1
kind: Deployment
metadata:
name: echoserver
spec:
replicas: 1
selector:
matchLabels:
app: echoserver
template:
metadata:
labels:
app: echoserver
spec:
containers:
- image: gcr.io/google-containers/echoserver:1.10
imagePullPolicy: Always
name: echoserver
ports:
- containerPort: 8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment