Skip to content

Instantly share code, notes, and snippets.

@jsturtevant
Created October 1, 2021 22:14
Show Gist options
  • Save jsturtevant/c4fbae390b06450bb188520864b66cdd to your computer and use it in GitHub Desktop.
Save jsturtevant/c4fbae390b06450bb188520864b66cdd to your computer and use it in GitHub Desktop.
ask sample
apiVersion: apps/v1
kind: Deployment
metadata:
name: sample
labels:
app: sample
spec:
replicas: 1
template:
metadata:
name: sample
labels:
app: sample
spec:
nodeSelector:
"kubernetes.io/os": windows
containers:
- name: sample
image: mcr.microsoft.com/dotnet/framework/samples:aspnetapp
resources:
limits:
cpu: 1
memory: 800M
requests:
cpu: .1
memory: 300M
ports:
- containerPort: 80
selector:
matchLabels:
app: sample
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment