Skip to content

Instantly share code, notes, and snippets.

@uurtech
Created January 30, 2024 10:10
Show Gist options
  • Save uurtech/7a53e26b0b8eeab59b5c62d8cf0f0590 to your computer and use it in GitHub Desktop.
Save uurtech/7a53e26b0b8eeab59b5c62d8cf0f0590 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
spec:
replicas: 3
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80
readinessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 10
periodSeconds: 5
timeoutSeconds: 3
failureThreshold: 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment