Skip to content

Commit

Permalink
chore: renovate already handles terraform helm releases (#639)
Browse files Browse the repository at this point in the history
See renovatebot/renovate#6631

No need for a custom regex manager.
  • Loading branch information
jooola authored Jun 24, 2024
1 parent 18d01be commit 89e3781
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev/hcloud-k8s-env/main-setup.tf
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ resource "helm_release" "cilium" {
chart = "cilium"
repository = "https://helm.cilium.io"
namespace = "kube-system"
version = "1.13.1" # renovate: datasource=github-releases depName=cilium/cilium extractVersion=v(?<version>.+)
version = "1.13.1"
wait = true

set {
Expand All @@ -165,7 +165,7 @@ resource "helm_release" "hcloud_cloud_controller_manager" {
chart = "hcloud-cloud-controller-manager"
repository = "https://charts.hetzner.cloud"
namespace = "kube-system"
version = "1.19.0" # renovate: datasource=github-releases depName=hetznercloud/hcloud-cloud-controller-manager extractVersion=v(?<version>.+)
version = "1.19.0"
wait = true

set {
Expand All @@ -179,7 +179,7 @@ resource "helm_release" "docker_registry" {
chart = "docker-registry"
repository = "https://helm.twun.io"
namespace = "kube-system"
version = "2.2.3" # renovate: datasource=github-releases depName=distribution/distribution extractVersion=v(?<version>.+)
version = "2.2.3"
wait = true

set {
Expand Down

0 comments on commit 89e3781

Please sign in to comment.