This chart installs an Admin deployment.
helm repo add dubbo https://charts.dubbo.apache.org helm repo update
See helm repo for command documentation.
To install the chart with the release name dubbo:
kubectl create namespace dubbo-system helm install admin dubbo/admin --namespace dubbo-system
To uninstall/delete the dubbo deployment:
helm delete dubbo --namespace dubbo-system
To view support configuration options and documentation, run:
helm show values dubbo/admin
Dubbo Helm Chart introduces the concept of profiles, which are predefined sets of configuration values. You can specify the desired profile using --set profile=. For example, the demo profile provides a preset configuration suitable for testing environments, with additional features enabled and reduced resource requirements.
To maintain consistency, all charts support the same profiles, even if some settings don’t apply to a particular chart.
The precedence of values is as follows:
In actual configuration, you do not need to include the nested path under defaults. For example, you should use:
--set some.field=true
instead of:
--set defaults.some.field=true