This repository has been archived by the owner on Mar 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 88
/
cluster-registry-crd.yaml
88 lines (88 loc) · 2.32 KB
/
cluster-registry-crd.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
creationTimestamp: null
labels:
api: ""
kubebuilder.k8s.io: 1.0.3
name: clusters.clusterregistry.k8s.io
spec:
group: clusterregistry.k8s.io
names:
kind: Cluster
plural: clusters
scope: Namespaced
validation:
openAPIV3Schema:
properties:
apiVersion:
type: string
kind:
type: string
metadata:
type: object
spec:
properties:
authInfo:
properties:
controller:
properties:
kind:
type: string
name:
type: string
namespace:
type: string
type: object
user:
properties:
kind:
type: string
name:
type: string
namespace:
type: string
type: object
type: object
kubernetesApiEndpoints:
properties:
caBundle:
format: byte
type: string
serverEndpoints:
items:
properties:
clientCIDR:
type: string
serverAddress:
type: string
type: object
type: array
type: object
type: object
status:
properties:
conditions:
items:
properties:
lastHeartbeatTime:
format: date-time
type: string
lastTransitionTime:
format: date-time
type: string
message:
type: string
reason:
type: string
status:
type: string
type:
type: string
required:
- type
- status
type: object
type: array
type: object
version: v1alpha1