Skip to content

Instantly share code, notes, and snippets.

@daveRendon
Created January 18, 2024 20:24
Show Gist options
  • Select an option

  • Save daveRendon/335121eb6c0430cb8b497dd1bdfcd083 to your computer and use it in GitHub Desktop.

Select an option

Save daveRendon/335121eb6c0430cb8b497dd1bdfcd083 to your computer and use it in GitHub Desktop.
nginx-service-sample
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
spec:
selector:
matchLabels:
app: nginx
replicas: 2 # tells deployment to run 2 pods matching the template
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: nginx-service
spec:
selector:
app: nginx
ports:
- protocol: TCP
port: 80
targetPort: 80
type: LoadBalancer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment