-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
504 lines (469 loc) · 23 KB
/
index.html
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
<!DOCTYPE html>
<html lang="en">
<head>
<title>Kubernetes descriptor editor</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="https://cdn.glitch.me/80a8493d-689e-483d-8ae9-bc1956812b5a%2Fk8s-editor.png?v=1637011899533">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/vue.global.js"></script>
<link rel="stylesheet" href="//unpkg.com/element-plus/dist/index.css" />
<script src="//unpkg.com/element-plus"></script>
<script src="/fileSaver.js"></script>
<script src="/samples.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-C0X3PQD0BK"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-C0X3PQD0BK');
</script>
</head>
<body>
<div class="ribbon">
<a href="https://github.com/anmaso/k8s-editor"><img loading="lazy" height="32" src="https://cdn.glitch.com/80a8493d-689e-483d-8ae9-bc1956812b5a%2FGitHub-Mark-64px.png?v=1624432269571" alt="Fork me on GitHub" data-recalc-dims="1"></a>
<a href="https://glitch.com/edit/#!/remix/k8s-editor"><img alt="Remix on Glitch" src="https://cdn.gomix.com/f3620a78-0ad3-4f81-a271-c8a4faa20f86%2Fremix-button.svg"></a>
</div>
<div id="vue">
<table cellspacing="0">
<tr>
<td></td>
<td>
<h1><a href="/"><img src="https://cdn.glitch.me/80a8493d-689e-483d-8ae9-bc1956812b5a%2Fk8s-editor.png?v=1637011899533" height="30" align="bottom"> Kubernetes yaml editor</a></h1>
<p>Simple utility page to write kubernetes descriptor files with ease.</p>
</td>
<td></td>
<td></td>
</tr>
<tr>
<td width="200px" class="">
<span v-if="showEditor">Add optional sections by checking the boxes</span>
<span v-else>Here you can edit the descriptors freely, but note that changes will be lost if you switch back to the editor. </span>
</td>
<td v-if="showEditor" >
<pre id="deployment" class="deployment">
<i>apiVersion</i>: apps/v1
<i>kind:</i> Deployment
<i>metadata:</i>
<i>name</i>: <input v-model="values.name" /><span class="hidden">{{values.name}}</span>
</pre></td>
<td rowspan="20" v-if="!showEditor" class="fullDescriptorWrap"><textarea class="fullDescriptor" v-model="fullDescriptor"></textarea></td>
<td rowspan="20" class="actions" >
<span v-if="showEditor"><a href="#" @click="toggleEditor"><i class="fa fa-edit"></i> edit YAML</a><br/></span>
<span v-if="!showEditor"><a href="#" @click="toggleEditor"><i class="fa fa-tools"></i> show editor</a><br/></span>
<a href="#" @click="copyDeployment"><i class="fa fa-copy"></i> copy to clipboard</a><br/>
<a href="#" @click="copyDeploymentKubectl"><i class="fa fa-copy"></i> copy to clipboard + kubeclt apply</a><br/>
<a href="#" @click="clipDeployment"><i class="fa fa-upload"></i><img width="20" v-if="clipSaving" src="https://cdn.glitch.me/80a8493d-689e-483d-8ae9-bc1956812b5a%2Floading.gif?v=1636707275003"/> <span class="smalltext">upload to https://myclip.glitch.me/{{clip}} </span></a><br/>
<a v-if="clip" href="#" @click="copyKubectl" class="smalltext"><i class="fa fa-copy"></i> curl https://myclip.glitch.me/{{clip}} | kubectl apply -f -</a><br/>
<span v-if="showEditor">
<a href="#" @click="saveDeployment"><i class="fa fa-download"></i> save deployment to<br/> {{values.name}}-deployment.yaml</a><br/>
<a href="#" @click="saveService" v-if="section.service"><i class="fa fa-download"></i> save service to {{values.name}}-service.yaml</a><br/>
<a href="#" @click="saveConfig" v-if="section.config"><i class="fa fa-download"></i> save config map to {{values.name}}-external-config.yaml</a><br/>
<a href="#" @click="saveKustomize" v-if="section.kustomize"><i class="fa fa-download"></i> save kustomization to kustomization.yaml</a><br/>
<a href="#" @click="saveIngress" v-if="section.ingress"><i class="fa fa-download"></i> save ingress to {{values.name}}-ingress.yaml</a><br/>
<br/>
<a href="#" @click="save"><i class="fa fa-save"></i> save values to local storage</a><br/>
<a href="#" @click="clear"><i class="fa fa-trash"></i> clear local storage</a><br/>
<br/>
<p>
Load sample templates:
</p>
<a href="#" @click="load('complete')"><el-popover placement="top" :width="400" trigger="hover" title="Complete example"
content="Sample with all the options for the editor filled and expanded">
<template #reference>
<i class="fa fa-info-circle"></i>
</template>
</el-popover> complete</a><br/>
<a href="#" @click="load('nginx')"><el-popover placement="top" :width="400" trigger="hover" title="Nginx + conf"
content="Sample nginx deployment with config file as a config map">
<template #reference>
<i class="fa fa-info-circle"></i>
</template>
</el-popover> nginx</a><br/>
<a href="#" @click="load('nodejs')"><el-popover placement="top" :width="400" trigger="hover" title="Node http server"
content="Sample with nodejs http server declared on an index.js mounted as a configmap">
<template #reference>
<i class="fa fa-info-circle"></i>
</template>
</el-popover> node http</a><br/>
<a href="#" @click="load('postgres13')"><el-popover placement="top" :width="400" trigger="hover" title="PostgreSQL"
content="PostgreSQL sample with required environment variables set">
<template #reference>
<i class="fa fa-info-circle"></i>
</template>
</el-popover> postgresql</a><br/>
<a href="#" @click="load('netshoot')"><el-popover placement="top" :width="400" trigger="hover" title="Netshoot"
content="The netshoot container has a set of powerful networking tshooting tools that can be used to troubleshoot Docker networking issues. Along with these tools come a set of use-cases that show how this container can be used in real-world scenarios.">
<template #reference>
<i class="fa fa-info-circle"></i>
</template>
</el-popover> netshoot</a><br/>
<br/>
</span>
</td>
</tr>
<!-- NAMESPACE -->
<tr>
<td v-if="showEditor" class="line">
<el-checkbox id="namespace" v-model="section.namespace">Namespace</el-checkbox>
<el-popover placement="top" :width="400" trigger="hover"
title="Namespace">
<template #reference><i class="fa fa-info-circle"></i></template>
<p>
Specify the namespace for the deployment
</p>
</el-popover>
</td>
<td v-if="showEditor"><pre v-if="section.namespace" class="deployment"> <i>namespace:</i> <input class="long" v-model="values.namespace"><span class="hidden">{{values.namespace}}</span></pre>
</td>
</tr>
<tr>
<td v-if="showEditor" class="line">
<el-checkbox id="gcp_wi" v-model="section.gcp_wi">Labels</el-checkbox>
<el-popover placement="top" :width="400" trigger="hover"
title="Annotations">
<template #reference><i class="fa fa-info-circle"></i></template>
<p>
Add labels to the deployment
</p>
</el-popover>
</td>
<td v-if="showEditor"><pre v-if="section.gcp_wi" class="deployment">
<i>annotations:</i>
<template v-for="annotation in values.gcp_wi">
<input class="long" v-model="annotation.name"><span class="hidden">{{annotation.name}}</span><i>:</i> <input class="long" v-model="annotation.value"><span class="hidden">{{annotation.value}}</span>
</template>
</pre>
</td>
</tr>
<tr>
<td></td>
<td v-if="showEditor" >
<pre id="namespace" class="deployment">
<i>spec:</i>
<i>replicas:</i> <input v-model="values.replicas"/><a class="small" @click="removeReplicas"><i class="fa fa-minus-circle"></i></a><a class="small" @click="addReplicas"><i class="fa fa-plus-circle"></i></a><span class="hidden">{{values.replicas}}</span>
<i>selector:</i>
<i>matchLabels:<i>
<i>app:</i> <b class="name">{{values.name}}</b>
<i>template:</i>
<i>metadata:</i>
<i>labels:</i>
<i>app:</i> <b class="name">{{values.name}}</b>
<i>spec:</i></pre>
</td>
</tr>
<tr>
<td v-if="showEditor"></td>
<td v-if="showEditor">
<pre class="deployment"> <i>containers:</i>
- <i>name:</i> <b class="name">{{values.name}}</b>
<i>image:</i> <input class="long" v-model="values.image"/><span class="hidden">{{values.image}}</span></pre>
</td>
</tr>
<!-- PROBES -->
<tr>
<td v-if="showEditor" class="line">
<el-checkbox id="probes" v-model="section.probes">probes</el-checkbox>
<el-popover placement="top" :width="400" trigger="hover" title="Probes"
content="Define probes to check if app is live (if not, pod will be deleted) and ready (if not pod will be remove from service load balancing)">
<template #reference>
<i class="fa fa-info-circle"></i>
</template>
</el-popover>
</td>
<td v-if="showEditor">
<pre class="deployment" v-if="section.probes">
<i>livenessProbe:</i>
<i>httpGet:</i>
<i>path: /</i>
<i>port:</i> <input v-model="values.port"/><span class="hidden">{{values.port}}</span>
<i>initialDelaySeconds:</i> 10
<i>periodSeconds:</i> 10
<i>readinessProbe:</i>
<i>httpGet:</i>
<i>path: /</i>
<i>port:</i> <input v-model="values.port"/><span class="hidden">{{values.port}}</span>
<i>initialDelaySeconds:</i> 10
<i>periodSeconds:</i> 10
</pre>
</td>
</tr>
<!-- PORTS -->
<tr>
<td v-if="showEditor" class="line">
<el-checkbox id="ports" v-model="section.ports">ports</el-checkbox>
<el-popover placement="top" :width="400" trigger="hover"
title="Ports"
content="This section is not mandatory, it provides info on ports open on this pod for other tools to instrospect it.">
<template #reference>
<i class="fa fa-info-circle"></i>
</template>
</el-popover>
</td>
<td v-if="showEditor">
<pre class="deployment" v-if="section.ports"> <i>ports:</i>
- <i>containerPort:</i> <input v-model="values.port"/><span class="hidden">{{values.port}}</span></pre>
</td>
</tr>
<!-- CMD / ARGS -->
<tr>
<td v-if="showEditor" class="line">
<el-checkbox id="cmd" v-model="section.cmd"/>cmd / args</el-checkbox>
<el-popover placement="top" :width="400" trigger="hover"
title="CMD / ARGS">
<template #reference><i class="fa fa-info-circle"></i></template>
<p>
Change the initial start command of the container.<br/>
The provided command will start the container with a bash shell (useful for debugging purposes)
</p>
</el-popover>
</td>
<td v-if="showEditor"><pre v-if="section.cmd" class="deployment"> <i>command:</i> [<input class="long" v-model="values.cmd"><span class="hidden">{{values.cmd}}</span>]
<i>args:</i> [<input class="long" v-model="values.args"><span class="hidden">{{values.args}}</span>]</pre>
</td>
</tr>
<!-- ENV -->
<tr>
<td v-if="showEditor" class="line">
<el-checkbox id="envs" v-model="section.envs"/>env vars<br/></el-checkbox>
<el-popover placement="top" :width="400" trigger="hover"
title="ENV">
<template #reference><i class="fa fa-info-circle"></i></template>
<p>Define environment variables for the container</p>
<p>You can add/remove variables using the +/- buttons</p>
</el-popover>
<el-checkbox class="padded" v-model="section.envconfig">from configmap</el-checkbox>
<el-popover v-if="section.envs" placement="top" :width="400" trigger="hover"
title="env from configmap">
<template #reference>
<i class="fa fa-info-circle"></i>
</template>
<p>
Creates environment variables from key/values on a
</p>
</el-popover>
<el-checkbox v-if="section.envs" class="padded" v-model="section.envsecret">from secret</el-checkbox>
</td>
<td v-if="showEditor"><pre v-if="section.envs" class="deployment"> <i>env:</i>
<span v-for="env in values.envs">- <i>name:</i> <input v-model="env.name"><span class="hidden">{{env.name}}</span>
<i>value:</i> <input v-model="env.value"><a class="small" @click="removeEnvs"><i class="fa fa-minus-circle"></i></a><a class="small" @click="addEnvs"><i class="fa fa-plus-circle"></i></a><span class="hidden">{{env.value}}</span>
</span><span v-if="section.envconfig||section.envsecret"><i>envFrom:</i><span v-if="section.envconfig">
- <i>configMapRef:</i>
<i>name:</i> {{values.volume1}}</span><span v-if="section.envsecret">
- <i>secretRef:</i>
<i>name:</i> {{values.volume1}}</span></span></pre>
</td>
</tr>
<!-- RESOURCES -->
<tr>
<td v-if="showEditor" class="line">
<el-checkbox id="reso" v-model="section.resources"/>resources</el-checkbox>
<el-popover placement="top" :width="400" trigger="hover"
title="Container resources">
<template #reference>
<i class="fa fa-info-circle"></i>
</template>
<p>Define the minimum and maximum expected resources to be used by the application</p>
<p>Use the +/- buttons to toggle between predefined values</p>
<ul>
<li>cpu: 100m, 200m, 500m, 1000m</li>
<li>memory: 128Mb, 256Mb, 512Mb 1024Mb</li>
</ul>
</p>
</el-popover>
</td>
<td v-if="showEditor"><pre id="deployment2" v-if="section.resources" class="deployment">
<i>resources:</i>
<i>requests:</i>
<i>memory:</i> "<input v-model="values.request.ram"/><a class="small" @click="request_ram_minus"><i class="fa fa-minus-circle"></i></a><a class="small" @click="request_ram_plus"><i class="fa fa-plus-circle"></i></a><span class="hidden">{{values.request.ram}}</span>"
<i>cpu:</i> "<input v-model="values.request.cpu"/><a class="small" @click="request_cpu_minus"><i class="fa fa-minus-circle"></i></a><a class="small" @click="request_cpu_plus"><i class="fa fa-plus-circle"></i></a><span class="hidden">{{values.request.cpu}}</span>"
<i>limits:</i>
<i>memory:</i> "<input v-model="values.limit.ram"/><a class="small" @click="limit_ram_minus"><i class="fa fa-minus-circle"></i></a><a class="small" @click="limit_ram_plus"><i class="fa fa-plus-circle"></i></a><span class="hidden">{{values.limit.ram}}</span>"
<i>cpu:</i> "<input v-model="values.limit.cpu"/><a class="small" @click="limit_cpu_minus"><i class="fa fa-minus-circle"></i></a><a class="small" @click="limit_cpu_plus"><i class="fa fa-plus-circle"></i></a><span class="hidden">{{values.limit.cpu}}</span>"</pre>
</td>
</tr>
<tr><!-- VOLUME SECTION -->
<td v-if="showEditor" class="line">
<el-checkbox id="v1" v-model="section.volume1">volume mount</el-checkbox>
<el-popover placement="top" :width="400" trigger="hover"
title="Volumes">
<template #reference><i class="fa fa-info-circle"></i></template>
<p>Mount external information as volumes, secrets or configmap elements.</p>
</el-popover>
<div v-if="section.volume1">
<el-checkbox id="secret" class="padded" v-model="section.secret">secret mount</el-checkbox><br/>
<el-checkbox id="empty" class="padded" v-model="section.empty">emptyDir mount</el-checkbox><br/>
<el-checkbox id="subpath" class="padded" v-model="section.subpath">subpath</el-checkbox>
</div>
</td>
<td v-if="showEditor"><pre v-if="section.volume1" class="deployment"> <i>volumeMounts:</i>
- <b class="volume1 tag">name</b>: <input v-model="values.volume1"><span class="hidden">{{values.volume1}}</span>
<i>mountPath:</i> <input class="long" v-model="values.path1"><span class="hidden">{{values.path1}}</span>
<span v-if="section.subpath"><i>subPath:</i> <input v-model="values.file1"><span class="hidden">{{values.file1}}</span></span><span
v-if="section.secret">
- <b class="secret1 tag">name</b>: <input v-model="values.secret1"><span class="hidden">{{values.secret1}}</span>
<i>mountPath:</i> <input class="long" v-model="values.secretpath1"><span class="hidden">{{values.secretpath1}}</span>
<i>subPath:</i> <input v-model="values.secretfile1"><span class="hidden">{{values.secretfile1}}</span></span><span
v-if="section.empty">
- <b class="empty1 tag">name</b>: <input v-model="values.empty1"><span class="hidden">{{values.empty1}}</span>
<i>mountPath:</i> <input class="long" v-model="values.emptypath1"><span class="hidden">{{values.emptypath1}}</span>
</span></pre>
</td>
</tr>
<!-- SERVICE ACCOUNT NAME -->
<tr>
<td v-if="showEditor" class="line">
<el-checkbox id="serviceAccountName" v-model="section.serviceAccountName">Service Account Name</el-checkbox>
<el-popover placement="top" :width="400" trigger="hover"
title="Service Account Name">
<template #reference><i class="fa fa-info-circle"></i></template>
<p>
Specify the service account name for the pod.
</p>
</el-popover>
</td>
<td v-if="showEditor"><pre v-if="section.serviceAccountName" class="deployment"> <i>serviceAccountName:</i> <input class="long" v-model="values.serviceAccountName"><span class="hidden">{{values.serviceAccountName}}</span></pre>
</td>
</tr>
<!-- image pull secret -->
<tr>
<td v-if="showEditor" class="line">
<el-checkbox id="ips" v-model="section.imagePullSecrets">image Pull Secrets</el-checkbox>
<el-popover placement="top" :width="400" trigger="hover" hide-after="10"
title="Image Pull Secrets"
content="If you are using images from a private container registry, you need to provide the pod with a 'kubernetes docker type' secret in order to be able to pull images.">
<template #reference><i class="fa fa-info-circle"></i></template>
</el-popover>
</td>
<td v-if="showEditor"><pre v-if="section.imagePullSecrets" class="deployment"> <i>imagePullSecrets:</i>
- <i>name:</i> <input class="long" v-model="values.imagePullSecrets"/><span class="hidden">{{values.imagePullSecrets}}</span></pre>
</td>
</tr>
<tr>
<td v-if="showEditor"></td>
<td v-if="showEditor"><pre v-if="section.volume1" class="deployment"> <i>volumes:</i>
- <i>name:</i> <b class="volume1">{{values.volume1}}</b>
<i>configMap:</i>
<i>name:</i> <b class="name">{{values.name}}</b>-external-config<span v-if="section.secret">
- <i>name:</i> <b class="secret1">{{values.secret1}}</b>
<i>secret:</i>
<i>secretName:</i> <b class="name">{{values.name}}</b>-secret</span><span v-if="section.empty">
- <i>name:</i> <b class="secret1">{{values.empty1}}</b>
<i>emptyDir: {}</i></span></pre></td>
</tr>
<tr>
<td v-if="showEditor" class="line">
<el-checkbox id="config" v-model="section.config">config map</el-checkbox>
<el-popover placement="top" :width="400" trigger="hover"
title="Config map">
<template #reference><i class="fa fa-info-circle"></i></template>
<p>Define a configmap with a file as content, then mount it as volume on a container pod</p>
</el-popover>
</td>
<td v-if="showEditor"><pre v-if="section.config" class="config">
---
<i>apiVersion:</i> v1
<i>kind:</i> ConfigMap
<i>metadata:</i>
<i>name:</i> {{values.name}}-external-config
<i>data:</i>
<input v-model="values.file1" /><span class="hidden" pre-line>{{values.file1}}</span>: |
<textarea v-model="values.configdata" rows="10"></textarea><span class="hidden" pre-line>{{computedConfig}}</span></pre>
</td>
</tr>
<tr>
<td v-if="showEditor" class="line">
<el-checkbox id="service" v-model="section.service">service</el-checkbox>
<el-popover placement="top" :width="400" trigger="hover"
title="Service">
<template #reference><i class="fa fa-info-circle"></i></template>
<p>Expose the applications running on the pods through an stable location address. You can toggle between
<ul>
<li>ClusterIP</li>
<li>NodePort</li>
<li>LoadBalancer</li>
</ul>
</p>
</el-popover>
</td>
<td v-if="showEditor"><pre v-if="section.service" class="service">
---
<i>apiVersion:</i> v1
<i>kind:</i> Service
<i>metadata:</i>
<i>name:</i> <b class="name">{{values.name}}</b>
<i>spec:</i>
<i>selector:</i>
<i>app:</i> <b class="name">{{values.name}}</b>
<i>type:</i> <input v-model="values.serviceType"><a class="small" @click="type_minus"><i class="fa fa-minus-circle"></i></a><a class="small" @click="type_plus"><i class="fa fa-plus-circle"></i></a><span class="hidden">{{values.serviceType}}</span>
<i>ports:</i>
- <i>name:</i> http
<i>protocol:</i> TCP
<i>port:</i> <input v-model="values.port"><span class="hidden">{{values.port}}</span>
<i>targetPort:</i> <input v-model="values.targetPort"><span class="hidden">{{values.targetPort}}</span>
</pre>
</td>
</tr>
<tr>
<td v-if="showEditor" class="line">
<el-checkbox id="ingress" v-model="section.ingress">ingress</el-checkbox>
<el-popover placement="top" :width="400" trigger="hover"
title="Ingress">
<template #reference><i class="fa fa-info-circle"></i></template>
<p>Ingress object configures the external load balancer with http routes to services running on the cluster</p>
</el-popover>
</td>
<td v-if="showEditor"><pre v-if="section.ingress" class="kustomize">
---
<i>apiVersion:</i> networking.k8s.io/v1
<i>kind:</i> Ingress
<i>metadata:</i>
<i>name:</i> <b class="name">{{values.name}}</b>
<i>annotations:</i>
<i>nginx.</i>ingress.kubernetes.io/rewrite-target: /
<i>spec:</i>
<i>rules:</i>
- <i>http:</i>
<i>paths:</i>
- <i>path:</i> <input v-model="values.ingressPath"><span class="hidden">{{values.ingressPath}}</span>
<i>pathType:</i> Prefix
<i>backend:</i>
<i>service:</i>
<i>name:</i> <b class="name">{{values.name}}</b>
<i>port:</i>
<i>number:</i> {{values.port}}
</pre>
</td>
</tr>
<tr>
<td v-if="showEditor" class="line">
<el-checkbox id="kustomize" v-model="section.kustomize">kustomize</el-checkbox>
<el-popover placement="top" :width="400" trigger="hover"
title="Kustomize">
<template #reference><i class="fa fa-info-circle"></i></template>
<p>Kustomize is an utility to reduce boilerplate when creating kubernetes descriptors.
It's also included with kubectl so you can run: kubectl apply -k .
</p>
</el-popover>
</td>
<td v-if="showEditor"><pre v-if="section.kustomize" class="kustomize">
---
<i>resources:</i>
- <b class="name">{{values.name}}</b>-deployment.yaml
- <b class="name">{{values.name}}</b>-service.yaml
<i>configMapGenerator:</i>
- <i>name:</i> <b class="name">{{values.name}}</b>-external-config
<i>files:</i>
- {{values.file1}}={{values.file1}}
<i>images:</i>
- <i>name:</i> {{values.image}}
<i>digest:</i> sha256:<input v-model="values.digest"><span class="hidden">{{values.digest}}</span>
</pre>
</td>
</tr>
</table>
</div>
</body>
<script src="/script.js"></script>
</html>