-
Notifications
You must be signed in to change notification settings - Fork 748
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed to create GCP PubSub EventSource #1194
Comments
If this issue happens in your cluster, you can easily reproduce it with a simple Calendar EventSource like below, and you will not find an apiVersion: argoproj.io/v1alpha1
kind: EventSource
metadata:
name: calendar
spec:
calendar:
example1:
interval: 30s However, I wasn't able to reproduce it by using the same approach to install v1.3.0 to a k8s cluster with the same version as yours.... |
Ah, thanks for the hint, I'll try that one and see if it works! If it fails to mount an |
Just found the bug, I'll put a fix quickly and get it released in v1.3.1. You can workaround the issue by using an EventBus with apiVersion: argoproj.io/v1alpha1
kind: EventBus
metadata:
name: default
spec:
nats:
native:
auth: token |
* fix: Always mount tmp emptyDir Signed-off-by: Derek Wang <whynowy@gmail.com>
Describe the bug
I've installed Argo-Events from fresh using kustomize set to tag
v1.3.0
by using this kustomization file:namespace.yaml
:I am running Argo server version
v3.0.2
When I try to create a GCP PubSub EventSource using the example provided here (but changing the topic and project to fit me) I get the following error:
This results in the pod for the eventsource not getting started and gets stuck in a crash loop due to this
"error":"open /tmp/graft.log: no such file or directory"
error.To Reproduce
Steps to reproduce the behavior:
kubectl apply -k kustomization.yaml
on the above file (roles provided by these)Expected behavior
I expect the event source to be created successfully by the controller and successfully talking to the eventbus and connecting to the pubsub subscription!
Environment:
Message from the maintainers:
If you wish to see this enhancement implemented please add a 👍 reaction to this issue! We often sort issues this way to know what to prioritize.
The text was updated successfully, but these errors were encountered: