Open an issue. Please include descriptions of the following:
- Observations
- Expectations
- Steps to reproduce
- Report the bug first
- Create a pull request for the fix
- Create a new issue to start a discussion around new topic. Label the issue as
new-feature
Argo Events is native to Kubernetes so you'll need a running Kubernetes cluster. This guide includes steps for Minikube
for local development, but if you have another cluster you can ignore the Minikube specific step 3.
- Golang 1.10
- Docker
- dep
go get github.com/argoproj/argo-events
cd $GOPATH/src/github.com/argoproj/argo-events
dep ensure -vendor-only
minikube start
eval $(minikube docker-env)
make all
Follow the rest of the quickstart guide to install components.
If you're making a change to the pkg/apis/sensor/v1alpha1
package, please ensure you re-run the K8 code-generator scripts found in the /hack
folder. First, ensure you have the generate-groups.sh
script at the path: vendor/k8s.io/code-generator/
. Next run the following commands in order:
$ make codegen