Initial commit

This commit is contained in:
Arvind Prabhakar 2026-06-16 00:03:01 +00:00
commit c029592583
31 changed files with 39732 additions and 0 deletions

6
charts/argocd/Chart.yaml Normal file
View file

@ -0,0 +1,6 @@
apiVersion: v2
name: argocd-wrapper
description: Wrapper chart for Argo CD config
type: application
version: 0.1.0
appVersion: "1.0.0"

View file

@ -0,0 +1,21 @@
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: {{ .Values.route.name }}
namespace: {{ .Values.route.namespace }}
spec:
parentRefs:
- name: {{ .Values.route.gatewayName }}
namespace: {{ .Values.route.gatewayNamespace }}
hostnames:
{{- range .Values.route.hostnames }}
- {{ . | quote }}
{{- end }}
rules:
- matches:
- path:
type: PathPrefix
value: {{ .Values.argocd.basePath | quote }}
backendRefs:
- name: {{ .Values.route.serviceName }}
port: {{ .Values.route.servicePort }}

View file

@ -0,0 +1,38 @@
configs:
cm:
url: http://www.symcrest.com/internal/ops/argocd
params:
server.insecure: true
server.basehref: /internal/ops/argocd
server.rootpath: /internal/ops/argocd
controller:
nodeSelector:
workload: app
server:
nodeSelector:
workload: app
service:
type: ClusterIP
repoServer:
nodeSelector:
workload: app
dex:
nodeSelector:
workload: app
redis:
nodeSelector:
workload: app
notifications:
nodeSelector:
workload: app
applicationSet:
nodeSelector:
workload: app

14
charts/argocd/values.yaml Normal file
View file

@ -0,0 +1,14 @@
argocd:
url: http://www.symcrest.com/internal/ops/argocd
basePath: /internal/ops/argocd
route:
name: argocd
namespace: argocd
gatewayName: public-gateway
gatewayNamespace: apps
hostnames:
- symcrest.com
- www.symcrest.com
serviceName: argocd-server
servicePort: 80