baseline/.renovaterc.json
Sebastian Mark 818b504fd5 break: switch from k3s to k0s (in docker)
- replace k3s with k0s
  - remove argocd-init.yml
  - remove pb_install.yml
  - add docker-compose.yml for k0s setup
  - add k0s-config.yaml for k0s configuration
  - add metallb loadbalancer
    - add metallb ip pool
  - add openebs local storage
- update README

🤖
2024-09-04 14:08:23 +02:00

33 lines
860 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>infrastructure/renovate-config"
],
"customManagers": [
{
"customType": "regex",
"description": "ArgoCD",
"fileMatch": [
"k0s-config\\.yaml$"
],
"matchStrings": [
"\\s+version:\\s(?<currentValue>.*)\\s+#\\s+depName=(?<depName>.*)\\s+repoUrl=(?<registryUrl>.*)"
],
"datasourceTemplate": "helm"
},
{
"customType": "regex",
"description": "Baseline",
"fileMatch": [
"\\.jsonnet$"
],
"matchStrings": [
"\\s+chart::\\s\\\"(?<depName>.*)\\\",",
"\\s+repo::\\s\\\"(?<registryUrl>.*)\\\",",
"\\s+version::\\s\\\"(?<currentValue>.*)\\\","
],
"matchStringsStrategy": "combination",
"datasourceTemplate": "helm"
}
]
}