forked from kyma-project/control-plane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
query.go
112 lines (100 loc) · 2.08 KB
/
query.go
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package provisioner
import "fmt"
type queryProvider struct{}
func (qp queryProvider) provisionRuntime(config string) string {
return fmt.Sprintf(`mutation {
result: provisionRuntime(config: %s) {
%s
}
}`, config, operationStatusData())
}
func (qp queryProvider) upgradeRuntime(runtimeID string, config string) string {
return fmt.Sprintf(`mutation {
result: upgradeRuntime(id: "%s", config: %s) {
%s
}
}`, runtimeID, config, operationStatusData())
}
func (qp queryProvider) deprovisionRuntime(runtimeID string) string {
return fmt.Sprintf(`mutation {
result: deprovisionRuntime(id: "%s")
}`, runtimeID)
}
func (qp queryProvider) reconnectRuntimeAgent(runtimeID string) string {
return fmt.Sprintf(`mutation {
result: reconnectRuntimeAgent(id: "%s")
}`, runtimeID)
}
func (qp queryProvider) runtimeStatus(operationID string) string {
return fmt.Sprintf(`query {
result: runtimeStatus(id: "%s") {
%s
}
}`, operationID, runtimeStatusData())
}
func (qp queryProvider) runtimeOperationStatus(operationID string) string {
return fmt.Sprintf(`query {
result: runtimeOperationStatus(id: "%s") {
%s
}
}`, operationID, operationStatusData())
}
func runtimeStatusData() string {
return fmt.Sprintf(`lastOperationStatus { operation state message }
runtimeConnectionStatus { status }
runtimeConfiguration {
kubeconfig
clusterConfig {
%s
}
kymaConfig {
version
}
}`, clusterConfig())
}
func clusterConfig() string {
return fmt.Sprintf(`
name
kubernetesVersion
volumeSizeGB
diskType
machineType
region
provider
seed
targetSecret
diskType
workerCidr
autoScalerMin
autoScalerMax
maxSurge
maxUnavailable
providerSpecificConfig {
%s
}
`, providerSpecificConfig())
}
func providerSpecificConfig() string {
return fmt.Sprint(`
... on GCPProviderConfig {
zones
}
... on AzureProviderConfig {
vnetCidr
zones
}
... on AWSProviderConfig {
zone
internalCidr
vpcCidr
publicCidr
}
`)
}
func operationStatusData() string {
return `id
operation
state
message
runtimeID`
}