Skip to content

Instantly share code, notes, and snippets.

@aashsach
Created June 12, 2024 13:16
Show Gist options
  • Save aashsach/06a5fc38c74433902b214672f4b4edbe to your computer and use it in GitHub Desktop.
Save aashsach/06a5fc38c74433902b214672f4b4edbe to your computer and use it in GitHub Desktop.
nginx deployment k8s
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
labels:
app: nginx
spec:
replicas: 1
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:god
ports:
- containerPort: 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment