hi everyone !
newbie on Helmfile i've started with this wonderful tools on sunday night.
atm i'm struggling with an issue about
diffand my
values.yaml#helmfile.yaml
templates:
default: &default
cleanupOnFail: true
chart: "{{`{{ .Release.Name }}`}}/{{`{{ .Release.Name }}`}}"
namespace: "{{`{{ .Release.Name }}`}}"
missingFileHandler: Warn
# This section allows the destruction of the namespaces when: helmfile destroy
hooks:
- events: ["postuninstall"]
showlogs: true
command: "kubectl"
args: ["delete", "namespaces", "{{`{{.Release.Namespace}}`}}"]
values:
- "environments/{{`{{ .Release.Name }}`}}/{{`{{ .Environment.Name }}`}}.yaml"
releases:
# - name: cert-manager
# <<: *default
# namespace: certs
- name: traefik
<<: *default
namespace: traefik
---
#environments/traefik/dev.yaml
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
name: traefik-dashboard
namespace: traefik
spec:
entryPoints:
- web
- websecure
routes:
- match: Host(`machin.com`) # Hostname to match
kind: Rule
services: # Service to redirect requests to
- name: api@internal # Special service created by Traefik pod
kind: TraefikService
first time i deploy everything seems good,,
but the next time i deploy with something changed into my
dev.yamlfile
helmfiledo not sow any
diff and i see nothing in K8S
=>
$ helmfile -e dev apply --skip-depsany idea ?