From ea738bc4cff848716fa77f7de5f3fefffebe33de Mon Sep 17 00:00:00 2001 From: Derek Wang Date: Wed, 4 Nov 2020 22:29:18 -0800 Subject: [PATCH] bump to v1.1.0-rc1 --- Makefile | 2 +- manifests/base/kustomization.yaml | 10 +++++----- manifests/install.yaml | 14 +++++++------- manifests/namespace-install.yaml | 14 +++++++------- version.go | 2 +- 5 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Makefile b/Makefile index 0c1df5e5f1..c7e611cd22 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ override LDFLAGS += \ # docker image publishing options DOCKER_PUSH?=false IMAGE_NAMESPACE?=argoproj -IMAGE_TAG?=v1.0.0 +IMAGE_TAG?=v1.1.0-rc1 ifeq (${DOCKER_PUSH},true) ifndef IMAGE_NAMESPACE diff --git a/manifests/base/kustomization.yaml b/manifests/base/kustomization.yaml index ab4687a7c9..68c534aa62 100644 --- a/manifests/base/kustomization.yaml +++ b/manifests/base/kustomization.yaml @@ -14,11 +14,11 @@ resources: images: - name: argoproj/sensor-controller - newTag: latest + newTag: v1.1.0-rc1 - name: argoproj/eventbus-controller - newTag: latest + newTag: v1.1.0-rc1 - name: argoproj/eventsource-controller - newTag: latest + newTag: v1.1.0-rc1 patchesStrategicMerge: - |- @@ -33,7 +33,7 @@ patchesStrategicMerge: - name: eventsource-controller env: - name: EVENTSOURCE_IMAGE - value: argoproj/eventsource:latest + value: argoproj/eventsource:v1.1.0-rc1 - |- apiVersion: apps/v1 kind: Deployment @@ -46,4 +46,4 @@ patchesStrategicMerge: - name: sensor-controller env: - name: SENSOR_IMAGE - value: argoproj/sensor:latest + value: argoproj/sensor:v1.1.0-rc1 diff --git a/manifests/install.yaml b/manifests/install.yaml index 7df334f08d..683f44fbfa 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -264,7 +264,7 @@ spec: value: nats-streaming:0.17.0 - name: NATS_METRICS_EXPORTER_IMAGE value: synadia/prometheus-nats-exporter:0.6.2 - image: argoproj/eventbus-controller:latest + image: argoproj/eventbus-controller:v1.1.0-rc1 imagePullPolicy: Always livenessProbe: httpGet: @@ -301,13 +301,13 @@ spec: spec: containers: - env: + - name: EVENTSOURCE_IMAGE + value: argoproj/eventsource:v1.1.0-rc1 - name: NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - - name: EVENTSOURCE_IMAGE - value: argoproj/eventsource:latest - image: argoproj/eventsource-controller:latest + image: argoproj/eventsource-controller:v1.1.0-rc1 imagePullPolicy: Always livenessProbe: httpGet: @@ -344,13 +344,13 @@ spec: spec: containers: - env: + - name: SENSOR_IMAGE + value: argoproj/sensor:v1.1.0-rc1 - name: NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - - name: SENSOR_IMAGE - value: argoproj/sensor:latest - image: argoproj/sensor-controller:latest + image: argoproj/sensor-controller:v1.1.0-rc1 livenessProbe: httpGet: path: /healthz diff --git a/manifests/namespace-install.yaml b/manifests/namespace-install.yaml index 161f58cef3..df14e2b933 100644 --- a/manifests/namespace-install.yaml +++ b/manifests/namespace-install.yaml @@ -181,7 +181,7 @@ spec: value: nats-streaming:0.17.0 - name: NATS_METRICS_EXPORTER_IMAGE value: synadia/prometheus-nats-exporter:0.6.2 - image: argoproj/eventbus-controller:latest + image: argoproj/eventbus-controller:v1.1.0-rc1 imagePullPolicy: Always livenessProbe: httpGet: @@ -220,13 +220,13 @@ spec: - args: - --namespaced env: + - name: EVENTSOURCE_IMAGE + value: argoproj/eventsource:v1.1.0-rc1 - name: NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - - name: EVENTSOURCE_IMAGE - value: argoproj/eventsource:latest - image: argoproj/eventsource-controller:latest + image: argoproj/eventsource-controller:v1.1.0-rc1 imagePullPolicy: Always livenessProbe: httpGet: @@ -265,13 +265,13 @@ spec: - args: - --namespaced env: + - name: SENSOR_IMAGE + value: argoproj/sensor:v1.1.0-rc1 - name: NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - - name: SENSOR_IMAGE - value: argoproj/sensor:latest - image: argoproj/sensor-controller:latest + image: argoproj/sensor-controller:v1.1.0-rc1 livenessProbe: httpGet: path: /healthz diff --git a/version.go b/version.go index 2a7fd025f1..1f5b8f8259 100644 --- a/version.go +++ b/version.go @@ -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 = "1.0.0" // value from VERSION file + version = "v1.1.0-rc1" // 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)