Skip to content

Commit ac469db

Browse files
committed
Release 0.4.0
1 parent 168a98f commit ac469db

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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.3.0
22+
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.4.0
2323
```
2424
2525
Additionally, the [example](example) folder shows one example of how to customize the operator.

bundle.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ spec:
179179
fieldPath: metadata.name
180180
- name: AZURE_AD_RESOURCE
181181
value: https://graph.windows.net
182-
image: plexsystems/sandbox-operator:v0.3.0
182+
image: plexsystems/sandbox-operator:v0.4.0
183183
imagePullPolicy: IfNotPresent
184184
name: sandbox-operator
185185
serviceAccountName: sandbox-operator-sa

deploy/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
serviceAccountName: sandbox-operator-sa
1515
containers:
1616
- name: sandbox-operator
17-
image: plexsystems/sandbox-operator:v0.3.0
17+
image: plexsystems/sandbox-operator:v0.4.0
1818
command:
1919
- sandbox-operator
2020
imagePullPolicy: IfNotPresent

main.go

Lines changed: 2 additions & 2 deletions
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.3.0"
29+
version = "0.4.0"
3030
)
3131

3232
func main() {
@@ -73,7 +73,7 @@ func main() {
7373
if err == metrics.ErrServiceMonitorNotPresent {
7474
log.Println("prometheus-operator not found. skipping service monitor creation")
7575
} else {
76-
log.Fatalf("create service monitors: %v", err)
76+
log.Printf("create service monitors: %v", err)
7777
}
7878
}
7979

0 commit comments

Comments
 (0)