-
Notifications
You must be signed in to change notification settings - Fork 140
Description
Describe the bug
A couple of weeks ago 1.6.1 was released, however when trying to install it, it cannot be found.
Also public 'indexers' like artifact hub still state 1.5.1 as the latest release: https://artifacthub.io/packages/helm/nginx-gateway-fabric/nginx-gateway-fabric
To Reproduce
Steps to reproduce the behavior:
We use opentofu to install helm within our clusters, but assume it would produce the same with helm repo add/helm install commands.
But our setup is roughly this:
resource "helm_release" "nginx_gateway" {
name = "nginx-gateway-fabric"
repository = "oci://ghcr.io/nginxinc/charts/"
chart = "nginx-gateway-fabric"
version = 1.6.2
namespace = "nginx"
timeout = 300
create_namespace = true
force_update = true
wait = true
wait_for_jobs = true
values = [templatefile("${path.module}/templates/nginx-gateway-fabric.yaml.tpl", {
cluster_name = "my-awesome-cluster"
environment = "production"
}
)]
}
After running this, we get an error back the release cannot be found.
Expected behavior
The latest release as stated on the nginx-gateway-fabric github page to be installed.
Additional context
Add any other context about the problem here. Any log files you want to share.
Metadata
Metadata
Assignees
Labels
Type
Projects
Status