deploy-templates/crds/v2.edp.epam.com_quicklinks.yaml (75 lines of code) (raw):
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.15.0
name: quicklinks.v2.edp.epam.com
spec:
group: v2.edp.epam.com
names:
kind: QuickLink
listKind: QuickLinkList
plural: quicklinks
singular: quicklink
scope: Namespaced
versions:
- name: v1
schema:
openAPIV3Schema:
description: QuickLink is the Schema for the quicklinks API.
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: QuickLinkSpec defines the desired state of QuickLink.
properties:
icon:
description: Icon is a base64 encoded SVG icon of the component.
type: string
type:
default: default
description: Type is a quicklink type. It can be default or system.
Default value is default.
enum:
- default
- system
type: string
url:
default: ""
description: Url specifies a link to the component.
type: string
visible:
default: true
description: Visible specifies whether a component is visible. The
default value is true.
type: boolean
required:
- icon
- type
- url
- visible
type: object
status:
description: QuickLinkStatus defines the observed state of QuickLink.
type: object
type: object
served: true
storage: true
subresources:
status: {}