14 lines
532 B
Makefile
14 lines
532 B
Makefile
[private]
|
|
default:
|
|
just --list -u
|
|
|
|
# Lint a specifc helm chart
|
|
l HELMFILE ENV="default":
|
|
# helmfile --environment={{ENV}} lint --args --quiet --skip-deps --skip-refresh -f helmfile.d/{{HELMFILE}}.yaml.gotmpl
|
|
helmfile --environment={{ENV}} lint --args --quiet -f helmfile.d/{{HELMFILE}}.yaml.gotmpl
|
|
|
|
# NOTE: Render a specifc helm chart
|
|
r HELMFILE ENV="default":
|
|
helmfile --environment={{ENV}} template -q -f helmfile.d/{{HELMFILE}}.yaml.gotmpl --output-dir-template="../_manifests/{{HELMFILE}}/{{ENV}}/{{{{.Release.Name }}"
|
|
|