#helmfile (2024-01)

https://github.com/helmfile/helmfile

Questions and discussion around helmfile https://github.com/roboll/helmfile and https://github.com/cloudposse/helmfiles

Archive: https://archive.sweetops.com/helmfile/

2024-01-05

Seppe Volkaerts avatar
Seppe Volkaerts

Hello! Is there a way to do something similar to helm NOTES.txt with helmfile?

Igor Rodionov avatar
Igor Rodionov

@Seppe Volkaerts Hello, Unfortunately no.

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

You could maybe hack something together using https://helmfile.readthedocs.io/en/latest/#hooks

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

You could literally cat a NOTES file. However variable interpolation is another thing and getting the values you need. If you create. Script that can look up and emit what you need, you can then call it as a hook

Seppe Volkaerts avatar
Seppe Volkaerts

I want to print some extra info at the end of an apply

2024-01-08

2024-01-11

2024-01-18

Rajat Verma avatar
Rajat Verma

Hey everyone , does any have experience on renovate ?

josephgardner avatar
josephgardner

Seems to work well for us

Rajat Verma avatar
Rajat Verma

@josephgardner can you help me on this This is my Makefile:

install:
	@go mod vendor
	@go install github.com/golang/mock/mockgen@latest

and this is my renovate.json file

{
  "$schema": "<https://docs.renovatebot.com/renovate-schema.json>",
  "extends": [
    "config:best-practices"
  ],
  "customManagers": [
    {
      "customType": "regex",
      "fileMatch": [
        "^Makefile$"
      ],
      "matchStrings": [
        "@go install (?<depName>[^@]+)@(?<currentValue>[^\s]+)"
      ],
      "datasourceTemplate": "go"
    }
  ]
}

I am getting error like this

"regex": [
      {
        "deps": [
          {
            "depName": "github.com/golang/mock/mockgen",
            "currentValue": "latest",
            "datasource": "go",
            "replaceString": "@go install github.com/golang/mock/mockgen@latest",
            "updates": [],
            "packageName": "github.com/golang/mock/mockgen",
            "versioning": "semver",
            "warnings": [],
            "skipReason": "invalid-value"
          }
        ],
        "matchStrings": [
          "@go install (?<depName>[^@]+)@(?<currentValue>[^\s]+)"
        ],
        "datasourceTemplate": "go",
        "packageFile": "Makefile"
      }
    ]
  }
}
Shawn avatar
releases:
 - name: foo
   labels:
     tier: "bar"
    values:
      - ../values/{{ .env.name }}/{{ need.labels.tier}}/values.yml
Igor Rodionov avatar
Igor Rodionov

not sure. what is {{ need.labels }} ?

Shawn avatar

something like this possible? i want this static label in my values lookup path

yxxhero avatar
yxxhero

you wanna add label for your resouces?

2024-01-26

    keyboard_arrow_up