The Helm plugin that provides s3 protocol support.
This allows you to have private Helm chart repositories hosted on Amazon S3.
The installation itself is simple as:
$ helm plugin install https://github.com/hypnoglow/helm-s3.git
You can install a specific release version:
$ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.4.0
To use the plugin, you do not need any special dependencies. The installer will download versioned release with prebuilt binary from github releases. However, if you want to build the plugin from source, or you want to contribute to the plugin, please see these instructions.
Because this plugin assumes private access to S3, you need to provide valid AWS credentials. Two options are available:
-
The plugin is able to read AWS default environment variables:
$AWS_ACCESS_KEY_ID
,$AWS_SECRET_ACCESS_KEY
and$AWS_DEFAULT_REGION
.$AWS_SESSION_TOKEN
is also supported but not required. -
If you already using
aws-cli
, you may already have files$HOME/.aws/credentials
and$HOME/.aws/config
. If so, you are good to go - the plugin can read your credentials from those files. In case of multiple profiles, the plugin also understandsAWS_PROFILE
environment variable. Use it to let plugin select specific profile, or leave it to use default profile. Example:$ export AWS_PROFILE=app-dev $ helm repo add myrepo s3://app-dev-bucket/charts
To minimize security issues, remember to configure your IAM user policies properly - the plugin requires only S3 Read access on specific bucket.
For now let's omit the process of uploading repository index and charts to s3 and assume
you already have your repository index.yaml
file on s3 under path s3://bucket-name/charts/index.yaml
and a chart archive epicservice-0.5.1.tgz
under path s3://bucket-name/charts/epicservice-0.5.1.tgz
.
Add your repository:
$ helm repo add coolcharts s3://bucket-name/charts
Now you can use it as any other Helm chart repository. Try:
$ helm search coolcharts
NAME VERSION DESCRIPTION
coolcharts/epicservice 0.5.1 A Helm chart.
$ helm install coolchart/epicservice --version "0.5.1"
Fetching also works:
$ helm fetch s3://bucket-name/charts/epicservice-0.5.1.tgz
To create a new repository, use init:
$ helm s3 init s3://bucket-name/charts
This command generates an empty index.yaml and uploads it to the S3 bucket
under /charts
key.
To work with this repo by it's name, first you need to add it using native helm command:
$ helm repo add mynewrepo s3://bucket-name/charts
Now you can push your chart to this repo:
$ helm s3 push ./epicservice-0.7.2.tgz mynewrepo
On push, remote repo index is automatically updated. To sync your local index, run:
$ helm repo update
Now your pushed chart is available:
$ helm search mynewrepo
NAME VERSION DESCRIPTION
mynewrepo/epicservice 0.7.2 A Helm chart.
To delete specific chart version from the repository:
$ helm s3 delete epicservice --version 0.7.2 mynewrepo
As always, remote repo index updated automatically again. To sync local, run:
$ helm repo update
The chart is deleted from the repo:
$ helm search mynewrepo/epicservice
No results found
$ helm plugin remove s3
Contributions are welcome. Please see these instructions that will help you to develop the plugin.