-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathargocd-values.yml
More file actions
50 lines (46 loc) · 1.26 KB
/
argocd-values.yml
File metadata and controls
50 lines (46 loc) · 1.26 KB
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
47
48
49
50
configs:
cmp:
create: true
plugins:
helmwave-plugin:
generate:
command: [ "/bin/ash", "-c" ]
args:
- |
helmwave build &> /tmp/log.txt && find .helmwave/manifest -type f | xargs cat
discover:
fileName: "./helmwave.yml*"
repoServer:
volumes:
- configMap:
name: argocd-cmp-cm
name: argocd-cmp-cm
- emptyDir: {}
name: cmp-tmp
extraContainers:
- name: helmwave-plugin
command: [ /var/run/argocd/argocd-cmp-server ]
args: [ --loglevel, debug ]
image: ghcr.io/helmwave/helmwave:0.36.4
securityContext:
runAsNonRoot: true
runAsUser: 999
env:
- name: HELM_CONFIG_HOME
value: ./helm-config
- name: HELM_CACHE_HOME
value: ./helm-cache
- name: HELM_DATA_HOME
value: ./helm-data
- name: HELMWAVE_DIFF_MODE
value: none
volumeMounts:
- mountPath: /var/run/argocd
name: var-files
- mountPath: /home/argocd/cmp-server/plugins
name: plugins
- mountPath: /home/argocd/cmp-server/config/plugin.yaml
subPath: helmwave-plugin.yaml
name: argocd-cmp-cm
- mountPath: /tmp
name: cmp-tmp