Cleaned unused app chart directories.
This commit is contained in:
parent
6949d5d5a9
commit
d68864b7e4
6 changed files with 0 additions and 313 deletions
|
|
@ -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
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
@ -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
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue