Skip to content

Commit f4843bc

Browse files
committed
Revert "chore: release: bump to v0.36.1 in 0.36.x"
This reverts commit 24195fe.
1 parent 32f2e47 commit f4843bc

File tree

9 files changed

+32
-32
lines changed

9 files changed

+32
-32
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ ifndef VERBOSE
2222
endif
2323

2424
export NAMESPACE ?= devworkspace-controller
25-
export DWO_IMG ?= quay.io/devfile/devworkspace-controller:v0.36.1
26-
export DWO_BUNDLE_IMG ?= quay.io/devfile/devworkspace-operator-bundle:v0.36.1
25+
export DWO_IMG ?= quay.io/devfile/devworkspace-controller:v0.36.0
26+
export DWO_BUNDLE_IMG ?= quay.io/devfile/devworkspace-operator-bundle:v0.36.0
2727
export DWO_INDEX_IMG ?= quay.io/devfile/devworkspace-operator-index:release
28-
export PROJECT_CLONE_IMG ?= quay.io/devfile/project-clone:v0.36.1
28+
export PROJECT_CLONE_IMG ?= quay.io/devfile/project-clone:v0.36.0
2929
export PULL_POLICY ?= Always
3030
export DEFAULT_ROUTING ?= basic
3131
export KUBECONFIG ?= ${HOME}/.kube/config
@@ -192,7 +192,7 @@ docker-build:
192192
### docker-push: Pushes the controller image
193193
docker-push:
194194
ifneq ($(INITIATOR),CI)
195-
ifeq ($(DWO_IMG),quay.io/devfile/devworkspace-controller:v0.36.1)
195+
ifeq ($(DWO_IMG),quay.io/devfile/devworkspace-controller:v0.36.0)
196196
@echo -n "Are you sure you want to push $(DWO_IMG)? [y/N] " && read ans && [ $${ans:-N} = y ]
197197
endif
198198
endif

build/scripts/generate_deployment.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ Arguments:
5252
Controller (and webhook) image to use for the default deployment.
5353
Used only when '--use-defaults' is passed; otherwise, the value of
5454
the DWO_IMG environment variable is used. If unspecified, the default
55-
value of 'quay.io/devfile/devworkspace-controller:v0.36.1' is used
55+
value of 'quay.io/devfile/devworkspace-controller:v0.36.0' is used
5656
--project-clone-image
5757
Image to use for the project clone init container. Used only when
5858
'--use-defaults' is passed; otherwise, the value of the PROJECT_CLONE_IMG
5959
environment variable is used. If unspecifed, the default value of
60-
'quay.io/devfile/project-clone:v0.36.1' is used.
60+
'quay.io/devfile/project-clone:v0.36.0' is used.
6161
--split-yaml
6262
Parse output file combined.yaml into a yaml file for each record
6363
in combined yaml. Files are output to the 'objects' subdirectory
@@ -116,8 +116,8 @@ done
116116
if $USE_DEFAULT_ENV; then
117117
echo "Using defaults for environment variables"
118118
export NAMESPACE=devworkspace-controller
119-
export DWO_IMG=${DEFAULT_DWO_IMG:-"quay.io/devfile/devworkspace-controller:v0.36.1"}
120-
export PROJECT_CLONE_IMG=${PROJECT_CLONE_IMG:-"quay.io/devfile/project-clone:v0.36.1"}
119+
export DWO_IMG=${DEFAULT_DWO_IMG:-"quay.io/devfile/devworkspace-controller:v0.36.0"}
120+
export PROJECT_CLONE_IMG=${PROJECT_CLONE_IMG:-"quay.io/devfile/project-clone:v0.36.0"}
121121
export PULL_POLICY=Always
122122
export DEFAULT_ROUTING=basic
123123
export DEVWORKSPACE_API_VERSION=a6ec0a38307b63a29fad2eea945cc69bee97a683

deploy/bundle/manifests/devworkspace-operator.clusterserviceversion.yaml

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/deployment/kubernetes/combined.yaml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/deployment/kubernetes/objects/devworkspace-controller-manager.Deployment.yaml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/deployment/openshift/combined.yaml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/deployment/openshift/objects/devworkspace-controller-manager.Deployment.yaml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/templates/components/csv/clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Large diffs are not rendered by default.

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ package version
1717

1818
var (
1919
// Version is the operator version
20-
Version = "v0.36.1"
20+
Version = "v0.36.0"
2121
// Commit is the commit hash corresponding to the code that was built. Can be suffixed with `-dirty`
2222
Commit string = "unknown"
2323
// BuildTime is the time of build of the binary

0 commit comments

Comments
 (0)