You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* upstream/main:
Enhance Documentation: convert markdown file to AsciiDocs (istio-ecosystem#1118)
fix(e2e): Add cleanup trap to prevent false positives in CI test runs (istio-ecosystem#1227)
Addons are managed separately from the Sail Operator. You can follow the [istio documentation](https://istio.io/latest/docs/ops/integrations/) for how to install addons. Below is an example of how to install some addons for Istio.
19
+
[[addons]]
20
+
== Addons
21
+
22
+
Addons are managed separately from the Sail Operator. You can follow the link:https://istio.io/latest/docs/ops/integrations/[istio documentation] for how to install addons. Below is an example of how to install some addons for Istio.
15
23
16
24
The sample will deploy:
17
25
@@ -25,26 +33,31 @@ The sample will deploy:
25
33
- Sail operator is installed.
26
34
- Control Plane is installed via the Sail Operator.
Create a Kiali resource. We're enabling tracing and disabling grafana here since tracing is disabled by default and grafana is not part of this example.
46
58
47
-
```bash
59
+
[source,bash,subs="attributes+"]
60
+
----
48
61
kubectl apply -f - <<EOF
49
62
apiVersion: kiali.io/v1alpha1
50
63
kind: Kiali
@@ -58,70 +71,81 @@ spec:
58
71
grafana:
59
72
enabled: false
60
73
EOF
61
-
```
74
+
----
62
75
63
-
### Find the active revision of your Istio instance.
0 commit comments