forked from fluxcd/flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweave-cloud-helm-operator-deployment.yaml
46 lines (46 loc) · 1.12 KB
/
weave-cloud-helm-operator-deployment.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
apiVersion: apps/v1
kind: Deployment
metadata:
name: flux-helm-operator
namespace: weave
labels:
app: flux-helm-operator
weave-cloud-component: helm-operator
spec:
strategy:
type: Recreate
selector:
matchLabels:
app: flux-helm-operator
template:
metadata:
annotations:
prometheus.io.scrape: "false"
labels:
app: flux-helm-operator
spec:
serviceAccountName: weave-flux
volumes:
- name: git-key
secret:
defaultMode: 256
secretName: flux-git-deploy
containers:
- name: flux-helm-operator
image: quay.io/weaveworks/helm-operator:0.6.0
imagePullPolicy: IfNotPresent
args:
- --git-timeout=20s
- --charts-sync-interval=3m
- --update-chart-deps=true
- --tiller-namespace=kube-system
volumeMounts:
- name: git-key
mountPath: /etc/fluxd/ssh
resources:
limits:
cpu: 1000m
memory: 512Mi
requests:
cpu: 50m
memory: 64Mi