-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrd.yaml
49 lines (49 loc) · 1.22 KB
/
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
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: nodepools.cluster.trojanekkk.com
spec:
scope: Cluster
group: cluster.trojanekkk.com
names:
kind: NodePool
plural: nodepools
singular: nodepool
shortNames:
- nopo
versions:
- name: v1
served: true
storage: true
schema:
openAPIV3Schema:
type: object
properties:
spec:
type: object
properties:
selectors:
type: object
properties:
matchLabels:
type: object
additionalProperties:
type: string
taints:
type: array
items:
type: object
properties:
key:
type: string
value:
type: string
effect:
type: string
enum:
- NoSchedule
- PreferNoSchedule
- NoExecute
status:
type: object
x-kubernetes-preserve-unknown-fields: true