istio.io/istio@v0.0.0-20240520182934-d79c90f27776/manifests/charts/base/README.md (about) 1 # Istio base Helm Chart 2 3 This chart installs resources shared by all Istio revisions. This includes Istio CRDs. 4 5 ## Setup Repo Info 6 7 ```console 8 helm repo add istio https://istio-release.storage.googleapis.com/charts 9 helm repo update 10 ``` 11 12 _See [helm repo](https://helm.sh/docs/helm/helm_repo/) for command documentation._ 13 14 ## Installing the Chart 15 16 To install the chart with the release name `istio-base`: 17 18 ```console 19 kubectl create namespace istio-system 20 helm install istio-base istio/base -n istio-system 21 ``` 22 23 ### Profiles 24 25 Istio Helm charts have a concept of a `profile`, which is a bundled collection of value presets. 26 These can be set with `--set profile=<profile>`. 27 For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements. 28 29 For consistency, the same profiles are used across each chart, even if they do not impact a given chart. 30 31 Explicitly set values have highest priority, then profile settings, then chart defaults. 32 33 As an implementation detail of profiles, the default values for the chart are all nested under `defaults`. 34 When configuring the chart, you should not include this. 35 That is, `--set some.field=true` should be passed, not `--set defaults.some.field=true`.