-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.go
263 lines (255 loc) · 6.81 KB
/
deploy.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
package deploy
import (
"os"
"text/template"
)
const docker = `FROM golang:1.24.1 as builder
ENV GOSUMDB='off' \
GOOS='linux' \
GOARCH='amd64' \
CGO_ENABLED=0
RUN mkdir /code
ADD . /code
WORKDIR /code
RUN echo "start build" && go mod tidy && go build -o main && echo "end build"
FROM debian:stable
RUN apt-get update && apt-get install -y ca-certificates curl inetutils-telnet inetutils-ping inetutils-traceroute dnsutils iproute2 procps net-tools neovim && mkdir /root/app
WORKDIR /root/app
EXPOSE 6060 7000 8000 9000 10000
COPY --from=builder /code/main /code/AppConfig.json /code/SourceConfig.json ./
ENTRYPOINT ["./main"]`
const deployment = `apiVersion: apps/v1
kind: Deployment
metadata:
name: {{.AppName}}-deployment
namespace: <PROJECT>-<GROUP>
labels:
app: {{.AppName}}
spec:
replicas: 2
minReadySeconds: 5
progressDeadlineSeconds: 300
revisionHistoryLimit: 5
selector:
matchLabels:
app: {{.AppName}}
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
template:
metadata:
labels:
app: {{.AppName}}
spec:
containers:
- name: {{.AppName}}
image: <IMAGE>
imagePullPolicy: IfNotPresent
ports:
- name: web
protocol: TCP
containerPort: 8000
- name: crpc
protocol: TCP
containerPort: 9000
- name: grpc
protocol: TCP
containerPort: 10000
resources:
limits:
memory: 4096Mi
cpu: 4000m
requests:
memory: 256Mi
cpu: 250m
env:
- name: HOSTIP
valueFrom:
fieldRef:
fieldPath: status.podIP
- name: GROUP
value: <GROUP>
- name: PROJECT
value: <PROJECT>
- name: TRACE
value: <TRACE>
- name: ZIPKIN_URL
value: <ZIPKIN_URL>
- name: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT
value: <OTEL_EXPORTER_OTLP_TRACES_ENDPOINT>
- name: METRIC
value: <METRIC>
- name: OTEL_EXPORTER_OTLP_METRICS_ENDPOINT
value: <OTEL_EXPORTER_OTLP_METRICS_ENDPOINT>
- name: OTEL_EXPORTER_OTLP_ENDPOINT
value: <OTEL_EXPORTER_OTLP_ENDPOINT>
- name: DEPLOY_ENV
value: <DEPLOY_ENV>
- name: RUN_ENV
value: <RUN_ENV>
- name: CONFIG_TYPE
value: <CONFIG_TYPE>
- name: REMOTE_CONFIG_SECRET
value: <REMOTE_CONFIG_SECRET>
- name: ADMIN_SERVICE_PROJECT
value: <ADMIN_SERVICE_PROJECT>
- name: ADMIN_SERVICE_GROUP
value: <ADMIN_SERVICE_GROUP>
- name: ADMIN_SERVICE_WEB_HOST
value: <ADMIN_SERVICE_WEB_HOST>
- name: ADMIN_SERVICE_WEB_PORT
value: <ADMIN_SERVICE_WEB_PORT>
- name: ADMIN_SERVICE_CONFIG_ACCESS_KEY
value: <ADMIN_SERVICE_CONFIG_ACCESS_KEY>
- name: ADMIN_SERVICE_DISCOVER_ACCESS_KEY
value: <ADMIN_SERVICE_DISCOVER_ACCESS_KEY>
- name: ADMIN_SERVICE_PERMISSION_ACCESS_KEY
value: <ADMIN_SERVICE_PERMISSION_ACCESS_KEY>
startupProbe:
tcpSocket:
port: 8000
initialDelaySeconds: 5
timeoutSeconds: 1
periodSeconds: 1
successThreshold: 1
failureThreshold: 3
livenessProbe:
tcpSocket:
port: 8000
initialDelaySeconds: 5
timeoutSeconds: 1
periodSeconds: 1
successThreshold: 1
failureThreshold: 3
imagePullSecrets:
- name: <PROJECT>-<GROUP>-secret
---
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: {{.AppName}}-hpa
namespace: <PROJECT>-<GROUP>
labels:
app: {{.AppName}}
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: {{.AppName}}-deployment
maxReplicas: 10
minReplicas: 2
metrics:
- type: Resource
resource:
name: memory
target:
type: AverageValue
averageValue: 3500Mi
- type: Resource
resource:
name: cpu
target:
type: AverageValue
averageValue: 3400m{{ if .NeedService }}
---
apiVersion: v1
kind: Service
metadata:
name: {{.AppName}}-headless
namespace: <PROJECT>-<GROUP>
labels:
app: {{.AppName}}
spec:
type: ClusterIP
clusterIP: None
ports:
- name: crpc
protocol: TCP
port: 9000
- name: grpc
protocol: TCP
port: 10000
selector:
app: {{.AppName}}
---
apiVersion: v1
kind: Service
metadata:
name: {{.AppName}}
namespace: <PROJECT>-<GROUP>
labels:
app: {{.AppName}}
spec:
type: ClusterIP
ports:
- name: web
protocol: TCP
port: 8000
selector:
app: {{.AppName}}{{ end }}{{ if .NeedIngress}}
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{.AppName}}-ingress
namespace: <PROJECT>-<GROUP>
labels:
app: {{.AppName}}
annotations:
nginx.ingress.kubernetes.io/use-regex: 'true'
spec:
rules:
- host: <HOST>
http:
paths:
- path: /{{.AppName}}.*
pathType: Prefix
backend:
service:
name: {{.AppName}}
port:
number: 8000{{ end }}`
type data struct {
AppName string
NeedService bool
NeedIngress bool
}
func CreatePathAndFile(appname string, needservice bool, needingress bool) {
dockerfile, e := os.OpenFile("./Dockerfile", os.O_TRUNC|os.O_CREATE|os.O_WRONLY, 0644)
if e != nil {
panic("open ./Dockerfile error: " + e.Error())
}
if _, e := dockerfile.WriteString(docker); e != nil {
panic("write ./Dockerfile error: " + e.Error())
}
if e := dockerfile.Sync(); e != nil {
panic("sync ./Dockerfile error: " + e.Error())
}
if e := dockerfile.Close(); e != nil {
panic("close ./Dockerfile error: " + e.Error())
}
tmp := &data{
AppName: appname,
NeedService: needservice,
NeedIngress: needingress,
}
deploymenttemplate, e := template.New("./deployment.yaml").Parse(deployment)
if e != nil {
panic("parse ./deployment.yaml template error: " + e.Error())
}
kubernetesfile, e := os.OpenFile("./deployment.yaml", os.O_TRUNC|os.O_CREATE|os.O_WRONLY, 0644)
if e != nil {
panic("open ./deployment.yaml error: " + e.Error())
}
if e := deploymenttemplate.Execute(kubernetesfile, tmp); e != nil {
panic("write ./deployment.yaml error: " + e.Error())
}
if e := kubernetesfile.Sync(); e != nil {
panic("sync ./deployment.yaml error: " + e.Error())
}
if e := kubernetesfile.Close(); e != nil {
panic("close ./deployment.yaml error: " + e.Error())
}
}