Skip to content

Commit 27ed03a

Browse files
committed
Release v0.10.0
1 parent 822bad0 commit 27ed03a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ If you would like to apply your own customizations, reference the `deploy` folde
2323

2424
```yaml
2525
bases:
26-
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.9.0
26+
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.10.0
2727
```
2828
2929
#### Kustomize v3
@@ -32,7 +32,7 @@ Latest version of Kustomize if installed as a standalone. Also version embedded
3232
3333
```yaml
3434
resources:
35-
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.9.0
35+
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.10.0
3636
```
3737
3838
The [example](example) folder shows one example of how to customize the operator.

bundle.yaml

Lines changed: 2 additions & 2 deletions
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: v0.9.0
173+
app.kubernetes.io/version: v0.10.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.9.0
198+
image: plexsystems/sandbox-operator:v0.10.0
199199
imagePullPolicy: IfNotPresent
200200
name: sandbox-operator
201201
serviceAccountName: sandbox-operator-sa

deploy/deployment.yaml

Lines changed: 2 additions & 2 deletions
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: v0.9.0
7+
app.kubernetes.io/version: v0.10.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.9.0
20+
image: plexsystems/sandbox-operator:v0.10.0
2121
command:
2222
- sandbox-operator
2323
imagePullPolicy: IfNotPresent

main.go

Lines changed: 1 addition & 1 deletion
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 = "v0.9.0"
29+
version = "v0.10.0"
3030
)
3131

3232
func main() {

0 commit comments

Comments
 (0)