Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpreese committed Mar 2, 2020
1 parent 168a98f commit ac469db
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ If you would like to apply your own customizations, reference the `deploy` folde

```yaml
resources:
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.3.0
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.4.0
```
Additionally, the [example](example) folder shows one example of how to customize the operator.
Expand Down
2 changes: 1 addition & 1 deletion bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ spec:
fieldPath: metadata.name
- name: AZURE_AD_RESOURCE
value: https://graph.windows.net
image: plexsystems/sandbox-operator:v0.3.0
image: plexsystems/sandbox-operator:v0.4.0
imagePullPolicy: IfNotPresent
name: sandbox-operator
serviceAccountName: sandbox-operator-sa
2 changes: 1 addition & 1 deletion deploy/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
serviceAccountName: sandbox-operator-sa
containers:
- name: sandbox-operator
image: plexsystems/sandbox-operator:v0.3.0
image: plexsystems/sandbox-operator:v0.4.0
command:
- sandbox-operator
imagePullPolicy: IfNotPresent
Expand Down
4 changes: 2 additions & 2 deletions 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 = "0.3.0"
version = "0.4.0"
)

func main() {
Expand Down Expand Up @@ -73,7 +73,7 @@ func main() {
if err == metrics.ErrServiceMonitorNotPresent {
log.Println("prometheus-operator not found. skipping service monitor creation")
} else {
log.Fatalf("create service monitors: %v", err)
log.Printf("create service monitors: %v", err)
}
}

Expand Down

0 comments on commit ac469db

Please sign in to comment.