Skip to content

Commit

Permalink
chore: release 0.15.0 (#649)
Browse files Browse the repository at this point in the history
* chore: release v0.15.0

* chore: release v0.15.0
  • Loading branch information
VaibhavPage authored May 8, 2020
1 parent ef70ec0 commit d47439d
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 23 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## v0.15.0

+ Made deployment/Service template optional in Gateway #598
+ Made deployment/Service template optional in Sensor #599
+ Support K8s Trigger Patch Operation #643
+ Support headers for HTTP trigger #642
+ Introduced Custom Triggers #620
+ Enabled workflow identity for GCP PubSub gateway #593

## v0.14.0

+ Introducing Slack notification trigger. #576
Expand Down
2 changes: 1 addition & 1 deletion 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.14.0
IMAGE_TAG?=v0.15.0
BUILD_BINARY?=true

ifeq (${DOCKER_PUSH},true)
Expand Down
7 changes: 4 additions & 3 deletions ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Roadmap

- Custom trigger for Kubeflow, Airflow and TektonCD pipeline.
- Read-Only UI
- Apache Pulsar Gateway
- Read-Only UI.
- Argo Events CLI.
- EventBus for event deliveries.
- Unified Gateway and EventSource.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.14.0
v0.15.0
2 changes: 1 addition & 1 deletion api/openapi-spec/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"swagger": "2.0",
"info": {
"title": "Argo",
"version": "v0.14.0"
"version": "v0.15.0"
},
"paths": {},
"definitions": {
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ Make sure you have helm client installed and Tiller server is running. To instal
helm repo add argo https://argoproj.github.io/argo-helm

1. The helm chart for argo-events is maintained solely by the community and hence the image version for controllers can go out of sync.
Update the image version in values.yaml to v0.14.0.
Update the image version in values.yaml to v0.15.0.

1. Install `argo-events` chart

Expand Down
10 changes: 5 additions & 5 deletions manifests/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ resources:

images:
- name: argoproj/gateway-controller
newTag: v0.14.0
newTag: v0.15.0
- name: argoproj/sensor-controller
newTag: v0.14.0
newTag: v0.15.0

patchesStrategicMerge:
- |-
Expand All @@ -32,9 +32,9 @@ patchesStrategicMerge:
- name: gateway-controller
env:
- name: GATEWAY_CLIENT_IMAGE
value: argoproj/gateway-client:v0.14.0
value: argoproj/gateway-client:v0.15.0
- name: GATEWAY_IMAGE_VERSION
value: v0.14.0
value: v0.15.0
- |-
apiVersion: apps/v1
kind: Deployment
Expand All @@ -47,4 +47,4 @@ patchesStrategicMerge:
- name: sensor-controller
env:
- name: SENSOR_IMAGE
value: argoproj/sensor:v0.14.0
value: argoproj/sensor:v0.15.0
10 changes: 5 additions & 5 deletions manifests/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -284,12 +284,12 @@ spec:
- name: CONTROLLER_CONFIG_MAP
value: gateway-controller-configmap
- name: GATEWAY_CLIENT_IMAGE
value: argoproj/gateway-client:v0.14.0
value: argoproj/gateway-client:v0.15.0
- name: GATEWAY_IMAGE_REGISTRY
value: docker.io
- name: GATEWAY_IMAGE_VERSION
value: v0.14.0
image: argoproj/gateway-controller:v0.14.0
value: v0.15.0
image: argoproj/gateway-controller:v0.15.0
name: gateway-controller
serviceAccountName: argo-events-sa
---
Expand Down Expand Up @@ -317,7 +317,7 @@ spec:
- name: CONTROLLER_CONFIG_MAP
value: sensor-controller-configmap
- name: SENSOR_IMAGE
value: argoproj/sensor:v0.14.0
image: argoproj/sensor-controller:v0.14.0
value: argoproj/sensor:v0.15.0
image: argoproj/sensor-controller:v0.15.0
name: sensor-controller
serviceAccountName: argo-events-sa
10 changes: 5 additions & 5 deletions manifests/namespace-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,12 @@ spec:
- name: CONTROLLER_CONFIG_MAP
value: gateway-controller-configmap
- name: GATEWAY_CLIENT_IMAGE
value: argoproj/gateway-client:v0.14.0
value: argoproj/gateway-client:v0.15.0
- name: GATEWAY_IMAGE_REGISTRY
value: docker.io
- name: GATEWAY_IMAGE_VERSION
value: v0.14.0
image: argoproj/gateway-controller:v0.14.0
value: v0.15.0
image: argoproj/gateway-controller:v0.15.0
name: gateway-controller
serviceAccountName: argo-events-sa
---
Expand Down Expand Up @@ -209,7 +209,7 @@ spec:
- name: CONTROLLER_CONFIG_MAP
value: sensor-controller-configmap
- name: SENSOR_IMAGE
value: argoproj/sensor:v0.14.0
image: argoproj/sensor-controller:v0.14.0
value: argoproj/sensor:v0.15.0
image: argoproj/sensor-controller:v0.15.0
name: sensor-controller
serviceAccountName: argo-events-sa
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.14.0" // value from VERSION file
version = "v0.15.0" // 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 d47439d

Please sign in to comment.