Skip to content

Instantly share code, notes, and snippets.

@bgulla
Created April 8, 2020 02:58
Show Gist options
  • Save bgulla/3f04a7f18dc5a187c91e8cf506a66ff7 to your computer and use it in GitHub Desktop.
Save bgulla/3f04a7f18dc5a187c91e8cf506a66ff7 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx
spec:
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1
ports:
- name: http
containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: nginx
spec:
ports:
- name: http
port: 80
protocol: TCP
targetPort: 80
selector:
app: nginx
type: LoadBalancer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment