Skip to content

Commit f2069ed

Browse files
operator konveyor-operator (0.8.0-beta.4)
1 parent a93032a commit f2069ed

File tree

7 files changed

+3418
-0
lines changed

7 files changed

+3418
-0
lines changed

operators/konveyor-operator/0.8.0-beta.4/manifests/konveyor-operator.clusterserviceversion.yaml

Lines changed: 561 additions & 0 deletions
Large diffs are not rendered by default.

operators/konveyor-operator/0.8.0-beta.4/manifests/tackle.konveyor.io_addons.yaml

Lines changed: 1366 additions & 0 deletions
Large diffs are not rendered by default.

operators/konveyor-operator/0.8.0-beta.4/manifests/tackle.konveyor.io_extensions.yaml

Lines changed: 1270 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
annotations:
5+
controller-gen.kubebuilder.io/version: v0.10.0
6+
creationTimestamp: null
7+
name: schemas.tackle.konveyor.io
8+
spec:
9+
group: tackle.konveyor.io
10+
names:
11+
kind: Schema
12+
listKind: SchemaList
13+
plural: schemas
14+
singular: schema
15+
scope: Namespaced
16+
versions:
17+
- name: v1alpha1
18+
schema:
19+
openAPIV3Schema:
20+
description: Schema defines json document schemas.
21+
properties:
22+
apiVersion:
23+
description: 'APIVersion defines the versioned schema of this representation
24+
of an object. Servers should convert recognized schemas to the latest
25+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
26+
type: string
27+
kind:
28+
description: 'Kind is a string value representing the REST resource this
29+
object represents. Servers may infer this from the endpoint the client
30+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
31+
type: string
32+
metadata:
33+
type: object
34+
spec:
35+
description: SchemaSpec defines the desired state of the resource.
36+
properties:
37+
domain:
38+
description: Domain
39+
type: string
40+
subject:
41+
description: Subject
42+
type: string
43+
variant:
44+
description: Variant
45+
type: string
46+
versions:
47+
description: Versions
48+
items:
49+
description: SchemaVersion defines each version of a schema.
50+
properties:
51+
definition:
52+
description: Definition is the (jsd) json-schema definition.
53+
type: object
54+
x-kubernetes-preserve-unknown-fields: true
55+
migration:
56+
description: Migration defines a yq query to migrate the document.
57+
type: string
58+
required:
59+
- definition
60+
type: object
61+
type: array
62+
required:
63+
- domain
64+
- subject
65+
- variant
66+
- versions
67+
type: object
68+
status:
69+
description: SchemaStatus defines the observed state of the resource.
70+
properties:
71+
observedGeneration:
72+
description: The most recent generation observed by the controller.
73+
format: int64
74+
type: integer
75+
type: object
76+
required:
77+
- spec
78+
type: object
79+
served: true
80+
storage: true
81+
subresources:
82+
status: {}
83+
status:
84+
acceptedNames:
85+
kind: ""
86+
plural: ""
87+
conditions: null
88+
storedVersions: null
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
annotations:
5+
controller-gen.kubebuilder.io/version: v0.10.0
6+
creationTimestamp: null
7+
name: tackles.tackle.konveyor.io
8+
spec:
9+
group: tackle.konveyor.io
10+
names:
11+
kind: Tackle
12+
listKind: TackleList
13+
plural: tackles
14+
singular: tackle
15+
scope: Namespaced
16+
versions:
17+
- name: v1alpha1
18+
schema:
19+
openAPIV3Schema:
20+
description: Tackle defines a tackle application.
21+
properties:
22+
apiVersion:
23+
description: 'APIVersion defines the versioned schema of this representation
24+
of an object. Servers should convert recognized schemas to the latest
25+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
26+
type: string
27+
kind:
28+
description: 'Kind is a string value representing the REST resource this
29+
object represents. Servers may infer this from the endpoint the client
30+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
31+
type: string
32+
metadata:
33+
type: object
34+
spec:
35+
description: Spec defines the desired state of the resource.
36+
type: object
37+
x-kubernetes-preserve-unknown-fields: true
38+
status:
39+
description: Status defines the observed state of the resource.
40+
type: object
41+
x-kubernetes-preserve-unknown-fields: true
42+
type: object
43+
served: true
44+
storage: true
45+
subresources:
46+
status: {}
47+
status:
48+
acceptedNames:
49+
kind: ""
50+
plural: ""
51+
conditions: null
52+
storedVersions: null
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
annotations:
5+
controller-gen.kubebuilder.io/version: v0.10.0
6+
creationTimestamp: null
7+
name: tasks.tackle.konveyor.io
8+
spec:
9+
group: tackle.konveyor.io
10+
names:
11+
kind: Task
12+
listKind: TaskList
13+
plural: tasks
14+
singular: task
15+
scope: Namespaced
16+
versions:
17+
- name: v1alpha1
18+
schema:
19+
openAPIV3Schema:
20+
description: Task defines a hub task.
21+
properties:
22+
apiVersion:
23+
description: 'APIVersion defines the versioned schema of this representation
24+
of an object. Servers should convert recognized schemas to the latest
25+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
26+
type: string
27+
kind:
28+
description: 'Kind is a string value representing the REST resource this
29+
object represents. Servers may infer this from the endpoint the client
30+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
31+
type: string
32+
metadata:
33+
type: object
34+
spec:
35+
description: Spec defines the desired state the resource.
36+
properties:
37+
data:
38+
description: Data object passed to the addon.
39+
type: object
40+
x-kubernetes-preserve-unknown-fields: true
41+
dependencies:
42+
description: Dependencies defines a list of task names on which this
43+
task depends.
44+
items:
45+
type: string
46+
type: array
47+
priority:
48+
description: Priority defines the task priority (0-n).
49+
type: integer
50+
type: object
51+
status:
52+
description: Status defines the observed state the resource.
53+
properties:
54+
observedGeneration:
55+
description: The most recent generation observed by the controller.
56+
format: int64
57+
type: integer
58+
type: object
59+
type: object
60+
served: true
61+
storage: true
62+
subresources:
63+
status: {}
64+
status:
65+
acceptedNames:
66+
kind: ""
67+
plural: ""
68+
conditions: null
69+
storedVersions: null
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
annotations:
2+
# Core bundle annotations.
3+
operators.operatorframework.io.bundle.mediatype.v1: registry+v1
4+
operators.operatorframework.io.bundle.manifests.v1: manifests/
5+
operators.operatorframework.io.bundle.metadata.v1: metadata/
6+
operators.operatorframework.io.bundle.package.v1: konveyor-operator
7+
operators.operatorframework.io.bundle.channels.v1: beta
8+
operators.operatorframework.io.bundle.channel.default.v1: beta
9+
operators.operatorframework.io.metrics.builder: operator-sdk-v1.35.0
10+
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
11+
operators.operatorframework.io.metrics.project_layout: ansible.sdk.operatorframework.io/v1
12+
com.redhat.openshift.versions: "v4.9"

0 commit comments

Comments
 (0)