$ oc login https://{HOSTNAME}:6443
After your default ServiceMeshControlPlane
resource is deployed, you can configure the resource to suit your environment.
ServiceMeshControlPlane
resourceRead more about how to configure your ServiceMeshControlPlane
resource further, or skip ahead to Updating the ServiceMeshControlPlane
.
See Data visualization and observability for more information about Kiali and visualizing your data.
See Security for configuring mTLS, cipher suites, and external certificate authorities.
See Traffic management to configure your routing.
See Custom resources for more information about all the configurable fields in your ServiceMeshControlPlane
resource.
Configure Maistra Service Mesh to work with your app by creating and configuring a ServiceMeshControlPlane
. The ServiceMeshControlPlane
resource defines the configuration to be used during installation. You can deploy the default configuration provided by Red Hat or customize the ServiceMeshControlPlane
resource for your microservices and workflows.
ServiceMeshControlPlane
from the web consoleFollow this procedure to edit the ServiceMeshControlPlane
with the OpenShift Container Platform web console.
In the OpenShift Container Platform web console, click Operators → Installed Operators.
Select the project where you installed the control plane, for example istio-system
, from the Project menu.
Click the Maistra Service Mesh Operator. In the Istio Service Mesh Control Plane column, click the name of your ServiceMeshControlPlane
, for example basic-install
.
On the Create ServiceMeshControlPlane Details page, click YAML
to modify your configuration.
Click Save.
ServiceMeshControlPlane
from the CLIFollow this procedure to create or edit the ServiceMeshControlPlane
with the command line.
Log in to the OpenShift Container Platform CLI as a user with the cluster-admin
role. Enter the following command. Then, enter your username and password when prompted.
$ oc login https://{HOSTNAME}:6443
Change to the project where you installed the control plane, for example istio-system.
$ oc project istio-system
Edit the ServiceMeshControlPlane
file.
Run the following command to edit the control plane where <istio-installation.yaml>
includes a full path to the file you edited:
$ oc edit -n istio-system -f <istio-installation.yaml>
Execute the following command to see the status of the control plane installation.
$ oc get smcp -n istio-system
The installation has finished successfully when the READY column is true.
NAME READY STATUS TEMPLATE VERSION AGE basic-install 9/9 InstallSuccessful default v2.0 4m25s
Prepare to deploy applications on Maistra Service Mesh.