forked from kubernetes/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin-crd.yml
45 lines (45 loc) · 1.01 KB
/
plugin-crd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: plugins.dashboard.k8s.io
spec:
group: dashboard.k8s.io
scope: Namespaced
versions:
- name: v1alpha1
served: true
storage: true
names:
kind: Plugin
plural: plugins
singular: plugin
validation:
openAPIV3Schema:
type: object
properties:
spec:
type: object
properties:
source:
type: object
properties:
configMapRef:
type: object
properties:
name:
type: string
required:
- name
filename:
type: string
required:
- configMapRef
- filename
dependencies:
type: array
items:
type: string
required:
- source
required:
- spec