Skip to content

Instantly share code, notes, and snippets.

@phenixita
Created July 6, 2021 10:05
Show Gist options
  • Save phenixita/9062c972353e359c509d7def89fa7b95 to your computer and use it in GitHub Desktop.
Save phenixita/9062c972353e359c509d7def89fa7b95 to your computer and use it in GitHub Desktop.
Nginx for aks
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx
spec:
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:latest
resources:
limits:
memory: "128Mi"
cpu: "500m"
ports:
- containerPort: 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment