You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crds/operators.coreos.com_catalogsources.yaml
+35
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,41 @@ spec:
67
67
displayName:
68
68
description: Metadata
69
69
type: string
70
+
grpcPodConfig:
71
+
description: GrpcPodConfig exposes different overrides for the pod spec of the CatalogSource Pod. Only used when SourceType = SourceTypeGrpc and Image is set.
72
+
type: object
73
+
properties:
74
+
nodeSelector:
75
+
description: NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node.
76
+
type: object
77
+
additionalProperties:
78
+
type: string
79
+
priorityClassName:
80
+
description: If specified, indicates the pod's priority. If not specified, the pod priority will be default or zero if there is no default.
81
+
type: string
82
+
tolerations:
83
+
description: Tolerations are the catalog source's pod's tolerations.
84
+
type: array
85
+
items:
86
+
description: The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.
87
+
type: object
88
+
properties:
89
+
effect:
90
+
description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
91
+
type: string
92
+
key:
93
+
description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.
94
+
type: string
95
+
operator:
96
+
description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.
97
+
type: string
98
+
tolerationSeconds:
99
+
description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.
100
+
type: integer
101
+
format: int64
102
+
value:
103
+
description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.
0 commit comments