-
Notifications
You must be signed in to change notification settings - Fork 544
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(subscriptions): requeue dependent Subscriptions on CatalogSource
sync
- Loading branch information
Showing
83 changed files
with
2,054 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
deploy/ocp/manifests/0.8.0/0000_30_13-operatorgroup.crd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
--- | ||
# Source: olm/templates/0000_30_13-operatorgroup.crd.yaml | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: operatorgroups.operators.coreos.com | ||
spec: | ||
group: operators.coreos.com | ||
version: v1alpha2 | ||
versions: | ||
- name: v1alpha2 | ||
served: true | ||
storage: true | ||
names: | ||
plural: operatorgroups | ||
singular: operatorgroup | ||
kind: OperatorGroup | ||
listKind: OperatorGroupList | ||
scope: Namespaced | ||
subresources: | ||
# status enables the status subresource. | ||
status: {} | ||
validation: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
selector: | ||
type: object | ||
description: Label selector to find resources associated with or managed by the operator | ||
properties: | ||
matchLabels: | ||
type: object | ||
description: Label key:value pairs to match directly | ||
matchExpressions: | ||
type: array | ||
description: A set of expressions to match against the resource. | ||
items: | ||
allOf: | ||
- type: object | ||
required: | ||
- key | ||
- operator | ||
- values | ||
properties: | ||
key: | ||
type: string | ||
description: the key to match | ||
operator: | ||
type: string | ||
description: the operator for the expression | ||
enum: | ||
- In | ||
- NotIn | ||
- Exists | ||
- DoesNotExist | ||
values: | ||
type: array | ||
description: set of values for the expression | ||
serviceAccountName: | ||
type: string | ||
required: | ||
- selector | ||
type: object | ||
status: | ||
properties: | ||
lastUpdated: | ||
format: date-time | ||
type: string | ||
namespaces: | ||
items: | ||
type: string | ||
type: array | ||
required: | ||
- namespaces | ||
- lastUpdated | ||
type: object | ||
required: | ||
- metadata |
Oops, something went wrong.