-
Notifications
You must be signed in to change notification settings - Fork 433
/
istio.yaml
96 lines (96 loc) · 1.85 KB
/
istio.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
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
apiVersion: source.toolkit.fluxcd.io/v1beta1
kind: HelmRepository
metadata:
name: istio
namespace: istio-system
labels:
app.kubernetes.io/part-of: istio
spec:
interval: 1h0m0s
url: https://istio-release.storage.googleapis.com/charts
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: istio-base
namespace: istio-system
labels:
app.kubernetes.io/part-of: istio
spec:
releaseName: istio-base
install:
crds: Create
upgrade:
crds: CreateReplace
chart:
spec:
version: "${version}"
chart: base
sourceRef:
kind: HelmRepository
name: istio
interval: 1h0m0s
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: istiod
namespace: istio-system
labels:
app.kubernetes.io/part-of: istio
spec:
releaseName: istiod
dependsOn:
- name: istio-base
chart:
spec:
version: "${version}"
chart: istiod
sourceRef:
kind: HelmRepository
name: istio
interval: 1h0m0s
values:
global:
istioNamespace: istio-system
proxy:
resources:
requests:
cpu: 10m
memory: 16Mi
pilot:
autoscaleEnabled: false
resources:
requests:
cpu: 100m
memory: 128Mi
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: istio-gateway
namespace: istio-system
labels:
app.kubernetes.io/part-of: istio
spec:
releaseName: istio-gateway
dependsOn:
- name: istio-base
- name: istiod
chart:
spec:
version: "${version}"
chart: gateway
sourceRef:
kind: HelmRepository
name: istio
interval: 1h0m0s
values:
autoscaling:
enabled: false
resources:
requests:
cpu: 10m
memory: 128Mi
service:
type: "${service:=LoadBalancer}"