From 109b9be2afd4a260d72bc4133a1a7951daaf8844 Mon Sep 17 00:00:00 2001 From: Steve Miller Date: Mon, 31 Aug 2020 11:24:48 -0400 Subject: [PATCH] Prepare 0.10.1 release (#8) --- README.md | 4 ++-- bundle.yaml | 4 ++-- deploy/deployment.yaml | 4 ++-- main.go | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b41e801..3ffbc47 100644 --- a/README.md +++ b/README.md @@ -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.10.0 +- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.10.1 ``` #### Kustomize v3 @@ -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.10.0 +- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.10.1 ``` The [example](example) folder shows one example of how to customize the operator. diff --git a/bundle.yaml b/bundle.yaml index 757e4ef..76bdfa0 100644 --- a/bundle.yaml +++ b/bundle.yaml @@ -170,7 +170,7 @@ kind: Deployment metadata: labels: app.kubernetes.io/name: sandbox-operator - app.kubernetes.io/version: v0.10.0 + app.kubernetes.io/version: v0.10.1 name: sandbox-operator spec: selector: @@ -195,7 +195,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.name - image: plexsystems/sandbox-operator:v0.10.0 + image: plexsystems/sandbox-operator:v0.10.1 imagePullPolicy: IfNotPresent name: sandbox-operator serviceAccountName: sandbox-operator-sa diff --git a/deploy/deployment.yaml b/deploy/deployment.yaml index 2c984ba..5820715 100644 --- a/deploy/deployment.yaml +++ b/deploy/deployment.yaml @@ -4,7 +4,7 @@ metadata: name: sandbox-operator labels: app.kubernetes.io/name: sandbox-operator - app.kubernetes.io/version: v0.10.0 + app.kubernetes.io/version: v0.10.1 spec: selector: matchLabels: @@ -17,7 +17,7 @@ spec: serviceAccountName: sandbox-operator-sa containers: - name: sandbox-operator - image: plexsystems/sandbox-operator:v0.10.0 + image: plexsystems/sandbox-operator:v0.10.1 command: - sandbox-operator imagePullPolicy: IfNotPresent diff --git a/main.go b/main.go index c3c6120..2524479 100644 --- a/main.go +++ b/main.go @@ -26,7 +26,7 @@ var ( metricsHost = "0.0.0.0" metricsPort int32 = 8383 operatorMetricsPort int32 = 8686 - version = "v0.10.0" + version = "v0.10.1" ) func main() {