Skip to content

Commit 6e0042d

Browse files
committed
OLS-4815: updated steps for web console
1 parent d1ed0d4 commit 6e0042d

File tree

2 files changed

+23
-21
lines changed

2 files changed

+23
-21
lines changed

modules/ossm-configuring-istio-ha-autoscaling.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ spec:
5252
<3> Defines the target CPU utilization for autoscaling to 80%. If the average CPU usage exceeds this threshold, the Horizontal Pod Autoscaler (HPA) automatically increases the number of replicas.
5353
<4> Defines the target memory utilization for autoscaling to 80%. If the average memory usage exceeds this threshold, the HPA automatically increases the number of replicas.
5454

55+
. Click *Save*.
56+
5557
.Verification
5658

5759
. Verify the status of the {istio} control pods by running the following command:

modules/ossm-configuring-istio-ha-replicacount.adoc

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -17,37 +17,37 @@ Configure the {istio} control plane in High Availability (HA) mode to prevent a
1717
1818
.Procedure
1919

20-
. Obtain the name of the {istio} resource by running the following command:
21-
+
22-
[source,terminal]
23-
----
24-
$ oc get istio -n istio-sytem
25-
----
26-
+
27-
.Example output
28-
[source,terminal]
29-
----
30-
NAME REVISIONS READY IN USE ACTIVE REVISION STATUS VERSION AGE
31-
default 1 1 0 default Healthy v1.24.6 24m
32-
----
33-
+
34-
The name of the {istio} resource is `default`.
20+
. In the {ocp-product-title} web console, click *Installed Operators*.
21+
22+
. Click {SMProductName} 3 Operator.
23+
24+
. Click *Istio*.
3525

36-
. Update the {istio} custom resource by adding the `autoscaleEnabled` and `replicaCount` parameters by running the following command:
26+
. Click the name of the {istio} installation. For example, `default`.
27+
28+
. Click *YAML*.
29+
30+
. Modify the {istio} custom resource.
3731
+
38-
[source,terminal]
32+
.Example configuration
33+
[source,yaml,subs="attributes,verbatim"]
3934
----
40-
$ oc patch istio default -n istio-system --type merge -p '
35+
apiVersion: sailoperator.io/v1
36+
kind: Istio
37+
metadata:
38+
name: default
4139
spec:
40+
namespace: istio-system
4241
values:
4342
pilot:
44-
autoscaleEnabled: false <1>
45-
replicaCount: 2 <2>
46-
'
43+
autoscaleEnabled: false # <1>
44+
replicaCount: 2 # <2>
4745
----
4846
<1> Disables autoscaling and ensures that the number of replicas remains fixed.
4947
<2> Defines the number of {istio} control plane replicas. To support HA, there must be at least two replicas.
5048

49+
. Click *Save*.
50+
5151
.Verification
5252

5353
. Verify the status of the {Istio} control pods by running the following command:

0 commit comments

Comments
 (0)