github.com/argoproj-labs/argocd-operator@v0.10.0/tests/k8s/1-023_validate_node_placement/03-assert.yaml (about) 1 apiVersion: apps/v1 2 kind: StatefulSet 3 metadata: 4 name: example-argocd-application-controller 5 spec: 6 template: 7 spec: 8 nodeSelector: 9 kubernetes.io/os: linux 10 key1: value1 11 tolerations: 12 - key: key1 13 operator: Equal 14 value: value1 15 effect: NoSchedule 16 --- 17 apiVersion: apps/v1 18 kind: Deployment 19 metadata: 20 name: example-argocd-redis 21 spec: 22 template: 23 spec: 24 nodeSelector: 25 kubernetes.io/os: linux 26 key1: value1 27 tolerations: 28 - key: key1 29 operator: Equal 30 value: value1 31 effect: NoSchedule 32 --- 33 apiVersion: apps/v1 34 kind: Deployment 35 metadata: 36 name: example-argocd-repo-server 37 spec: 38 template: 39 spec: 40 nodeSelector: 41 kubernetes.io/os: linux 42 key1: value1 43 tolerations: 44 - key: key1 45 operator: Equal 46 value: value1 47 effect: NoSchedule 48 49 --- 50 apiVersion: apps/v1 51 kind: Deployment 52 metadata: 53 name: example-argocd-server 54 spec: 55 template: 56 spec: 57 nodeSelector: 58 kubernetes.io/os: linux 59 key1: value1 60 tolerations: 61 - key: key1 62 operator: Equal 63 value: value1 64 effect: NoSchedule