-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathargocd-openshift-gitops-patch.json
92 lines (92 loc) · 2.21 KB
/
argocd-openshift-gitops-patch.json
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"spec": {
"controller": {
"resources": {
"limits": {
"cpu": "16",
"memory": "32Gi"
},
"requests": {
"cpu": "1",
"memory": "2Gi"
}
}
},
"kustomizeBuildOptions": "--enable-alpha-plugins",
"repo": {
"volumes": [
{
"name": "kustomize",
"emptyDir": {}
}
],
"initContainers": [
{
"resources": {
},
"terminationMessagePath": "/dev/termination-log",
"name": "kustomize-plugin",
"command": [
"/exportkustomize.sh"
],
"args": [
"/.config"
],
"imagePullPolicy": "Always",
"volumeMounts": [
{
"name": "kustomize",
"mountPath": "/.config"
}
],
"terminationMessagePolicy": "File",
"image": "quay.io/openshift-kni/ztp-site-generator:latest"
},
{
"args": [
"-c",
"mkdir -p /.config/kustomize/plugin/policy.open-cluster-management.io/v1/policygenerator && cp /policy-generator/PolicyGenerator-not-fips-compliant /.config/kustomize/plugin/policy.open-cluster-management.io/v1/policygenerator/PolicyGenerator"
],
"command": [
"/bin/bash"
],
"image": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9:v2.11",
"name": "policy-generator-install",
"imagePullPolicy": "Always",
"volumeMounts": [
{
"mountPath": "/.config",
"name": "kustomize"
}
]
}
],
"volumeMounts": [
{
"name": "kustomize",
"mountPath": "/.config"
}
],
"env": [
{
"name": "ARGOCD_EXEC_TIMEOUT",
"value": "360s"
},
{
"name": "KUSTOMIZE_PLUGIN_HOME",
"value": "/.config/kustomize/plugin"
}
],
"resources": {
"limits": {
"cpu": "8",
"memory": "16Gi"
},
"requests": {
"cpu": "1",
"memory": "2Gi"
}
}
}
}
}