Skip to content

Commit 16e4495

Browse files
committed
chore: bump version
1 parent d2200cd commit 16e4495

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= 0.0.9
6+
VERSION ?= 0.2.0
77

88
# CHANNELS define the bundle channels used in the bundle.
99
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "preview,fast,stable")

api/v1alpha1/database_types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type DatabaseSpec struct {
1818
// Username of the database user which will have full access to this database
1919
Username string `json:"username,omitempty"`
2020

21-
// Password of the databaser user
21+
// Password of the database user
2222
Password string `json:"password,omitempty"`
2323
}
2424

config/manager/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ kind: Kustomization
1313
images:
1414
- name: controller
1515
newName: anbraten/external-database-operator
16-
newTag: 0.0.9
16+
newTag: 0.2.0

deploy/external-database-controller.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ spec:
4141
description: Name of the database
4242
type: string
4343
password:
44-
description: Password of the databaser user
44+
description: Password of the database user
4545
type: string
4646
type:
4747
description: 'Type of the database. (currently supported: mysql, couchdb, mongo, postgres)'
@@ -278,7 +278,7 @@ spec:
278278
- --leader-elect
279279
command:
280280
- /manager
281-
image: anbraten/external-database-operator:0.0.9
281+
image: anbraten/external-database-operator:0.2.0
282282
livenessProbe:
283283
httpGet:
284284
path: /healthz

0 commit comments

Comments
 (0)