English | 简体中文
This page show how to get polaris-controller service started by helm chart。
Make sure k8s cluster is installed and helm is installed. And the polaris-server is running in the polaris-system namespaces of k8s. (Guidance:polaris installation by using helm)
Confirm that the variable assignments in the deploy/variables.txt
file are as expected, the example is as follows
cd deploy
$ cat variables.txt deploy -> main ? ! |•
POLARIS_HOST:polaris.polaris-system
CONTROLLER_VERSION:v1.7.1
SIDECAR_VERSION:v1.5.1
POLARIS_TOKEN:token
ENVOY_VERSION:v1.26.2
CLUSTER_NAME:default
JAVA_AGENT_INIT:v0.0.1%
Initialize the values.yaml
file of the helm project
sh init_helm.sh
Use the helm install ${release_name}.
command to install, replacing ${release_name}
with the release name you need.
Examples are as follows
cd helm
helm install polaris-controller .
Use the helm upgrade -i ${release_name} .
command to update and replace ${release_name}
with the release name you need.
Examples are as follows
helm upgrade -i polaris-controller .
Use the helm uninstall
${release_name}command to update, replacing
${release_name}` with the release name you need.
Examples are as follows
$ helm uninstall polaris-controller
Configs in values.yaml
of helm will explain how to configure the service.