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: manifests/0000_50_olm_00-catalogsources.crd.yaml
+35Lines changed: 35 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -70,6 +70,41 @@ spec:
70
70
displayName:
71
71
description: Metadata
72
72
type: string
73
+
grpcPodConfig:
74
+
description: GrpcPodConfig exposes different overrides for the pod spec of the CatalogSource Pod. Only used when SourceType = SourceTypeGrpc and Image is set.
75
+
type: object
76
+
properties:
77
+
nodeSelector:
78
+
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.
79
+
type: object
80
+
additionalProperties:
81
+
type: string
82
+
priorityClassName:
83
+
description: If specified, indicates the pod's priority. If not specified, the pod priority will be default or zero if there is no default.
84
+
type: string
85
+
tolerations:
86
+
description: Tolerations are the catalog source's pod's tolerations.
87
+
type: array
88
+
items:
89
+
description: The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.
90
+
type: object
91
+
properties:
92
+
effect:
93
+
description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
94
+
type: string
95
+
key:
96
+
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.
97
+
type: string
98
+
operator:
99
+
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.
100
+
type: string
101
+
tolerationSeconds:
102
+
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.
103
+
type: integer
104
+
format: int64
105
+
value:
106
+
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.
description: OLMConfig is a resource responsible for configuring OLM.
26
+
type: object
27
+
required:
28
+
- metadata
29
+
properties:
30
+
apiVersion:
31
+
description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
32
+
type: string
33
+
kind:
34
+
description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
35
+
type: string
36
+
metadata:
37
+
type: object
38
+
spec:
39
+
description: OLMConfigSpec is the spec for an OLMConfig resource.
40
+
type: object
41
+
properties:
42
+
features:
43
+
description: Features contains the list of configurable OLM features.
44
+
type: object
45
+
properties:
46
+
disableCopiedCSVs:
47
+
description: DisableCopiedCSVs is used to disable OLM's "Copied CSV" feature for operators installed at the cluster scope, where a cluster scoped operator is one that has been installed in an OperatorGroup that targets all namespaces. When reenabled, OLM will recreate the "Copied CSVs" for each cluster scoped operator.
48
+
type: boolean
49
+
status:
50
+
description: OLMConfigStatus is the status for an OLMConfig resource.
51
+
type: object
52
+
properties:
53
+
conditions:
54
+
type: array
55
+
items:
56
+
description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` \n // other fields }"
57
+
type: object
58
+
required:
59
+
- lastTransitionTime
60
+
- message
61
+
- reason
62
+
- status
63
+
- type
64
+
properties:
65
+
lastTransitionTime:
66
+
description: lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.
67
+
type: string
68
+
format: date-time
69
+
message:
70
+
description: message is a human readable message indicating details about the transition. This may be an empty string.
71
+
type: string
72
+
maxLength: 32768
73
+
observedGeneration:
74
+
description: observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.
75
+
type: integer
76
+
format: int64
77
+
minimum: 0
78
+
reason:
79
+
description: reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.
80
+
type: string
81
+
maxLength: 1024
82
+
minLength: 1
83
+
pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$
84
+
status:
85
+
description: status of the condition, one of True, False, Unknown.
86
+
type: string
87
+
enum:
88
+
- "True"
89
+
- "False"
90
+
- Unknown
91
+
type:
92
+
description: type of condition in CamelCase or in foo.example.com/CamelCase. --- Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be useful (see .node.status.conditions), the ability to deconflict is important. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
0 commit comments