diff --git a/deploy-helm/helm-operator-deployment.yaml b/deploy-helm/helm-operator-deployment.yaml index ebd9359ae..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: @@ -31,7 +34,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 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: