Guest User

Untitled

a guest
May 11th, 2021
953
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. name: pingtest
  5. namespace: pingtest
  6. spec:
  7. selector:
  8. matchLabels:
  9. app: pingtest
  10. replicas: 4
  11. template:
  12. metadata:
  13. labels:
  14. app: pingtest
  15. spec:
  16. affinity:
  17. podAntiAffinity:
  18. requiredDuringSchedulingIgnoredDuringExecution:
  19. - labelSelector:
  20. matchExpressions:
  21. - key: app
  22. operator: In
  23. values:
  24. - pingtest
  25. topologyKey: "kubernetes.io/hostname"
  26. containers:
  27. - name: busybox
  28. image: busybox
  29. command: ["/bin/sh", "-ec", "sleep 1000"]
Advertisement
Add Comment
Please, Sign In to add comment