diff --git a/README.md b/README.md index 451ccac..5fd8560 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,8 @@ This chart uses the mssql-linux chart as a dependency. See https://github.com/he # Deploying +The chart can be built and published with the script `publish-chart.ps1`. The commands it uses are shown below. + Package the chart with the command: ``` diff --git a/publish-chart.ps1 b/publish-chart.ps1 new file mode 100644 index 0000000..2b48d19 --- /dev/null +++ b/publish-chart.ps1 @@ -0,0 +1,5 @@ +helm package . +aws s3 cp s3://octopus-helm-charts/index.yaml . +helm repo index . --url https://octopus-helm-charts.s3.amazonaws.com --merge index.yaml +aws s3 cp *.tgz s3://octopus-helm-charts +aws s3 cp index.yaml s3://octopus-helm-charts \ No newline at end of file