From 6bd99ed526ed6ba3c27406dcbb35bd18d598be86 Mon Sep 17 00:00:00 2001 From: Chi-En Wu Date: Tue, 28 Apr 2020 15:25:32 +0800 Subject: [PATCH] chore: move scripts to `scripts/` --- .helmignore | 2 +- README.md | 10 +++++----- create.sh => scripts/create-chart.sh | 0 3 files changed, 6 insertions(+), 6 deletions(-) rename create.sh => scripts/create-chart.sh (100%) 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