Rough draft of an example lint stanza [#8]

This commit is contained in:
Erin Call 2019-12-19 16:37:04 -08:00
parent 485eb4375c
commit 285af8a317
No known key found for this signature in database
GPG Key ID: 4071FF6C15B8DAD1
1 changed files with 36 additions and 0 deletions

36
docs/lint_example.yml Normal file
View File

@ -0,0 +1,36 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: lint
image: pelotech/drone-helm3
settings:
# Helm_command must be set to "lint" in order to lint :)
helm_command: lint
# Mandatory; must be a path to a chart directory.
chart: ./charts/bloge
# Produce debug output from drone-helm itself and send --debug to all helm commands.
debug: true
# The string given here will be passed verbatim to --set.
values: some=local,helm=values
# The string given here will be passed verbatim to --set-string.
string_values: "notAnInt=5"
# Each file will be passed to --values. Filenames must not contain commas.
values_files: "values/underrides.yml,values/overrides.yml"
# Call `helm dependency update` before linting.
update_dependencies: true
# Call `helm repo add` for each repo before linting. Repo names and urls must not contain commas.
repos: "eDeath=https://github.com/bug/e-death,idMaker=https://github.com/nmarks/id-maker"
# Give the --namespace flag to all helm commands.
# TODO: I don't think this setting has any effect on linting; should it be documented?
namespace: my_kube_subset