blob: 2f03490fc413f291ec33c701de3c2d326c21188e [file] [log] [blame] [view]
Giorgi Lekveishvili285ab622023-11-22 13:50:45 +04001# Istio for Gerrit
2
3## Configuring istio
4
5It is recommended to set a static IP to be used by the LoadBalancer service
6deployed by istio. To do that set
7`spec.components.ingressGateways[0].k8s.overlays[0].patches[0].value`, which is
8commented out by default, which causes the use of an ephemeral IP.
9
10## Installing istio
11
12Create the `istio-system`-namespace:
13
14```sh
15kubectl apply -f ./istio/istio-system-namespace.yaml
16```
17
18Verify that your istioctl version (`istioctl version`) matches the version in
19`istio/gerrit.profile.yaml` under `spec.tag`.
20
21Install istio:
22
23```sh
24istioctl install -f istio/gerrit.profile.yaml
25```