#helmfile (2024-01)
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
Hello! Is there a way to do something similar to helm NOTES.txt with helmfile?
@Seppe Volkaerts Hello, Unfortunately no.
You could maybe hack something together using https://helmfile.readthedocs.io/en/latest/#hooks
None
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
I want to print some extra info at the end of an apply
2024-01-08
2024-01-11
2024-01-18
Hey everyone , does any have experience on renovate ?
Seems to work well for us
@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"
}
]
}
}
releases:
- name: foo
labels:
tier: "bar"
values:
- ../values/{{ .env.name }}/{{ need.labels.tier}}/values.yml
not sure. what is {{ need.labels }}
?
something like this possible? i want this static label in my values lookup path
you wanna add label for your resouces?