From 11d4a67a808edc7ba1b38e71512caac1e2c2c6f2 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Tue, 11 Oct 2016 17:27:10 -0600 Subject: [PATCH] docs(repo): update repo index docs to show new flags This adds the `--url` flag to examples. Closes #1343 --- docs/chart_repository.md | 2 +- docs/chart_repository_sync_example.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/chart_repository.md b/docs/chart_repository.md index 900d45d8d..bd00f9b12 100644 --- a/docs/chart_repository.md +++ b/docs/chart_repository.md @@ -124,7 +124,7 @@ $ mv alpine-0.1.0.tgz fantastic-charts/ Outside of your directory, run the `helm repo index [DIR] [URL]` command. This command takes the path of the local directory that you just created and the URL of your remote chart repository and composes an index.yaml file inside the given directory path. ```console -$ helm repo index fantastic-charts https://storage.googleapis.com/fantastic-charts +$ helm repo index fantastic-charts --url https://storage.googleapis.com/fantastic-charts ``` Now, you can upload the chart and the index file to your chart repository using a sync tool or manually. If you're using Google Cloud Storage, check out this [example workflow](chart_repository_sync_example.md) using the gsutil client. diff --git a/docs/chart_repository_sync_example.md b/docs/chart_repository_sync_example.md index 41e5523f4..9ca87a3ea 100644 --- a/docs/chart_repository_sync_example.md +++ b/docs/chart_repository_sync_example.md @@ -19,7 +19,7 @@ $ mv alpine-0.1.0.tgz fantastic-charts/ Use helm to generate an updated index.yaml file by passing in the directory path and the url of the remote repository to the `helm repo index` command like this: ```console -$ helm repo index fantastic-charts/ https://storage.googleapis.com/fantastic-charts +$ helm repo index fantastic-charts/ --url https://storage.googleapis.com/fantastic-charts ``` This will generate an updated index.yaml file and place in the `fantastic-charts/` directory.