Skip to content

Commit 71c08ba

Browse files
committed
Release 0.5.0
1 parent 555d79e commit 71c08ba

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you would like to apply your own customizations, reference the `deploy` folde
1919

2020
```yaml
2121
resources:
22-
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.4.0
22+
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.5.0
2323
```
2424
2525
Additionally, the [example](example) folder shows one example of how to customize the operator.

bundle.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ kind: Deployment
170170
metadata:
171171
labels:
172172
app.kubernetes.io/name: sandbox-operator
173-
app.kubernetes.io/version: 0.4.0
173+
app.kubernetes.io/version: "0.5.0"
174174
name: sandbox-operator
175175
spec:
176176
selector:
@@ -195,7 +195,7 @@ spec:
195195
valueFrom:
196196
fieldRef:
197197
fieldPath: metadata.name
198-
image: plexsystems/sandbox-operator:v0.4.0
198+
image: plexsystems/sandbox-operator:v0.5.0
199199
imagePullPolicy: IfNotPresent
200200
name: sandbox-operator
201201
serviceAccountName: sandbox-operator-sa

deploy/deployment.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: sandbox-operator
55
labels:
66
app.kubernetes.io/name: sandbox-operator
7-
app.kubernetes.io/version: "0.4.0"
7+
app.kubernetes.io/version: "0.5.0"
88
spec:
99
selector:
1010
matchLabels:
@@ -17,7 +17,7 @@ spec:
1717
serviceAccountName: sandbox-operator-sa
1818
containers:
1919
- name: sandbox-operator
20-
image: plexsystems/sandbox-operator:v0.4.0
20+
image: plexsystems/sandbox-operator:v0.5.0
2121
command:
2222
- sandbox-operator
2323
imagePullPolicy: IfNotPresent

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var (
2626
metricsHost = "0.0.0.0"
2727
metricsPort int32 = 8383
2828
operatorMetricsPort int32 = 8686
29-
version = "0.4.0"
29+
version = "0.5.0"
3030
)
3131

3232
func main() {

0 commit comments

Comments
 (0)