sidebar_position |
---|
1 |
OpenSergo control plane enables unified management for microservice governance under Kubernetes.
Install OpenSergo Control Plane
contains 2 steps:
- Init OpenSergo in
Kubernetes cluster
- Start the
OpenSergo Control Plane
The above steps can be performed on the Kubernetes node or on the non-Kubernetes node.
If you performance them on a non-Kubernetes node, you need to configure kubeconfig
on the operating computer to access the Kubernetes cluster.
We provide some scripts to install OpenSergo Control Plane:
# NOTE:exec above command,will download the resources in directory `$HOME/opensergo/opensergo-control-plane`
# 1. Install base resources of OpenSergo (Namespce, CRD, RBAC ...)
wget --no-check-certificate https://raw.githubusercontent.com/opensergo/opensergo-control-plane/main/cmd/init/init.sh && chmod +x init.sh && ./init.sh
# 2. Deploy workload of OpenSergo Control Plane
wget --no-check-certificate https://raw.githubusercontent.com/opensergo/opensergo-control-plane/main/cmd/install/k8s/deploy.sh && chmod +x deploy.sh && ./deploy.sh
In advance, we need to download opensergo-control-plane
, and then execute kubectl commands to install OpenSergo Control Plane.
# Create Namespace for OpenSergo
kubectl apply -f opensergo-control-plane/k8s/namespace.yaml
# Install OpenSergo spec CRDs
kubectl apply -f opensergo-control-plane/k8s/crd/bases/fault-tolerance.opensergo.io_circuitbreakerstrategies.yaml
kubectl apply -f opensergo-control-plane/k8s/crd/bases/fault-tolerance.opensergo.io_concurrencylimitstrategies.yaml
kubectl apply -f opensergo-control-plane/k8s/crd/bases/fault-tolerance.opensergo.io_faulttolerancerules.yaml
kubectl apply -f opensergo-control-plane/k8s/crd/bases/fault-tolerance.opensergo.io_ratelimitstrategies.yaml
kubectl apply -f opensergo-control-plane/k8s/crd/bases/fault-tolerance.opensergo.io_throttlingstrategies.yaml
kubectl apply -f opensergo-control-plane/k8s/crd/bases/traffic.opensergo.io_trafficerouters.yaml
# Install RBAC for OpenSergo Control Plane
kubectl apply -f opensergo-control-plane/k8s/rbac/rbac.yaml
# Deploy workload for OpenSergo Control Plane
kubectl apply -f opensergo-control-plane/k8s/workload/opensergo-control-plane.yaml
ClusterIP
is the default mode of Service, you can change mode toNodePort
orLoadBalancer
to expose this Service- Start by script online, file to modify:
$HOME/opensergo/opensergo-control-plane/k8s/workload/opensergo-control-plane.yaml
- Start by YAML, file to modify:
opensergo-control-plane/k8s/workload/opensergo-control-plane.yaml
- Start by script online, file to modify:
- default value of
replicas
in Deployment is 1, do not modify it. Multiple-replicas mode is still in developing.
We are improving start mode for OpenSergo control plane, and will provide Helm Chart deployment package in the future.