diff --git a/daprdocs/content/en/reference/cli/dapr-init.md b/daprdocs/content/en/reference/cli/dapr-init.md index 019da8627..5dd0d0b04 100644 --- a/daprdocs/content/en/reference/cli/dapr-init.md +++ b/daprdocs/content/en/reference/cli/dapr-init.md @@ -38,7 +38,10 @@ dapr init [flags] | `--slim`, `-s` | | `false` | Exclude placement service, Redis and Zipkin containers from self-hosted installation | | `--timeout` | | `300` | The wait timeout for the Kubernetes installation | | `--wait` | | `false` | Wait for Kubernetes initialization to complete | -| N/A |DAPR_DEFAULT_IMAGE_REGISTRY| | It is used to specify the default container registry to pull images from. When its value is set to `GHCR` or `ghcr` it pulls the required images from Github container registry. To default to Docker hub, unset the environment variable or leave it blank| +| N/A |DAPR_DEFAULT_IMAGE_REGISTRY| | Specifies a private dapr helm chart url, defaultly Official Helm Chart: `https://dapr.github.io/helm-charts`| +| N/A |HELM_CHART_REPO_URL| | Specifies a private dapr helm chart url| +| N/A | HELM_CHART_REPO_USERNAME | A username for a private helm chart | The username required to access a private dapr helm chart. If it can be accessed publicly, the env variable does not need to be set| +| N/A | HELM_CHART_REPO_PASSWORD | A password for a private helm chart |The password required to access a private dapr helm chart. If it can be accessed publicly, the env variable does not need to be set| | ### Examples @@ -130,4 +133,4 @@ dapr init -k --image-registry docker.io/username Scenario 2 : dapr image hosted under a new/different directory in private registry - ```bash dapr init -k --image-registry docker.io/username/ -``` \ No newline at end of file +``` diff --git a/daprdocs/content/en/reference/environment/_index.md b/daprdocs/content/en/reference/environment/_index.md index 2ddbc480f..3e3470eb1 100644 --- a/daprdocs/content/en/reference/environment/_index.md +++ b/daprdocs/content/en/reference/environment/_index.md @@ -20,4 +20,7 @@ The following table lists the environment variables used by the Dapr runtime, CL | DAPR_API_TOKEN | Dapr sidecar | The token used for Dapr API authentication for requests from the application. [Enable API token authentication in Dapr]({{< ref api-token >}}). | | NAMESPACE | Dapr sidecar | Used to specify a component's [namespace in self-hosted mode]({{< ref component-scopes >}}). | | DAPR_DEFAULT_IMAGE_REGISTRY | Dapr CLI | In self-hosted mode, it is used to specify the default container registry to pull images from. When its value is set to `GHCR` or `ghcr`, it pulls the required images from Github container registry. To default to Docker hub, unset this environment variable. | -| SSL_CERT_DIR | Dapr sidecar | Specifies the location where the public certificates for all the trusted certificate authorities (CA) are located. Not applicable when the sidecar is running as a process in self-hosted mode. +| SSL_CERT_DIR | Dapr sidecar | Specifies the location where the public certificates for all the trusted certificate authorities (CA) are located. Not applicable when the sidecar is running as a process in self-hosted mode.| +| HELM_CHART_REPO_URL | Your private dapr helm chart url | Specifies a private dapr helm chart url, defaultly Official Helm Chart: `https://dapr.github.io/helm-charts`| +| HELM_CHART_REPO_USERNAME | A username for a private helm chart | The username required to access a private dapr helm chart. If it can be accessed publicly, the env variable does not need to be set| +| HELM_CHART_REPO_PASSWORD | A password for a private helm chart |The password required to access a private dapr helm chart. If it can be accessed publicly, the env variable does not need to be set| |