-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathcrd.yaml
More file actions
62 lines (62 loc) · 1.67 KB
/
crd.yaml
File metadata and controls
62 lines (62 loc) · 1.67 KB
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
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: gkeclusters.gcp.service.infrabox.net
spec:
group: gcp.service.infrabox.net
versions:
- name: v1alpha1
served: true
storage: true
schema:
openAPIV3Schema:
required:
- spec
type: object
properties:
spec:
required:
- zone
type: object
properties:
diskSize:
type: integer
minimum: 10
machineType:
type: string
enableNetworkPolicy:
type: boolean
disableLegacyAuthorization:
type: boolean
enablePodSecurityPolicy:
type: boolean
numNodes:
type: integer
minimum: 1
preemptible:
type: boolean
enableAutoscaling:
type: boolean
maxNodes:
type: integer
minNodes:
type: integer
minimum: 1
zone:
type: string
clusterVersion:
type: string
serviceCidr:
type: string
clusterCidr:
type: string
enableManagedPrometheus:
type: boolean
stackType:
type: string
status:
x-kubernetes-preserve-unknown-fields: true
names:
kind: GKECluster
plural: gkeclusters
scope: Namespaced