Last active
September 18, 2022 10:28
-
-
Save josephrodriguez/265cc4e97b6fc04449733a5180976ba1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: pod-affinity-1 | |
spec: | |
affinity: | |
nodeAffinity: | |
requiredDuringSchedulingIgnoredDuringExecution: | |
nodeSelectorTerms: | |
- matchExpressions: | |
- key: kubernetes.io/os | |
operator: In | |
values: | |
- windows | |
containers: | |
- name: springboot | |
image: josephrodriguez/springboot-starterkit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment