File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v0.15.0
4+
5+ + Made deployment/Service template optional in Gateway #598
6+ + Made deployment/Service template optional in Sensor #599
7+ + Support K8s Trigger Patch Operation #643
8+ + Support headers for HTTP trigger #642
9+ + Introduced Custom Triggers #620
10+ + Enabled workflow identity for GCP PubSub gateway #593
11+
312## v0.14.0
413
514+ Introducing Slack notification trigger. #576
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ override LDFLAGS += \
1717# docker image publishing options
1818DOCKER_PUSH? =true
1919IMAGE_NAMESPACE? =argoproj
20- IMAGE_TAG? =v0.14 .0
20+ IMAGE_TAG? =v0.15 .0
2121BUILD_BINARY? =true
2222
2323ifeq (${DOCKER_PUSH},true)
Original file line number Diff line number Diff line change 11# Roadmap
22
3- - Custom trigger for Kubeflow, Airflow and TektonCD pipeline.
4- - Read-Only UI
5- - Apache Pulsar Gateway
3+ - Read-Only UI.
4+ - Argo Events CLI.
5+ - EventBus for event deliveries.
6+ - Unified Gateway and EventSource.
Original file line number Diff line number Diff line change 1- v0.14 .0
1+ v0.15 .0
Original file line number Diff line number Diff line change 22 "swagger" : " 2.0" ,
33 "info" : {
44 "title" : " Argo" ,
5- "version" : " v0.14 .0"
5+ "version" : " v0.15 .0"
66 },
77 "paths" : {},
88 "definitions" : {
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ Make sure you have helm client installed and Tiller server is running. To instal
134134 helm repo add argo https://argoproj.github.io/argo-helm
135135
1361361 . The helm chart for argo-events is maintained solely by the community and hence the image version for controllers can go out of sync.
137- Update the image version in values.yaml to v0.14 .0.
137+ Update the image version in values.yaml to v0.15 .0.
138138
1391391 . Install ` argo-events ` chart
140140
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ resources:
1515
1616images :
1717 - name : argoproj/gateway-controller
18- newTag : v0.14 .0
18+ newTag : v0.15 .0
1919 - name : argoproj/sensor-controller
20- newTag : v0.14 .0
20+ newTag : v0.15 .0
2121
2222patchesStrategicMerge :
2323 - |-
@@ -32,9 +32,9 @@ patchesStrategicMerge:
3232 - name: gateway-controller
3333 env:
3434 - name: GATEWAY_CLIENT_IMAGE
35- value: argoproj/gateway-client:v0.14 .0
35+ value: argoproj/gateway-client:v0.15 .0
3636 - name: GATEWAY_IMAGE_VERSION
37- value: v0.14 .0
37+ value: v0.15 .0
3838 - |-
3939 apiVersion: apps/v1
4040 kind: Deployment
@@ -47,4 +47,4 @@ patchesStrategicMerge:
4747 - name: sensor-controller
4848 env:
4949 - name: SENSOR_IMAGE
50- value: argoproj/sensor:v0.14 .0
50+ value: argoproj/sensor:v0.15 .0
Original file line number Diff line number Diff line change @@ -284,12 +284,12 @@ spec:
284284 - name : CONTROLLER_CONFIG_MAP
285285 value : gateway-controller-configmap
286286 - name : GATEWAY_CLIENT_IMAGE
287- value : argoproj/gateway-client:v0.14 .0
287+ value : argoproj/gateway-client:v0.15 .0
288288 - name : GATEWAY_IMAGE_REGISTRY
289289 value : docker.io
290290 - name : GATEWAY_IMAGE_VERSION
291- value : v0.14 .0
292- image : argoproj/gateway-controller:v0.14 .0
291+ value : v0.15 .0
292+ image : argoproj/gateway-controller:v0.15 .0
293293 name : gateway-controller
294294 serviceAccountName : argo-events-sa
295295---
@@ -317,7 +317,7 @@ spec:
317317 - name : CONTROLLER_CONFIG_MAP
318318 value : sensor-controller-configmap
319319 - name : SENSOR_IMAGE
320- value : argoproj/sensor:v0.14 .0
321- image : argoproj/sensor-controller:v0.14 .0
320+ value : argoproj/sensor:v0.15 .0
321+ image : argoproj/sensor-controller:v0.15 .0
322322 name : sensor-controller
323323 serviceAccountName : argo-events-sa
Original file line number Diff line number Diff line change @@ -176,12 +176,12 @@ spec:
176176 - name : CONTROLLER_CONFIG_MAP
177177 value : gateway-controller-configmap
178178 - name : GATEWAY_CLIENT_IMAGE
179- value : argoproj/gateway-client:v0.14 .0
179+ value : argoproj/gateway-client:v0.15 .0
180180 - name : GATEWAY_IMAGE_REGISTRY
181181 value : docker.io
182182 - name : GATEWAY_IMAGE_VERSION
183- value : v0.14 .0
184- image : argoproj/gateway-controller:v0.14 .0
183+ value : v0.15 .0
184+ image : argoproj/gateway-controller:v0.15 .0
185185 name : gateway-controller
186186 serviceAccountName : argo-events-sa
187187---
@@ -209,7 +209,7 @@ spec:
209209 - name : CONTROLLER_CONFIG_MAP
210210 value : sensor-controller-configmap
211211 - name : SENSOR_IMAGE
212- value : argoproj/sensor:v0.14 .0
213- image : argoproj/sensor-controller:v0.14 .0
212+ value : argoproj/sensor:v0.15 .0
213+ image : argoproj/sensor-controller:v0.15 .0
214214 name : sensor-controller
215215 serviceAccountName : argo-events-sa
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import (
2424// Version information set by link flags during build. We fall back to these sane
2525// default values when we build outside the Makefile context (e.g. go build or go test).
2626var (
27- version = "v0.14 .0" // value from VERSION file
27+ version = "v0.15 .0" // value from VERSION file
2828 buildDate = "1970-01-01T00:00:00Z" // output from `date -u +'%Y-%m-%dT%H:%M:%SZ'`
2929 gitCommit = "" // output from `git rev-parse HEAD`
3030 gitTag = "" // output from `git describe --exact-match --tags HEAD` (if clean tree state)
You can’t perform that action at this time.
0 commit comments