diff --git a/.helmignore b/.helmignore index 6156b21..4cb42dc 100644 --- a/.helmignore +++ b/.helmignore @@ -24,6 +24,6 @@ # Others starter/ .github/ +scripts/ gcloud_auth_key.json -create.sh README.md diff --git a/README.md b/README.md index 59a778b..0a80091 100644 --- a/README.md +++ b/README.md @@ -66,20 +66,20 @@ $ helm dep build ### Using Starter -The best way to get started is to use the [`create` script](create.sh) to generate a new chart. +The best way to get started is to use the [`create-chart` script](scripts/create-chart.sh) to generate a new chart. You can fetch that script, and then execute it locally: ```shell -$ curl -fsSL -o create.sh https://raw.githubusercontent.com/hahow/common-chart/master/create.sh -$ chmod 700 create.sh -$ ./create.sh mychart +$ curl -fsSL -o create.sh https://raw.githubusercontent.com/hahow/common-chart/master/scripts/create-chart.sh +$ chmod 700 create-chart.sh +$ ./create-chart.sh mychart ``` or simply ```shell -$ curl https://raw.githubusercontent.com/hahow/common-chart/master/create.sh | bash -s -- mychart +$ curl https://raw.githubusercontent.com/hahow/common-chart/master/scripts/create-chart.sh | bash -s -- mychart ``` Now, there is a chart in `./mychart`. You can edit it and create your own templates. diff --git a/create.sh b/scripts/create-chart.sh similarity index 100% rename from create.sh rename to scripts/create-chart.sh