20 lines
456 B
YAML
20 lines
456 B
YAML
---
|
|
# ----------------------------------------------
|
|
# -- Helmfile apply changes
|
|
# ----------------------------------------------
|
|
kind: pipeline
|
|
type: kubernetes
|
|
name: Apply helmfile changes
|
|
|
|
|
|
steps:
|
|
- name: Diff helmfiles
|
|
image: ghcr.io/helmfile/helmfile:canary
|
|
environment:
|
|
KUBECONFIG:
|
|
from_secret: KUBECONFIG
|
|
commands:
|
|
- mkdir $HOME/.kube
|
|
- echo $KUBECONFIG | base64 -d > $HOME/.kube/config
|
|
- helmfile -e badhouseplants diff
|