Skip to content

Commit

Permalink
Release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpreese committed Apr 21, 2020
1 parent 822bad0 commit 27ed03a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ If you would like to apply your own customizations, reference the `deploy` folde

```yaml
bases:
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.9.0
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.10.0
```

#### Kustomize v3
Expand All @@ -32,7 +32,7 @@ Latest version of Kustomize if installed as a standalone. Also version embedded

```yaml
resources:
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.9.0
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.10.0
```

The [example](example) folder shows one example of how to customize the operator.
Expand Down
4 changes: 2 additions & 2 deletions bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ kind: Deployment
metadata:
labels:
app.kubernetes.io/name: sandbox-operator
app.kubernetes.io/version: v0.9.0
app.kubernetes.io/version: v0.10.0
name: sandbox-operator
spec:
selector:
Expand All @@ -195,7 +195,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.name
image: plexsystems/sandbox-operator:v0.9.0
image: plexsystems/sandbox-operator:v0.10.0
imagePullPolicy: IfNotPresent
name: sandbox-operator
serviceAccountName: sandbox-operator-sa
4 changes: 2 additions & 2 deletions deploy/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: sandbox-operator
labels:
app.kubernetes.io/name: sandbox-operator
app.kubernetes.io/version: v0.9.0
app.kubernetes.io/version: v0.10.0
spec:
selector:
matchLabels:
Expand All @@ -17,7 +17,7 @@ spec:
serviceAccountName: sandbox-operator-sa
containers:
- name: sandbox-operator
image: plexsystems/sandbox-operator:v0.9.0
image: plexsystems/sandbox-operator:v0.10.0
command:
- sandbox-operator
imagePullPolicy: IfNotPresent
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var (
metricsHost = "0.0.0.0"
metricsPort int32 = 8383
operatorMetricsPort int32 = 8686
version = "v0.9.0"
version = "v0.10.0"
)

func main() {
Expand Down

0 comments on commit 27ed03a

Please sign in to comment.