Created
November 5, 2024 20:55
-
-
Save jsturtevant/a3601b4d1d41aa3eb99669c7675dc52e to your computer and use it in GitHub Desktop.
windows guaranteed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: test-affinity | |
spec: | |
nodeName: james-ms | |
containers: | |
- name: test-affinity | |
imagePullPolicy: Always | |
image: registry.k8s.io/e2e-test-images/busybox:1.36.1-1 | |
command: | |
- sleep | |
- "3600" | |
resources: | |
limits: | |
memory: "500Mi" | |
cpu: "4" | |
requests: | |
memory: "500Mi" | |
cpu: "4" | |
restartPolicy: Always | |
nodeSelector: | |
"kubernetes.io/os": windows |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment