Skip to content

Commit 315b414

Browse files
committed
chore: release: bump to v0.14.1 in 0.14.x
Signed-off-by: Angel Misevski <[email protected]>
1 parent 17f66a5 commit 315b414

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.14.0
26-
export DWO_BUNDLE_IMG ?= quay.io/devfile/devworkspace-operator-bundle:v0.14.0
25+
export DWO_IMG ?= quay.io/devfile/devworkspace-controller:v0.14.1
26+
export DWO_BUNDLE_IMG ?= quay.io/devfile/devworkspace-operator-bundle:v0.14.1
2727
export DWO_INDEX_IMG ?= quay.io/devfile/devworkspace-operator-index:release
28-
export PROJECT_CLONE_IMG ?= quay.io/devfile/project-clone:v0.14.0
28+
export PROJECT_CLONE_IMG ?= quay.io/devfile/project-clone:v0.14.1
2929
export PULL_POLICY ?= Always
3030
export DEFAULT_ROUTING ?= basic
3131
export KUBECONFIG ?= ${HOME}/.kube/config
@@ -187,7 +187,7 @@ docker-build:
187187
### docker-push: Pushes the controller image
188188
docker-push:
189189
ifneq ($(INITIATOR),CI)
190-
ifeq ($(DWO_IMG),quay.io/devfile/devworkspace-controller:v0.14.0)
190+
ifeq ($(DWO_IMG),quay.io/devfile/devworkspace-controller:v0.14.1)
191191
@echo -n "Are you sure you want to push $(DWO_IMG)? [y/N] " && read ans && [ $${ans:-N} = y ]
192192
endif
193193
endif

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/generate-deployment.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ Arguments:
4747
Controller (and webhook) image to use for the default deployment.
4848
Used only when '--use-defaults' is passed; otherwise, the value of
4949
the DWO_IMG environment variable is used. If unspecified, the default
50-
value of 'quay.io/devfile/devworkspace-controller:v0.14.0' is used
50+
value of 'quay.io/devfile/devworkspace-controller:v0.14.1' is used
5151
--project-clone-image
5252
Image to use for the project clone init container. Used only when
5353
'--use-defaults' is passed; otherwise, the value of the PROJECT_CLONE_IMG
5454
environment variable is used. If unspecifed, the default value of
55-
'quay.io/devfile/project-clone:v0.14.0' is used.
55+
'quay.io/devfile/project-clone:v0.14.1' is used.
5656
--split-yaml
5757
Parse output file combined.yaml into a yaml file for each record
5858
in combined yaml. Files are output to the 'objects' subdirectory
@@ -111,8 +111,8 @@ done
111111
if $USE_DEFAULT_ENV; then
112112
echo "Using defaults for environment variables"
113113
export NAMESPACE=devworkspace-controller
114-
export DWO_IMG=${DEFAULT_DWO_IMG:-"quay.io/devfile/devworkspace-controller:v0.14.0"}
115-
export PROJECT_CLONE_IMG=${PROJECT_CLONE_IMG:-"quay.io/devfile/project-clone:v0.14.0"}
114+
export DWO_IMG=${DEFAULT_DWO_IMG:-"quay.io/devfile/devworkspace-controller:v0.14.1"}
115+
export PROJECT_CLONE_IMG=${PROJECT_CLONE_IMG:-"quay.io/devfile/project-clone:v0.14.1"}
116116
export PULL_POLICY=Always
117117
export DEFAULT_ROUTING=basic
118118
export DEVWORKSPACE_API_VERSION=664e02df4202a8d4a9fdc30f25b445546e0c1acf

deploy/templates/components/csv/clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
operators.operatorframework.io/builder: operator-sdk-v1.7.1+git
88
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
99
operators.operatorframework.io/internal-objects: '["devworkspaceroutings.controller.devfile.io"]'
10-
name: devworkspace-operator.v0.14.0
10+
name: devworkspace-operator.v0.14.1
1111
spec:
1212
apiservicedefinitions: {}
1313
customresourcedefinitions:
@@ -92,13 +92,13 @@ spec:
9292
provider:
9393
name: Devfile
9494
url: https://devfile.io
95-
version: 0.14.0
95+
version: 0.14.1
9696
relatedImages:
97-
- image: quay.io/devfile/devworkspace-controller:v0.14.0
97+
- image: quay.io/devfile/devworkspace-controller:v0.14.1
9898
name: devworkspace_webhook_server
9999
- image: registry.redhat.io/openshift4/ose-kube-rbac-proxy:v4.8
100100
name: kube_rbac_proxy
101-
- image: quay.io/devfile/project-clone:v0.14.0
101+
- image: quay.io/devfile/project-clone:v0.14.1
102102
name: project_clone
103103
- image: quay.io/eclipse/che-machine-exec:nightly
104104
name: plugin_redhat_developer_web_terminal_4_5_0

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.14.0"
20+
Version = "v0.14.1"
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)