From 3d94db0c3fa4bfa1d15f53099bcae3a546b2a16a Mon Sep 17 00:00:00 2001 From: Hidde Beydals Date: Wed, 29 Aug 2018 11:17:57 +0200 Subject: [PATCH 1/2] Use latest helm operator release in example manifest --- deploy-helm/helm-operator-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy-helm/helm-operator-deployment.yaml b/deploy-helm/helm-operator-deployment.yaml index ebd9359ae..1d8606336 100644 --- a/deploy-helm/helm-operator-deployment.yaml +++ b/deploy-helm/helm-operator-deployment.yaml @@ -31,7 +31,7 @@ spec: # There are no ":latest" images for helm-operator. Find the most recent # release or image version at https://quay.io/weaveworks/helm-operator # and replace the tag here. - image: quay.io/weaveworks/helm-operator:0.1.1-alpha + image: quay.io/weaveworks/helm-operator:0.2.0 imagePullPolicy: IfNotPresent volumeMounts: # Include this if you need to mount a customised known_hosts From e3a1e9939bf71ac86abd686bbccbce73ab43589d Mon Sep 17 00:00:00 2001 From: Hidde Beydals Date: Wed, 29 Aug 2018 11:27:00 +0200 Subject: [PATCH 2/2] Update deploy manifests to api version apps/v1 --- deploy-helm/helm-operator-deployment.yaml | 5 ++++- deploy/flux-deployment.yaml | 5 ++++- deploy/memcache-dep.yaml | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/deploy-helm/helm-operator-deployment.yaml b/deploy-helm/helm-operator-deployment.yaml index 1d8606336..aae5d51eb 100644 --- a/deploy-helm/helm-operator-deployment.yaml +++ b/deploy-helm/helm-operator-deployment.yaml @@ -1,10 +1,13 @@ --- -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: flux-helm-operator spec: replicas: 1 + selector: + matchLabels: + name: flux-helm-operator strategy: type: Recreate template: diff --git a/deploy/flux-deployment.yaml b/deploy/flux-deployment.yaml index 22ad9a162..27decb7a8 100644 --- a/deploy/flux-deployment.yaml +++ b/deploy/flux-deployment.yaml @@ -1,10 +1,13 @@ --- -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: flux spec: replicas: 1 + selector: + matchLabels: + name: flux strategy: type: Recreate template: diff --git a/deploy/memcache-dep.yaml b/deploy/memcache-dep.yaml index f430d55ab..b8dc3f490 100644 --- a/deploy/memcache-dep.yaml +++ b/deploy/memcache-dep.yaml @@ -1,12 +1,15 @@ --- # You can optionally deploy memcache, for the Flux daemon to cache # container image metadata. -apiVersion: extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: memcached spec: replicas: 1 + selector: + matchLabels: + name: memcached template: metadata: labels: