From ac469db8e84cf178c84358735261bc170ae4ab33 Mon Sep 17 00:00:00 2001 From: John Reese Date: Mon, 2 Mar 2020 17:05:45 -0500 Subject: [PATCH] Release 0.4.0 --- README.md | 2 +- bundle.yaml | 2 +- deploy/deployment.yaml | 2 +- main.go | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 69574e2..168a76d 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/bundle.yaml b/bundle.yaml index d37057f..076262c 100644 --- a/bundle.yaml +++ b/bundle.yaml @@ -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 diff --git a/deploy/deployment.yaml b/deploy/deployment.yaml index fba4dca..1e3abe6 100644 --- a/deploy/deployment.yaml +++ b/deploy/deployment.yaml @@ -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 diff --git a/main.go b/main.go index 1a3b83c..5f56156 100644 --- a/main.go +++ b/main.go @@ -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() { @@ -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) } }