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: docs/api-reference/olmv1-api-reference.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -344,6 +344,7 @@ _Appears in:_
344
344
|`source`_[SourceConfig](#sourceconfig)_| source is required and selects the installation source of content for this ClusterExtension.<br />Set the sourceType field to perform the selection.<br />Catalog is currently the only implemented sourceType.<br />Setting sourceType to "Catalog" requires the catalog field to also be defined.<br />Below is a minimal example of a source definition (in yaml):<br />source:<br /> sourceType: Catalog<br /> catalog:<br /> packageName: example-package || Required: \{\} <br /> |
345
345
|`install`_[ClusterExtensionInstallConfig](#clusterextensioninstallconfig)_| install is optional and configures installation options for the ClusterExtension,<br />such as the pre-flight check configuration. |||
346
346
|`config`_[ClusterExtensionConfig](#clusterextensionconfig)_| config is optional and specifies bundle-specific configuration.<br />Configuration is bundle-specific and a bundle may provide a configuration schema.<br />When not specified, the default configuration of the resolved bundle is used.<br />config is validated against a configuration schema provided by the resolved bundle. If the bundle does not provide<br />a configuration schema the bundle is deemed to not be configurable. More information on how<br />to configure bundles can be found in the OLM documentation associated with your current OLM version. |||
347
+
|`progressDeadlineMinutes`_integer_| progressDeadlineMinutes is an optional field that defines the maximum period<br />of time in minutes after which an installation should be considered failed and<br />require manual intervention. This functionality is disabled when no value<br />is provided. The minimum period is 10 minutes, and the maximum is 720 minutes (12 hours).<br /><opcon:experimental>|| Maximum: 720 <br />Minimum: 10 <br /> |
Copy file name to clipboardExpand all lines: helm/olmv1/base/operator-controller/crd/experimental/olm.operatorframework.io_clusterextensionrevisions.yaml
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -166,6 +166,16 @@ spec:
166
166
x-kubernetes-validations:
167
167
- message: phases is immutable
168
168
rule: self == oldSelf || oldSelf.size() == 0
169
+
progressDeadlineMinutes:
170
+
description: |-
171
+
progressDeadlineMinutes is an optional field that defines the maximum period
172
+
of time in minutes after which an installation should be considered failed and
173
+
require manual intervention. This functionality is disabled when no value
174
+
is provided. The minimum period is 10 minutes, and the maximum is 720 minutes (12 hours).
175
+
format: int32
176
+
maximum: 720
177
+
minimum: 10
178
+
type: integer
169
179
revision:
170
180
description: |-
171
181
revision is a required, immutable sequence number representing a specific revision
0 commit comments