Drone plugins > Helm Push
This plugin allows you to package and publish your helm charts to a docker registry.
Example
kind: pipeline
name: default
steps:
- steps:
name: helm_push
image: plugins/helm-push
settings:
registry_url: LOCATION-docker.pkg.dev
registry_username: oauth2accesstoken
registry_password: <+secrets.getValue("access_token")>
chart_path: chart
gcloud_project_id: PROJECT_ID
registry_namespace: REPO_ID
Properties
registry_url
stringrequireddocker registry where the packaged chart will be published
Default: none
chart_path
stringrequireddirectory containing the helm chart
Default: none
registry_username
stringrequiredusername for the logging in to the registry
Default: none
registry_password
stringrequiredPAT / access token for authentication
Secret recommendedDefault: none
registry_namespace
stringrequirednamespace under which the chart will be published
Default: none
gcloud_project_id
stringoptionalGoogle Artifact Repository project ID
Default: none