-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
provide ossmc capabilities for upstream olm metadata (#709)
This can be useful if OpenShift users want to use the upstream OLM metadata when installing the Kiali Operator. fixes: kiali/kiali#6788
- Loading branch information
1 parent
526faa3
commit 2a89b58
Showing
2 changed files
with
97 additions
and
0 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
25 changes: 25 additions & 0 deletions
25
manifests/kiali-upstream/1.76.0/manifests/ossmconsole.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,25 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: ossmconsoles.kiali.io | ||
labels: | ||
app: kiali-operator | ||
app.kubernetes.io/name: kiali-operator | ||
spec: | ||
group: kiali.io | ||
names: | ||
kind: OSSMConsole | ||
listKind: OSSMConsoleList | ||
plural: ossmconsoles | ||
singular: ossmconsole | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
schema: | ||
openAPIV3Schema: | ||
type: object | ||
x-kubernetes-preserve-unknown-fields: true |