From d68864b7e48b38ebe3f1124200f1c1e922867e72 Mon Sep 17 00:00:00 2001 From: Arvind Prabhakar Date: Wed, 24 Jun 2026 19:09:47 +0000 Subject: [PATCH] Cleaned unused app chart directories. --- charts/apps/values.yaml | 0 rendered/argocd/argocd-httproute.yaml | 21 --- rendered/forgejo/forgejo-httproute.yaml | 123 ------------------ rendered/longhorn/longhorn-httproute.yaml | 39 ------ .../openproject/openproject-httproute.yaml | 24 ---- rendered/pgadmin/pgadmin-httproute.yaml | 106 --------------- 6 files changed, 313 deletions(-) delete mode 100644 charts/apps/values.yaml delete mode 100644 rendered/argocd/argocd-httproute.yaml delete mode 100644 rendered/forgejo/forgejo-httproute.yaml delete mode 100644 rendered/longhorn/longhorn-httproute.yaml delete mode 100644 rendered/openproject/openproject-httproute.yaml delete mode 100644 rendered/pgadmin/pgadmin-httproute.yaml diff --git a/charts/apps/values.yaml b/charts/apps/values.yaml deleted file mode 100644 index e69de29..0000000 diff --git a/rendered/argocd/argocd-httproute.yaml b/rendered/argocd/argocd-httproute.yaml deleted file mode 100644 index 09a4ab2..0000000 --- a/rendered/argocd/argocd-httproute.yaml +++ /dev/null @@ -1,21 +0,0 @@ ---- -# Source: argocd-wrapper/templates/httproute.yaml -apiVersion: gateway.networking.k8s.io/v1 -kind: HTTPRoute -metadata: - name: argocd - namespace: argocd -spec: - parentRefs: - - name: public-gateway - namespace: apps - hostnames: - - "www.symcrest.com" - rules: - - matches: - - path: - type: PathPrefix - value: "/internal/ops/argocd" - backendRefs: - - name: argocd-server - port: 80 diff --git a/rendered/forgejo/forgejo-httproute.yaml b/rendered/forgejo/forgejo-httproute.yaml deleted file mode 100644 index ec965fd..0000000 --- a/rendered/forgejo/forgejo-httproute.yaml +++ /dev/null @@ -1,123 +0,0 @@ ---- -# Source: forgejo/templates/pvc.yaml -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - name: forgejo-data - namespace: forgejo -spec: - accessModes: - - ReadWriteOnce - storageClassName: "longhorn" - resources: - requests: - storage: "20Gi" ---- -# Source: forgejo/templates/service.yaml -apiVersion: v1 -kind: Service -metadata: - name: forgejo - namespace: forgejo -spec: - type: ClusterIP - selector: - app: forgejo - ports: - - name: http - port: 3000 - targetPort: 3000 - - name: ssh - port: 22 - targetPort: 22 ---- -# Source: forgejo/templates/deployment.yaml -apiVersion: apps/v1 -kind: Deployment -metadata: - name: forgejo - namespace: forgejo -spec: - replicas: 1 - selector: - matchLabels: - app: forgejo - template: - metadata: - labels: - app: forgejo - spec: - nodeSelector: - workload: app - containers: - - name: forgejo - image: "codeberg.org/forgejo/forgejo:15.0.3" - ports: - - name: http - containerPort: 3000 - - name: ssh - containerPort: 22 - env: - - name: FORGEJO__server__ROOT_URL - value: "https://www.symcrest.com/internal/dev/forgejo/" - - name: FORGEJO__server__HTTP_PORT - value: "3000" - - name: FORGEJO__database__DB_TYPE - value: "postgres" - - name: FORGEJO__database__HOST - value: "postgres.database.svc.cluster.local:5432" - - name: FORGEJO__database__NAME - value: "forgejo" - - name: FORGEJO__database__USER - value: "forgejo" - - name: FORGEJO__database__PASSWD - valueFrom: - secretKeyRef: - name: forgejo-db-secret - key: FORGEJO_DB_PASSWORD - volumeMounts: - - name: forgejo-data - mountPath: /data - volumes: - - name: forgejo-data - persistentVolumeClaim: - claimName: forgejo-data ---- -# Source: forgejo/templates/httproute.yaml -apiVersion: gateway.networking.k8s.io/v1 -kind: HTTPRoute -metadata: - name: forgejo - namespace: forgejo -spec: - parentRefs: - - name: public-gateway - namespace: apps - hostnames: - - "www.symcrest.com" - rules: - - matches: - - path: - type: Exact - value: "/internal/dev/forgejo" - filters: - - type: RequestRedirect - requestRedirect: - path: - type: ReplaceFullPath - replaceFullPath: "/internal/dev/forgejo/" - statusCode: 301 - - - matches: - - path: - type: PathPrefix - value: "/internal/dev/forgejo/" - filters: - - type: URLRewrite - urlRewrite: - path: - type: ReplacePrefixMatch - replacePrefixMatch: / - backendRefs: - - name: forgejo - port: 3000 diff --git a/rendered/longhorn/longhorn-httproute.yaml b/rendered/longhorn/longhorn-httproute.yaml deleted file mode 100644 index d6abfd4..0000000 --- a/rendered/longhorn/longhorn-httproute.yaml +++ /dev/null @@ -1,39 +0,0 @@ ---- -# Source: longhorn-wrapper/templates/httproute.yaml -apiVersion: gateway.networking.k8s.io/v1 -kind: HTTPRoute -metadata: - name: longhorn - namespace: longhorn-system -spec: - parentRefs: - - name: public-gateway - namespace: apps - hostnames: - - "www.symcrest.com" - rules: - - matches: - - path: - type: Exact - value: "/internal/ops/longhorn" - filters: - - type: RequestRedirect - requestRedirect: - path: - type: ReplaceFullPath - replaceFullPath: "/internal/ops/longhorn/" - statusCode: 301 - - - matches: - - path: - type: PathPrefix - value: "/internal/ops/longhorn/" - filters: - - type: URLRewrite - urlRewrite: - path: - type: ReplacePrefixMatch - replacePrefixMatch: "/" - backendRefs: - - name: longhorn-frontend - port: 80 diff --git a/rendered/openproject/openproject-httproute.yaml b/rendered/openproject/openproject-httproute.yaml deleted file mode 100644 index 2975ecf..0000000 --- a/rendered/openproject/openproject-httproute.yaml +++ /dev/null @@ -1,24 +0,0 @@ ---- -# Source: openproject/templates/httproute.yaml -apiVersion: gateway.networking.k8s.io/v1 -kind: HTTPRoute -metadata: - name: openproject - namespace: openproject -spec: - parentRefs: - - name: public-gateway - namespace: apps - - hostnames: - - "www.symcrest.com" - - rules: - - matches: - - path: - type: PathPrefix - value: "/internal/dev/openproject" - - backendRefs: - - name: openproject - port: 8080 diff --git a/rendered/pgadmin/pgadmin-httproute.yaml b/rendered/pgadmin/pgadmin-httproute.yaml deleted file mode 100644 index 00400bf..0000000 --- a/rendered/pgadmin/pgadmin-httproute.yaml +++ /dev/null @@ -1,106 +0,0 @@ ---- -# Source: pgadmin/templates/pvc.yaml -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - name: pgadmin-data - namespace: pgadmin -spec: - accessModes: - - ReadWriteOnce - storageClassName: "longhorn" - resources: - requests: - storage: "5Gi" ---- -# Source: pgadmin/templates/service.yaml -apiVersion: v1 -kind: Service -metadata: - name: pgadmin - namespace: pgadmin -spec: - type: ClusterIP - selector: - app: pgadmin - ports: - - name: http - port: 80 - targetPort: 80 ---- -# Source: pgadmin/templates/deployment.yaml -apiVersion: apps/v1 -kind: Deployment -metadata: - name: pgadmin - namespace: pgadmin -spec: - replicas: 1 - selector: - matchLabels: - app: pgadmin - template: - metadata: - labels: - app: pgadmin - spec: - nodeSelector: - workload: app - securityContext: - fsGroup: 5050 - fsGroupChangePolicy: "OnRootMismatch" - containers: - - name: pgadmin - image: "dpage/pgadmin4:9.15" - securityContext: - runAsUser: 5050 - runAsGroup: 5050 - ports: - - containerPort: 80 - name: http - envFrom: - - secretRef: - name: pgadmin-secret - env: - - name: SCRIPT_NAME - value: "/internal/dev/pgadmin" - volumeMounts: - - name: pgadmin-data - mountPath: /var/lib/pgadmin - volumes: - - name: pgadmin-data - persistentVolumeClaim: - claimName: pgadmin-data ---- -# Source: pgadmin/templates/httproute.yaml -apiVersion: gateway.networking.k8s.io/v1 -kind: HTTPRoute -metadata: - name: pgadmin - namespace: pgadmin -spec: - parentRefs: - - name: public-gateway - namespace: apps - hostnames: - - "www.symcrest.com" - rules: - - matches: - - path: - type: Exact - value: "/internal/dev/pgadmin" - filters: - - type: RequestRedirect - requestRedirect: - path: - type: ReplaceFullPath - replaceFullPath: "/internal/dev/pgadmin/" - statusCode: 301 - - - matches: - - path: - type: PathPrefix - value: "/internal/dev/pgadmin/" - backendRefs: - - name: pgadmin - port: 80