Skip to content

Commit 44eccc3

Browse files
committed
Update manifests to v1.0.0-rc2
1 parent 71b65ff commit 44eccc3

6 files changed

Lines changed: 18 additions & 18 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ override LDFLAGS += \
1919
# docker image publishing options
2020
DOCKER_PUSH?=false
2121
IMAGE_NAMESPACE?=argoproj
22-
IMAGE_TAG?=v0.17.0
22+
IMAGE_TAG?=v1.0.0-rc2
2323

2424
ifeq (${DOCKER_PUSH},true)
2525
ifndef IMAGE_NAMESPACE

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.17.0
1+
1.0.0-rc2

manifests/base/kustomization.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ resources:
1414

1515
images:
1616
- name: argoproj/sensor-controller
17-
newTag: v1.0.0-rc1
17+
newTag: v1.0.0-rc2
1818
- name: argoproj/eventbus-controller
19-
newTag: v1.0.0-rc1
19+
newTag: v1.0.0-rc2
2020
- name: argoproj/eventsource-controller
21-
newTag: v1.0.0-rc1
21+
newTag: v1.0.0-rc2
2222

2323
patchesStrategicMerge:
2424
- |-
@@ -33,7 +33,7 @@ patchesStrategicMerge:
3333
- name: eventsource-controller
3434
env:
3535
- name: EVENTSOURCE_IMAGE
36-
value: argoproj/eventsource:v1.0.0-rc1
36+
value: argoproj/eventsource:v1.0.0-rc2
3737
- |-
3838
apiVersion: apps/v1
3939
kind: Deployment
@@ -46,4 +46,4 @@ patchesStrategicMerge:
4646
- name: sensor-controller
4747
env:
4848
- name: SENSOR_IMAGE
49-
value: argoproj/sensor:v1.0.0-rc1
49+
value: argoproj/sensor:v1.0.0-rc2

manifests/install.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ spec:
264264
value: nats-streaming:0.17.0
265265
- name: NATS_METRICS_EXPORTER_IMAGE
266266
value: synadia/prometheus-nats-exporter:0.6.2
267-
image: argoproj/eventbus-controller:v1.0.0-rc1
267+
image: argoproj/eventbus-controller:v1.0.0-rc2
268268
imagePullPolicy: Always
269269
name: eventbus-controller
270270
serviceAccountName: argo-events-sa
@@ -291,8 +291,8 @@ spec:
291291
fieldRef:
292292
fieldPath: metadata.namespace
293293
- name: EVENTSOURCE_IMAGE
294-
value: argoproj/eventsource:v1.0.0-rc1
295-
image: argoproj/eventsource-controller:v1.0.0-rc1
294+
value: argoproj/eventsource:v1.0.0-rc2
295+
image: argoproj/eventsource-controller:v1.0.0-rc2
296296
imagePullPolicy: Always
297297
name: eventsource-controller
298298
serviceAccountName: argo-events-sa
@@ -319,7 +319,7 @@ spec:
319319
fieldRef:
320320
fieldPath: metadata.namespace
321321
- name: SENSOR_IMAGE
322-
value: argoproj/sensor:v1.0.0-rc1
323-
image: argoproj/sensor-controller:v1.0.0-rc1
322+
value: argoproj/sensor:v1.0.0-rc2
323+
image: argoproj/sensor-controller:v1.0.0-rc2
324324
name: sensor-controller
325325
serviceAccountName: argo-events-sa

manifests/namespace-install.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ spec:
181181
value: nats-streaming:0.17.0
182182
- name: NATS_METRICS_EXPORTER_IMAGE
183183
value: synadia/prometheus-nats-exporter:0.6.2
184-
image: argoproj/eventbus-controller:v1.0.0-rc1
184+
image: argoproj/eventbus-controller:v1.0.0-rc2
185185
imagePullPolicy: Always
186186
name: eventbus-controller
187187
serviceAccountName: argo-events-sa
@@ -210,8 +210,8 @@ spec:
210210
fieldRef:
211211
fieldPath: metadata.namespace
212212
- name: EVENTSOURCE_IMAGE
213-
value: argoproj/eventsource:v1.0.0-rc1
214-
image: argoproj/eventsource-controller:v1.0.0-rc1
213+
value: argoproj/eventsource:v1.0.0-rc2
214+
image: argoproj/eventsource-controller:v1.0.0-rc2
215215
imagePullPolicy: Always
216216
name: eventsource-controller
217217
serviceAccountName: argo-events-sa
@@ -240,7 +240,7 @@ spec:
240240
fieldRef:
241241
fieldPath: metadata.namespace
242242
- name: SENSOR_IMAGE
243-
value: argoproj/sensor:v1.0.0-rc1
244-
image: argoproj/sensor-controller:v1.0.0-rc1
243+
value: argoproj/sensor:v1.0.0-rc2
244+
image: argoproj/sensor-controller:v1.0.0-rc2
245245
name: sensor-controller
246246
serviceAccountName: argo-events-sa

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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).
2626
var (
27-
version = "0.17.0" // value from VERSION file
27+
version = "1.0.0-rc2" // 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)

0 commit comments

Comments
 (0)