feat: cleanup of remodelling

move remodel folder down to root and delete old unused manifests
This commit is contained in:
Vegard Hagen
2024-07-21 23:21:12 +02:00
parent f1797c94ec
commit 207b1892bf
447 changed files with 477 additions and 6122 deletions
+112
View File
@@ -0,0 +1,112 @@
configs:
cm:
create: true
application.resourceTrackingMethod: "annotation+label"
cmp:
create: true
plugins:
kustomize-build-with-helm:
generate:
command: [ "sh", "-c" ]
args: [ "kustomize build --enable-helm" ]
params:
server.insecure: true
crds:
install: true
# -- Keep CRDs on chart uninstall
keep: false
controller:
resources:
requests:
cpu: 100m
memory: 700Mi
limits:
cpu: 4000m
memory: 2Gi
dex:
resources:
requests:
cpu: 10m
memory: 32Mi
limits:
cpu: 1000m
memory: 64Mi
redis:
resources:
requests:
cpu: 100m
memory: 64Mi
limits:
cpu: 2000m
memory: 128Mi
server:
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 4000m
memory: 128Mi
repoServer:
containerSecurityContext:
readOnlyRootFilesystem: true
volumes:
- name: cmp-kustomize-build-with-helm
configMap:
name: argocd-cmp-cm
- name: cmp-tmp
emptyDir: { }
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 4000m
memory: 512Mi
extraContainers:
- name: kustomize-build-with-helm
command:
- argocd-cmp-server
image: '{{ default .Values.global.image.repository .Values.repoServer.image.repository }}:{{ default (include "argo-cd.defaultTag" .) .Values.repoServer.image.tag }}'
securityContext:
runAsNonRoot: true
runAsUser: 999
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
seccompProfile:
type: RuntimeDefault
capabilities:
drop: [ "ALL" ]
volumeMounts:
- name: plugins
mountPath: /home/argocd/cmp-server/plugins
- name: cmp-kustomize-build-with-helm
mountPath: /home/argocd/cmp-server/config/plugin.yaml
subPath: kustomize-build-with-helm.yaml
- mountPath: /tmp
name: cmp-tmp
applicationSet:
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 1000m
memory: 256Mi
notifications:
enabled: false
resources:
requests:
cpu: 100m
memory: 64Mi
limits:
cpu: 1000m
memory: 128Mi