Skip to content

Instantly share code, notes, and snippets.

@xlucasdemelo
Created April 2, 2020 15:06
Show Gist options
  • Save xlucasdemelo/9ff34b7d7dc9f575ed6e13a7deb87a14 to your computer and use it in GitHub Desktop.
Save xlucasdemelo/9ff34b7d7dc9f575ed6e13a7deb87a14 to your computer and use it in GitHub Desktop.
Kubernetes-service
apiVersion: apps/v1
kind: Deployment
metadata:
name: greetings-app
labels:
app: greetings-app
spec:
replicas: 3
selector:
matchLabels:
app: greetings-app
template:
metadata:
labels:
app: greetings-app
spec:
containers:
- name: greetings-app
image: xlucasdemelo/greetings:1
ports:
- containerPort: 8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment