Last active
December 20, 2019 14:07
-
-
Save vishnuhd/87d34385101adb97246e707651532f83 to your computer and use it in GitHub Desktop.
Test pod to quickly test scenarios
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: nginx | |
labels: | |
env: test | |
spec: | |
containers: | |
- name: nginx | |
image: nginx | |
tolerations: | |
- key: "dedicated" | |
value: "monitoring" | |
operator: "Equal" | |
effect: "NoSchedule" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment