Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Small manifest improvements #1322

Merged
merged 2 commits into from
Aug 30, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions deploy-helm/helm-operator-deployment.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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
Expand Down
5 changes: 4 additions & 1 deletion deploy/flux-deployment.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
5 changes: 4 additions & 1 deletion deploy/memcache-dep.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down