Skip to content

Commit

Permalink
patch v0.12.1 (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
VaibhavPage authored Feb 18, 2020
1 parent 736058a commit 41a804a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ override LDFLAGS += \
# docker image publishing options
DOCKER_PUSH?=true
IMAGE_NAMESPACE?=argoproj
IMAGE_TAG?=v0.12
IMAGE_TAG?=v0.12.1
BUILD_BINARY?=true

ifeq (${DOCKER_PUSH},true)
Expand Down Expand Up @@ -64,7 +64,7 @@ sensor-controller-linux:
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 make sensor-controller

sensor-controller-image:
@if [ "$(BUILD_BINARY)" = "true" ]; then sensor-controller-linux; fi
@if [ "$(BUILD_BINARY)" = "true" ]; then make sensor-controller-linux; fi
docker build -t $(IMAGE_PREFIX)sensor-controller:$(IMAGE_TAG) -f ./controllers/sensor/Dockerfile .
@if [ "$(DOCKER_PUSH)" = "true" ] ; then docker push $(IMAGE_PREFIX)sensor-controller:$(IMAGE_TAG) ; fi

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12
0.12.1
12 changes: 6 additions & 6 deletions examples/event-sources/file.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ spec:
# supported types are: CREATE, WRITE, REMOVE, RENAME, CHMOD
eventType: "CREATE"

example-with-path-regex:
watchPathConfig:
directory: "/bin/"
# the gateway will watch events for path that matches following regex
pathRegexp: "([a-z]+).txt"
eventType: "CREATE"
# example-with-path-regex:
# watchPathConfig:
# directory: "/bin/"
# # the gateway will watch events for path that matches following regex
# pathRegexp: "([a-z]+).txt"
# eventType: "CREATE"
7 changes: 6 additions & 1 deletion examples/gateways/file.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ spec:
- name: file-events
image: argoproj/file-gateway:v0.12
imagePullPolicy: Always
command: ["/bin/file-gateway"]
volumeMounts:
- mountPath: /bin
name: example-with-path
volumes:
- name: example-with-path
emptyDir: {}
serviceAccountName: argo-events-sa
subscribers:
http:
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
// Version information set by link flags during build. We fall back to these sane
// default values when we build outside the Makefile context (e.g. go build or go test).
var (
version = "v0.12" // value from VERSION file
version = "v0.12.1" // value from VERSION file
buildDate = "1970-01-01T00:00:00Z" // output from `date -u +'%Y-%m-%dT%H:%M:%SZ'`
gitCommit = "" // output from `git rev-parse HEAD`
gitTag = "" // output from `git describe --exact-match --tags HEAD` (if clean tree state)
Expand Down

0 comments on commit 41a804a

Please sign in to comment.