-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArgoCD.pkl
More file actions
54 lines (52 loc) · 1.19 KB
/
Copy pathArgoCD.pkl
File metadata and controls
54 lines (52 loc) · 1.19 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
51
52
53
54
amends "@ArgoCD/App.pkl"
name = "argo"
namespace = "argocd"
autoSync = false
source {
repoURL = "https://argoproj.github.io/argo-helm"
chart = "argo-cd"
// renovate: datasource=helm registryUrl=https://argoproj.github.io/argo-helm packageName=argo-cd
targetRevision = "9.7.1"
helm {
releaseName = "argocd"
valuesObject {
redis {
serviceAccount {
create = true
}
}
repoServer {
volumes {
new {
name = "pkl-temp"
emptyDir {}
}
}
extraContainers {
new {
name = "pkl"
image = "ghcr.io/lucsoft/argo-pkl-plugin:latest"
securityContext {
runAsNonRoot = true
runAsUser = 999
}
volumeMounts {
new {
mountPath = "/var/run/argocd"
name = "var-files"
}
new {
mountPath = "/home/argocd/cmp-server/plugins"
name = "plugins"
}
new {
mountPath = "/tmp"
name = "pkl-temp"
}
}
}
}
}
}
}
}