roboll / helmfile

Deploy Kubernetes Helm Charts
MIT License
4.04k stars 566 forks source link

helmfile on windows #638

Open polganesh opened 5 years ago

polganesh commented 5 years ago

Hi, I am trying to use helmfile on my windows machine. steps taken .

context: eks-euc1-dev-infra-vpc001-poc-001   # kube-context (--kube-context)
releases:
  # Published chart example
  - name: grafana             # name of this release
    namespace: monitoring                   # target namespace
    chart: /external-apps/helm-charts/monitoring/grafana                   # repository/chart` syntax
    values:
      - /external-apps/helm-charts/monitoring/grafana/values.yaml                 # value files (--values)

when i executed helmfile -f specification.yaml sync it gives me error Error: could not get Kubernetes config for context "eks-euc1-dev-infra-vpc001-poc-001": context "eks-euc1-dev-infra-vpc001-poc-001" does not exist

mumoshu commented 5 years ago

@polganesh Hey! Does it work if you run helm --kube-context eks-euc1-dev-infra-vpc001-poc-001 WHATEVER_CMD? helmfile just call helm so it should just work if the equivalent helm commands work.

polganesh commented 5 years ago

@mumoshu my helm , kubectl commands all work well

mumoshu commented 5 years ago

@polganesh Thanks! Interesting - Would you mind rerunning helmfile with helmfile --log-level=debug WHATEVER so that we have a bunch of debug logs to help investing it?