Replies: 1 comment
-
If you use helm, you can override the versions and provide your own in https://github.com/argoproj/argo-helm/blob/main/charts/argo-events/values.yaml#L70 . I tried that, it works. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As the title states, I am unable to specify a non-latest jetstream version when configuring an EventBus.
Tested with argo-events 1.7.3, and deployed using argo-events helm chart 2.0.6.
I am getting the following errors from the argo-events controller:
{"level":"error","ts":1668552858.8801756,"logger":"argo-events.eventbus-controller","caller":"eventbus/controller.go:56","msg":"reconcile error","namespace":"argo","eventbus":"default","error":"failed to get jetstream version, err: unsupported version \"2.8.1\", supported versions: \"latest\"","stacktrace":"github.com/argoproj/argo-events/controllers/eventbus.(*reconciler).Reconcile\n\t/home/runner/work/argo-events/argo-events/controllers/eventbus/controller.go:56\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Reconcile\n\t/home/runner/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:114\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler\n\t/home/runner/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:311\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem\n\t/home/runner/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:266\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2\n\t/home/runner/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:227"}
and from the EventBus
failed to get jetstream version, err: unsupported version "2.8.1", supported versions: "latest"
This error makes sense in the context of the generated yaml:
I expected there to be more supported versions in the controller-config.yaml section.
For reference, these are the values I am specifying for my helm chart:
I would appreciate any guidance on working through this issue.
Beta Was this translation helpful? Give feedback.
All reactions