Skip to content

Commit 5a57a1f

Browse files
authored
release odh 2.27.0 (redhat-openshift-ecosystem#6361)
Signed-off-by: AjayJagan <[email protected]> rh-pre-commit.version: 2.3.2 rh-pre-commit.check-secrets: ENABLED
1 parent 6623be9 commit 5a57a1f

25 files changed

+6020
-0
lines changed
Lines changed: 174 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
annotations:
5+
controller-gen.kubebuilder.io/version: v0.16.1
6+
creationTimestamp: null
7+
name: codeflares.components.platform.opendatahub.io
8+
spec:
9+
group: components.platform.opendatahub.io
10+
names:
11+
kind: CodeFlare
12+
listKind: CodeFlareList
13+
plural: codeflares
14+
singular: codeflare
15+
scope: Cluster
16+
versions:
17+
- additionalPrinterColumns:
18+
- description: Ready
19+
jsonPath: .status.conditions[?(@.type=="Ready")].status
20+
name: Ready
21+
type: string
22+
- description: Reason
23+
jsonPath: .status.conditions[?(@.type=="Ready")].reason
24+
name: Reason
25+
type: string
26+
name: v1alpha1
27+
schema:
28+
openAPIV3Schema:
29+
description: CodeFlare is the Schema for the codeflares API
30+
properties:
31+
apiVersion:
32+
description: |-
33+
APIVersion defines the versioned schema of this representation of an object.
34+
Servers should convert recognized schemas to the latest internal value, and
35+
may reject unrecognized values.
36+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
37+
type: string
38+
kind:
39+
description: |-
40+
Kind is a string value representing the REST resource this object represents.
41+
Servers may infer this from the endpoint the client submits requests to.
42+
Cannot be updated.
43+
In CamelCase.
44+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
45+
type: string
46+
metadata:
47+
type: object
48+
spec:
49+
properties:
50+
devFlags:
51+
description: Add developer fields
52+
properties:
53+
manifests:
54+
description: List of custom manifests for the given component
55+
items:
56+
properties:
57+
contextDir:
58+
default: manifests
59+
description: contextDir is the relative path to the folder
60+
containing manifests in a repository, default value "manifests"
61+
type: string
62+
sourcePath:
63+
default: ""
64+
description: 'sourcePath is the subpath within contextDir
65+
where kustomize builds start. Examples include any sub-folder
66+
or path: `base`, `overlays/dev`, `default`, `odh` etc.'
67+
type: string
68+
uri:
69+
default: ""
70+
description: uri is the URI point to a git repo with tag/branch.
71+
e.g. https://github.com/org/repo/tarball/<tag/branch>
72+
type: string
73+
type: object
74+
type: array
75+
type: object
76+
type: object
77+
status:
78+
description: CodeFlareStatus defines the observed state of CodeFlare
79+
properties:
80+
conditions:
81+
items:
82+
properties:
83+
lastHeartbeatTime:
84+
description: |-
85+
The last time we got an update on a given condition, this should not be set and is
86+
present only for backward compatibility reasons
87+
format: date-time
88+
type: string
89+
lastTransitionTime:
90+
description: |-
91+
lastTransitionTime is the last time the condition transitioned from one status to another.
92+
This should be when the underlying condition changed.
93+
If that is not known, then using the time when the API field changed is acceptable.
94+
format: date-time
95+
type: string
96+
message:
97+
description: message is a human-readable message indicating
98+
details about the transition.
99+
type: string
100+
observedGeneration:
101+
description: |-
102+
observedGeneration represents the .metadata.generation that the condition was set based upon.
103+
For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration
104+
is 9, the condition is out of date with respect to the current state of the instance.
105+
format: int64
106+
minimum: 0
107+
type: integer
108+
reason:
109+
description: |-
110+
reason contains a programmatic identifier indicating the reason for the condition's last transition.
111+
The value should be a CamelCase string.
112+
type: string
113+
severity:
114+
description: |-
115+
Severity with which to treat failures of this type of condition.
116+
When this is not specified, it defaults to Error.
117+
type: string
118+
status:
119+
description: status of the condition, one of True, False, Unknown.
120+
enum:
121+
- "True"
122+
- "False"
123+
- Unknown
124+
type: string
125+
type:
126+
description: type of condition in CamelCase or in foo.example.com/CamelCase.
127+
maxLength: 316
128+
pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$
129+
type: string
130+
required:
131+
- status
132+
- type
133+
type: object
134+
type: array
135+
x-kubernetes-list-type: atomic
136+
observedGeneration:
137+
description: The generation observed by the resource controller.
138+
format: int64
139+
type: integer
140+
phase:
141+
type: string
142+
releases:
143+
items:
144+
description: ComponentRelease represents the detailed status of
145+
a component release.
146+
properties:
147+
name:
148+
type: string
149+
repoUrl:
150+
type: string
151+
version:
152+
type: string
153+
required:
154+
- name
155+
type: object
156+
type: array
157+
x-kubernetes-list-map-keys:
158+
- name
159+
x-kubernetes-list-type: map
160+
type: object
161+
type: object
162+
x-kubernetes-validations:
163+
- message: CodeFlare name must be default-codeflare
164+
rule: self.metadata.name == 'default-codeflare'
165+
served: true
166+
storage: true
167+
subresources:
168+
status: {}
169+
status:
170+
acceptedNames:
171+
kind: ""
172+
plural: ""
173+
conditions: null
174+
storedVersions: null
Lines changed: 163 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
annotations:
5+
controller-gen.kubebuilder.io/version: v0.16.1
6+
creationTimestamp: null
7+
name: dashboards.components.platform.opendatahub.io
8+
spec:
9+
group: components.platform.opendatahub.io
10+
names:
11+
kind: Dashboard
12+
listKind: DashboardList
13+
plural: dashboards
14+
singular: dashboard
15+
scope: Cluster
16+
versions:
17+
- additionalPrinterColumns:
18+
- description: Ready
19+
jsonPath: .status.conditions[?(@.type=="Ready")].status
20+
name: Ready
21+
type: string
22+
- description: Reason
23+
jsonPath: .status.conditions[?(@.type=="Ready")].reason
24+
name: Reason
25+
type: string
26+
- description: URL
27+
jsonPath: .status.url
28+
name: URL
29+
type: string
30+
name: v1alpha1
31+
schema:
32+
openAPIV3Schema:
33+
description: Dashboard is the Schema for the dashboards API
34+
properties:
35+
apiVersion:
36+
description: |-
37+
APIVersion defines the versioned schema of this representation of an object.
38+
Servers should convert recognized schemas to the latest internal value, and
39+
may reject unrecognized values.
40+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
41+
type: string
42+
kind:
43+
description: |-
44+
Kind is a string value representing the REST resource this object represents.
45+
Servers may infer this from the endpoint the client submits requests to.
46+
Cannot be updated.
47+
In CamelCase.
48+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
49+
type: string
50+
metadata:
51+
type: object
52+
spec:
53+
description: DashboardSpec defines the desired state of Dashboard
54+
properties:
55+
devFlags:
56+
description: Add developer fields
57+
properties:
58+
manifests:
59+
description: List of custom manifests for the given component
60+
items:
61+
properties:
62+
contextDir:
63+
default: manifests
64+
description: contextDir is the relative path to the folder
65+
containing manifests in a repository, default value "manifests"
66+
type: string
67+
sourcePath:
68+
default: ""
69+
description: 'sourcePath is the subpath within contextDir
70+
where kustomize builds start. Examples include any sub-folder
71+
or path: `base`, `overlays/dev`, `default`, `odh` etc.'
72+
type: string
73+
uri:
74+
default: ""
75+
description: uri is the URI point to a git repo with tag/branch.
76+
e.g. https://github.com/org/repo/tarball/<tag/branch>
77+
type: string
78+
type: object
79+
type: array
80+
type: object
81+
type: object
82+
status:
83+
description: DashboardStatus defines the observed state of Dashboard
84+
properties:
85+
conditions:
86+
items:
87+
properties:
88+
lastHeartbeatTime:
89+
description: |-
90+
The last time we got an update on a given condition, this should not be set and is
91+
present only for backward compatibility reasons
92+
format: date-time
93+
type: string
94+
lastTransitionTime:
95+
description: |-
96+
lastTransitionTime is the last time the condition transitioned from one status to another.
97+
This should be when the underlying condition changed.
98+
If that is not known, then using the time when the API field changed is acceptable.
99+
format: date-time
100+
type: string
101+
message:
102+
description: message is a human-readable message indicating
103+
details about the transition.
104+
type: string
105+
observedGeneration:
106+
description: |-
107+
observedGeneration represents the .metadata.generation that the condition was set based upon.
108+
For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration
109+
is 9, the condition is out of date with respect to the current state of the instance.
110+
format: int64
111+
minimum: 0
112+
type: integer
113+
reason:
114+
description: |-
115+
reason contains a programmatic identifier indicating the reason for the condition's last transition.
116+
The value should be a CamelCase string.
117+
type: string
118+
severity:
119+
description: |-
120+
Severity with which to treat failures of this type of condition.
121+
When this is not specified, it defaults to Error.
122+
type: string
123+
status:
124+
description: status of the condition, one of True, False, Unknown.
125+
enum:
126+
- "True"
127+
- "False"
128+
- Unknown
129+
type: string
130+
type:
131+
description: type of condition in CamelCase or in foo.example.com/CamelCase.
132+
maxLength: 316
133+
pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$
134+
type: string
135+
required:
136+
- status
137+
- type
138+
type: object
139+
type: array
140+
x-kubernetes-list-type: atomic
141+
observedGeneration:
142+
description: The generation observed by the resource controller.
143+
format: int64
144+
type: integer
145+
phase:
146+
type: string
147+
url:
148+
type: string
149+
type: object
150+
type: object
151+
x-kubernetes-validations:
152+
- message: Dashboard name must be default-dashboard
153+
rule: self.metadata.name == 'default-dashboard'
154+
served: true
155+
storage: true
156+
subresources:
157+
status: {}
158+
status:
159+
acceptedNames:
160+
kind: ""
161+
plural: ""
162+
conditions: null
163+
storedVersions: null

0 commit comments

Comments
 (0)