Compare commits
25 Commits
feature/ar
...
feature/ho
| Author | SHA1 | Date | |
|---|---|---|---|
| 516498651b | |||
| 230c160870 | |||
| d1588975dc | |||
| 7132f5000e | |||
| b4100bd456 | |||
| fff117a500 | |||
| 03c75fc4cd | |||
| df73c4bdc0 | |||
| 6a7de704f2 | |||
| be8bbd2c12 | |||
| c469ab44b0 | |||
| 290c8b91f8 | |||
| a776bae4bd | |||
| 7405ce27dd | |||
| 1281e8ef37 | |||
| c497c54e8e | |||
| b57459cf85 | |||
| e8dd213685 | |||
| 1d879c82f9 | |||
| 94c8265475 | |||
| 17d7c4a655 | |||
| f3dba72c5d | |||
| cc9c9049eb | |||
| 9f6c5105af | |||
| 45e502d74d |
52
README.md
52
README.md
@@ -57,7 +57,7 @@ This repository contains the complete GitOps configuration for our Kubernetes cl
|
|||||||
|
|
||||||
### What's Inside
|
### What's Inside
|
||||||
|
|
||||||
- **Infrastructure Applications**: Traefik, Cert-Manager, Kyverno, Prometheus, Grafana, Loki, Tempo, Sealed Secrets
|
- **Infrastructure Applications**: Traefik, Cert-Manager, Kyverno, Prometheus, Grafana, Loki, Tempo, Sealed Secrets, Homepage (platform dashboard)
|
||||||
- **Business Applications**: MCP10X, MusicMan, Dot-AI Stack, ArgoCD MCP
|
- **Business Applications**: MCP10X, MusicMan, Dot-AI Stack, ArgoCD MCP
|
||||||
- **Policies**: Kyverno security policies for secret management, namespace controls, pod verification
|
- **Policies**: Kyverno security policies for secret management, namespace controls, pod verification
|
||||||
- **Monitoring**: Full observability stack with metrics, logs, traces, and alerting
|
- **Monitoring**: Full observability stack with metrics, logs, traces, and alerting
|
||||||
@@ -84,24 +84,25 @@ This repository contains the complete GitOps configuration for our Kubernetes cl
|
|||||||
├── _app-of-apps.yaml # Root ArgoCD Application (App-of-Apps pattern)
|
├── _app-of-apps.yaml # Root ArgoCD Application (App-of-Apps pattern)
|
||||||
│
|
│
|
||||||
├── infra/ # Infrastructure ArgoCD Applications (Kustomize multi-cluster)
|
├── infra/ # Infrastructure ArgoCD Applications (Kustomize multi-cluster)
|
||||||
│ ├── base/ # Base ArgoCD Application manifests (EU defaults)
|
│ ├── base/ # Base ArgoCD Application manifests (one dir per component)
|
||||||
│ │ ├── kustomization.yaml
|
│ │ ├── kustomization.yaml # Aggregates all component subdirectories
|
||||||
│ │ ├── traefik-application.yaml
|
│ │ ├── traefik-application/
|
||||||
│ │ ├── keycloak.yaml
|
│ │ │ ├── kustomization.yaml
|
||||||
│ │ ├── grafana.yaml
|
│ │ │ └── traefik-application.yaml
|
||||||
│ │ ├── gitea.yaml
|
│ │ ├── keycloak/
|
||||||
│ │ ├── gitea-actions.yaml
|
│ │ │ ├── kustomization.yaml
|
||||||
│ │ ├── tempo.yaml
|
│ │ │ └── keycloak.yaml
|
||||||
│ │ ├── renovate.yaml
|
│ │ ├── grafana/
|
||||||
│ │ ├── ... # All other Application manifests
|
│ │ ├── prometheus/
|
||||||
│ │ └── secrets.yaml
|
│ │ ├── ... # Each component in its own subdirectory
|
||||||
|
│ │ └── secrets/
|
||||||
│ ├── overlays/ # Per-cluster overrides (Kustomize)
|
│ ├── overlays/ # Per-cluster overrides (Kustomize)
|
||||||
│ │ ├── upc-dev/ # UpCloud Dev (uses base as-is)
|
│ │ ├── upc-dev/ # UpCloud Dev — includes all base components
|
||||||
│ │ ├── upc-prod/ # UpCloud Prod (patches value paths)
|
│ │ ├── upc-prod/ # UpCloud Prod — all components + patches
|
||||||
|
│ │ ├── aks-dev/ # Azure AKS Dev — selective components only
|
||||||
|
│ │ ├── aks-prod/ # Azure AKS Prod
|
||||||
│ │ ├── eks-dev/ # AWS EKS Dev
|
│ │ ├── eks-dev/ # AWS EKS Dev
|
||||||
│ │ ├── eks-prod/ # AWS EKS Prod
|
│ │ ├── eks-prod/ # AWS EKS Prod
|
||||||
│ │ ├── aks-dev/ # Azure AKS Dev
|
|
||||||
│ │ ├── aks-prod/ # Azure AKS Prod
|
|
||||||
│ │ ├── gke-dev/ # GCP GKE Dev
|
│ │ ├── gke-dev/ # GCP GKE Dev
|
||||||
│ │ └── gke-prod/ # GCP GKE Prod
|
│ │ └── gke-prod/ # GCP GKE Prod
|
||||||
│ ├── dashboards/ # Grafana dashboard ConfigMaps
|
│ ├── dashboards/ # Grafana dashboard ConfigMaps
|
||||||
@@ -116,11 +117,18 @@ This repository contains the complete GitOps configuration for our Kubernetes cl
|
|||||||
│ ├── gke-dev/ # GCP GKE Dev
|
│ ├── gke-dev/ # GCP GKE Dev
|
||||||
│ └── gke-prod/ # GCP GKE Prod
|
│ └── gke-prod/ # GCP GKE Prod
|
||||||
│
|
│
|
||||||
├── apps/ # Business Applications
|
├── apps/ # Business Applications (Kustomize, same pattern as infra)
|
||||||
│ ├── mcp10x.yaml
|
│ ├── base/ # One subdirectory per app
|
||||||
│ ├── musicman.yaml
|
│ │ ├── kustomization.yaml
|
||||||
│ ├── dot-ai-stack.yaml
|
│ │ ├── musicman/
|
||||||
│ └── argo-mcp.yaml
|
│ │ ├── mcp10x/
|
||||||
|
│ │ ├── dot-ai-stack/
|
||||||
|
│ │ ├── ts-mcp/
|
||||||
|
│ │ └── argo-mcp/
|
||||||
|
│ └── overlays/ # Per-cluster: cherry-pick or include all
|
||||||
|
│ ├── upc-dev/ # All apps
|
||||||
|
│ ├── upc-prod/ # All apps + patches
|
||||||
|
│ └── aks-dev/ # Selective apps only
|
||||||
│
|
│
|
||||||
├── cluster-resources/ # Cluster-wide Kubernetes resources
|
├── cluster-resources/ # Cluster-wide Kubernetes resources
|
||||||
│ ├── letsencrypt-issuer.yaml
|
│ ├── letsencrypt-issuer.yaml
|
||||||
@@ -372,7 +380,7 @@ kubectl patch application myapp -n argocd \
|
|||||||
## 📖 Key Concepts
|
## 📖 Key Concepts
|
||||||
|
|
||||||
### App-of-Apps Pattern
|
### App-of-Apps Pattern
|
||||||
`_app-of-apps-{cluster}.yaml` is the root Application that manages all other Applications in `infra/`. Kustomize overlays in `infra/overlays/{cluster}/` render the base Applications with per-cluster patches (e.g., swapping value file paths). Supported clusters: `upc-dev`, `upc-prod`, `eks-dev`, `eks-prod`, `aks-dev`, `aks-prod`, `gke-dev`, `gke-prod`.
|
`_app-of-apps-{cluster}.yaml` is the root Application that manages all other Applications in `infra/`. Each component in `infra/base/` lives in its own subdirectory (e.g., `infra/base/grafana/`). Overlays can either include **all** components (via `../../base`) or **cherry-pick** specific ones (via `../../base/grafana`, `../../base/prometheus`, etc.). Per-cluster patches swap Helm value file paths. Supported clusters: `upc-dev`, `upc-prod`, `eks-dev`, `eks-prod`, `aks-dev`, `aks-prod`, `gke-dev`, `gke-prod`.
|
||||||
|
|
||||||
### Multi-Source Pattern
|
### Multi-Source Pattern
|
||||||
Applications reference both:
|
Applications reference both:
|
||||||
|
|||||||
6
apps/base/argo-mcp/kustomization.yaml
Normal file
6
apps/base/argo-mcp/kustomization.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- argo-mcp.yaml
|
||||||
|
- argocdmcp-auth-oidc-sealed.yaml
|
||||||
|
- argocd-mcp-credentials.yaml
|
||||||
5
apps/base/dot-ai-stack/kustomization.yaml
Normal file
5
apps/base/dot-ai-stack/kustomization.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- dot-ai-stack.yaml
|
||||||
|
- dot-ai-secrets.yaml
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
resources:
|
resources:
|
||||||
- dot-ai-stack.yaml
|
- dot-ai-stack
|
||||||
- mcp10x.yaml
|
- mcp10x
|
||||||
- musicman.yaml
|
- musicman
|
||||||
- ts-mcp.yaml
|
- ts-mcp
|
||||||
- argo-mcp.yaml
|
- argo-mcp
|
||||||
|
|||||||
5
apps/base/mcp10x/kustomization.yaml
Normal file
5
apps/base/mcp10x/kustomization.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- mcp10x.yaml
|
||||||
|
- forte10x-app-credentials-sealed.yaml
|
||||||
5
apps/base/musicman/kustomization.yaml
Normal file
5
apps/base/musicman/kustomization.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- musicman.yaml
|
||||||
|
- musicman-credentials.yaml
|
||||||
@@ -4,6 +4,8 @@ metadata:
|
|||||||
creationTimestamp: null
|
creationTimestamp: null
|
||||||
name: musicman-credentials
|
name: musicman-credentials
|
||||||
namespace: music-man
|
namespace: music-man
|
||||||
|
annotations:
|
||||||
|
argocd.argoproj.io/sync-wave: "12"
|
||||||
spec:
|
spec:
|
||||||
encryptedData:
|
encryptedData:
|
||||||
DATABASE_URL: AgBGLu8Rw9z9WMo3uX7fezN7tOVlEsmWtikFlyBxuSuQ1dCv6KTCePkwxJx4LuKvaHXlwdWl5yP8wQxMJP0BNJ1wewFb9zeUkP1YuCz4MrfuXq1zrecIr86R5hNbPiOb66e/4oOTCY/z3QREX9WjZdLJV/PCyBz8MP0D51pgWXpM6CBdhwpFbHSALyJk89+q44c9KkRxAUG2OLnesMeRe9nXJt5ariUCl9Qd2POIjx2hSNII1l0KbTcjI9hCf91DYM6poqKYYQUpnrjKv3LJwWS79I2b56+iTtroH3usIRgaiwgtFt2INm+8gwLBmC4xxKJ5VAjjYB/3dcN9XeboXvj0NB05P9jS3e77imUFANIB9coeaNlcvRWxwGCewYMp8+7RT7jPVA41/+aT/zT74tq9WhkKvgrr1It9/5fRnXtFEkhZg5bBcYCChzooarHkiwKlA3Wo0CrFsDPqy89oZrnwMRnVqKWBf79koZV4l7uCA0do9ojf55lTy8mt3mKQkwfqK9UdzZNbYzH0/Fk6gxlSxANOOqe7kt6VPywYUBnh6JS5U+kdTgNeSrFy/xqLFz28fXuikSJvLEouSFu66MeT+6uvYEmdfdLeh7quW/n+p7QTok3v3kRYJ/1Dl8ZtgvM7e8F/J5bLcacj394AJ/bBt+RIDa+XBjNNPrWKcWt/mkudZ25F/84G+hNxYQv7PIbhYfA1JTuHmQSoF+xah5QhKpyNpI3+knJmJj/4MhPKLnTuebg0xfbPevm2CU9fSa4sPIqmSvSGtqlXODvCfDSFEYzWfyfXV5Tys1NGAt04V8fl9A9UxULUm510NCeD0jzFeeYm3ZJiyavA5xF6hXCHoqLE
|
DATABASE_URL: AgBGLu8Rw9z9WMo3uX7fezN7tOVlEsmWtikFlyBxuSuQ1dCv6KTCePkwxJx4LuKvaHXlwdWl5yP8wQxMJP0BNJ1wewFb9zeUkP1YuCz4MrfuXq1zrecIr86R5hNbPiOb66e/4oOTCY/z3QREX9WjZdLJV/PCyBz8MP0D51pgWXpM6CBdhwpFbHSALyJk89+q44c9KkRxAUG2OLnesMeRe9nXJt5ariUCl9Qd2POIjx2hSNII1l0KbTcjI9hCf91DYM6poqKYYQUpnrjKv3LJwWS79I2b56+iTtroH3usIRgaiwgtFt2INm+8gwLBmC4xxKJ5VAjjYB/3dcN9XeboXvj0NB05P9jS3e77imUFANIB9coeaNlcvRWxwGCewYMp8+7RT7jPVA41/+aT/zT74tq9WhkKvgrr1It9/5fRnXtFEkhZg5bBcYCChzooarHkiwKlA3Wo0CrFsDPqy89oZrnwMRnVqKWBf79koZV4l7uCA0do9ojf55lTy8mt3mKQkwfqK9UdzZNbYzH0/Fk6gxlSxANOOqe7kt6VPywYUBnh6JS5U+kdTgNeSrFy/xqLFz28fXuikSJvLEouSFu66MeT+6uvYEmdfdLeh7quW/n+p7QTok3v3kRYJ/1Dl8ZtgvM7e8F/J5bLcacj394AJ/bBt+RIDa+XBjNNPrWKcWt/mkudZ25F/84G+hNxYQv7PIbhYfA1JTuHmQSoF+xah5QhKpyNpI3+knJmJj/4MhPKLnTuebg0xfbPevm2CU9fSa4sPIqmSvSGtqlXODvCfDSFEYzWfyfXV5Tys1NGAt04V8fl9A9UxULUm510NCeD0jzFeeYm3ZJiyavA5xF6hXCHoqLE
|
||||||
@@ -36,13 +36,8 @@ spec:
|
|||||||
automated:
|
automated:
|
||||||
prune: true
|
prune: true
|
||||||
selfHeal: true
|
selfHeal: true
|
||||||
allowEmpty: false
|
|
||||||
|
|
||||||
syncOptions:
|
syncOptions:
|
||||||
- CreateNamespace=true
|
- CreateNamespace=true
|
||||||
- Validate=true
|
|
||||||
- ServerSideApply=false
|
|
||||||
- Replace=false
|
|
||||||
retry:
|
retry:
|
||||||
limit: 5
|
limit: 5
|
||||||
backoff:
|
backoff:
|
||||||
5
apps/base/ts-mcp/kustomization.yaml
Normal file
5
apps/base/ts-mcp/kustomization.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- ts-mcp.yaml
|
||||||
|
- ts-mcp-secrets-sealed.yaml
|
||||||
4
apps/overlays/aks-dev/kustomization.yaml
Normal file
4
apps/overlays/aks-dev/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- ../../base/musicman
|
||||||
@@ -18,7 +18,7 @@ echo "Bootstrapping cluster: ${clusterName} (${CLUSTER})..."
|
|||||||
Bootstrap()
|
Bootstrap()
|
||||||
{
|
{
|
||||||
ArgoCd
|
ArgoCd
|
||||||
# Gitea
|
Gitea
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -28,6 +28,7 @@ Bootstrap()
|
|||||||
Gitea()
|
Gitea()
|
||||||
{
|
{
|
||||||
echo "Installing secret..."
|
echo "Installing secret..."
|
||||||
|
kubectl apply -f "secrets/"
|
||||||
kubectl apply -f "private/${CLUSTER}/gitea-repo-main.yaml"
|
kubectl apply -f "private/${CLUSTER}/gitea-repo-main.yaml"
|
||||||
kubectl apply -f "private/${CLUSTER}/main.key"
|
kubectl apply -f "private/${CLUSTER}/main.key"
|
||||||
}
|
}
|
||||||
|
|||||||
37
cluster-resources/network/deny-external-egress-trivy.yaml
Normal file
37
cluster-resources/network/deny-external-egress-trivy.yaml
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
apiVersion: cilium.io/v2
|
||||||
|
kind: CiliumNetworkPolicy
|
||||||
|
metadata:
|
||||||
|
name: deny-external-egress
|
||||||
|
namespace: trivy-system
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/managed-by: argocd
|
||||||
|
app.kubernetes.io/part-of: network-policies
|
||||||
|
spec:
|
||||||
|
endpointSelector: {}
|
||||||
|
egress:
|
||||||
|
# Allow DNS resolution
|
||||||
|
- toEndpoints:
|
||||||
|
- matchLabels:
|
||||||
|
io.kubernetes.pod.namespace: kube-system
|
||||||
|
k8s-app: kube-dns
|
||||||
|
toPorts:
|
||||||
|
- ports:
|
||||||
|
- port: "53"
|
||||||
|
protocol: UDP
|
||||||
|
- port: "53"
|
||||||
|
protocol: TCP
|
||||||
|
|
||||||
|
# Allow cluster-internal traffic (RFC1918)
|
||||||
|
- toCIDR:
|
||||||
|
- 10.0.0.0/8
|
||||||
|
- 172.16.0.0/12
|
||||||
|
- 192.168.0.0/16
|
||||||
|
|
||||||
|
# Allow Trivy vulnerability DB downloads (ghcr.io OCI registry)
|
||||||
|
- toFQDNs:
|
||||||
|
- matchName: ghcr.io
|
||||||
|
- matchName: pkg-containers.githubusercontent.com
|
||||||
|
toPorts:
|
||||||
|
- ports:
|
||||||
|
- port: "443"
|
||||||
|
protocol: TCP
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
# Cluster config reference — values must match the corresponding overlay files.
|
# Cluster config reference — values must match the corresponding overlay files.
|
||||||
# Read by bootstrap.sh at install time; NOT auto-propagated to ArgoCD value files.
|
# Read by bootstrap.sh at install time; NOT auto-propagated to ArgoCD value files.
|
||||||
clusterName: dev-aks # → infra/values/aks-dev/argocd-values.yaml (notifications.context.clusterName)
|
clusterName: k8s-launchpad # → infra/values/aks-dev/argocd-values.yaml (notifications.context.clusterName)
|
||||||
domain: example.com # → infra/values/base/gitea-values.yaml, renovate-values.yaml, keycloak-values.yaml (subdomains)
|
domain: example.com # → infra/values/base/gitea-values.yaml, renovate-values.yaml, keycloak-values.yaml (subdomains)
|
||||||
argocdDomain: argocd.example.com # → infra/values/aks-dev/argocd-values.yaml (global.domain)
|
argocdDomain: argocd.example.com # → infra/values/aks-dev/argocd-values.yaml (global.domain)
|
||||||
grafanaDomain: grafana.example.com # → infra/values/aks-dev/grafana-values.yaml (ingress.hosts)
|
grafanaDomain: grafana.example.com # → infra/values/aks-dev/grafana-values.yaml (ingress.hosts)
|
||||||
keycloakDomain: id.example.com # → infra/values/aks-dev/keycloak-values.yaml (ingress.hostname)
|
keycloakDomain: id.example.com # → infra/values/aks-dev/keycloak-values.yaml (ingress.hostname)
|
||||||
dotaiDomain: kubemcp.example.com # → infra/values/aks-dev/dot-ai-stack-values.yaml (dot-ai.ingress.host) — create if needed
|
dotaiDomain: kubemcp.example.com # → infra/values/aks-dev/dot-ai-stack-values.yaml (dot-ai.ingress.host) — create if needed
|
||||||
dotaiUiDomain: kubemcpui.example.com # → infra/values/aks-dev/dot-ai-stack-values.yaml (dot-ai-ui.ingress.host) — create if needed
|
dotaiUiDomain: kubemcpui.example.com # → infra/values/aks-dev/dot-ai-stack-values.yaml (dot-ai-ui.ingress.host) — create if needed
|
||||||
letsencryptEmail: admin@example.com # → cluster-resources/letsencrypt-issuer.yaml (spec.acme.email)
|
letsencryptEmail: admin@example.com # → cluster-resources/letsencrypt-issuer.yaml (spec.acme.email)
|
||||||
trustedIPs: "10.0.0.0/8,168.63.129.16/32" # → infra/values/aks-dev/traefik-values.yaml (ports.*.trustedIPs) — VNet CIDR + Azure health probe
|
trustedIPs: "10.0.0.0/8,168.63.129.16/32" # → infra/values/aks-dev/traefik-values.yaml (ports.*.trustedIPs) — VNet CIDR + Azure health probe
|
||||||
cloudProvider: azure # → determines overlay directory and cloud-specific LB/storage annotations
|
cloudProvider: azure # → determines overlay directory and cloud-specific LB/storage annotations
|
||||||
|
|||||||
@@ -120,24 +120,25 @@ launchpad/
|
|||||||
├── _app-of-apps-upc-prod.yaml # Root ArgoCD Application (upc-prod cluster)
|
├── _app-of-apps-upc-prod.yaml # Root ArgoCD Application (upc-prod cluster)
|
||||||
│
|
│
|
||||||
├── infra/ # Infrastructure ArgoCD Applications (Kustomize)
|
├── infra/ # Infrastructure ArgoCD Applications (Kustomize)
|
||||||
│ ├── base/ # Base Application manifests (upc-dev defaults)
|
│ ├── base/ # Base Application manifests (one dir per component)
|
||||||
│ │ ├── kustomization.yaml
|
│ │ ├── kustomization.yaml # Aggregates all component subdirectories
|
||||||
│ │ ├── traefik-application.yaml
|
│ │ ├── traefik-application/
|
||||||
│ │ ├── keycloak.yaml
|
│ │ │ ├── kustomization.yaml
|
||||||
│ │ ├── grafana.yaml
|
│ │ │ └── traefik-application.yaml
|
||||||
│ │ ├── gitea.yaml
|
│ │ ├── keycloak/
|
||||||
│ │ ├── gitea-actions.yaml
|
│ │ │ ├── kustomization.yaml
|
||||||
│ │ ├── tempo.yaml
|
│ │ │ └── keycloak.yaml
|
||||||
│ │ ├── renovate.yaml
|
│ │ ├── grafana/
|
||||||
│ │ ├── ... # All other Application manifests
|
│ │ ├── prometheus/
|
||||||
│ │ └── secrets.yaml
|
│ │ ├── ... # Each component in its own subdirectory
|
||||||
|
│ │ └── secrets/
|
||||||
│ ├── overlays/ # Per-cluster Kustomize overrides
|
│ ├── overlays/ # Per-cluster Kustomize overrides
|
||||||
│ │ ├── upc-dev/ # UpCloud Dev (uses base as-is)
|
│ │ ├── upc-dev/ # UpCloud Dev — includes all (resources: ../../base)
|
||||||
│ │ ├── upc-prod/ # UpCloud Prod (patches value paths)
|
│ │ ├── upc-prod/ # UpCloud Prod — all + patches
|
||||||
|
│ │ ├── aks-dev/ # Azure AKS Dev — selective components
|
||||||
|
│ │ ├── aks-prod/ # Azure AKS Prod
|
||||||
│ │ ├── eks-dev/ # AWS EKS Dev
|
│ │ ├── eks-dev/ # AWS EKS Dev
|
||||||
│ │ ├── eks-prod/ # AWS EKS Prod
|
│ │ ├── eks-prod/ # AWS EKS Prod
|
||||||
│ │ ├── aks-dev/ # Azure AKS Dev
|
|
||||||
│ │ ├── aks-prod/ # Azure AKS Prod
|
|
||||||
│ │ ├── gke-dev/ # GCP GKE Dev
|
│ │ ├── gke-dev/ # GCP GKE Dev
|
||||||
│ │ └── gke-prod/ # GCP GKE Prod
|
│ │ └── gke-prod/ # GCP GKE Prod
|
||||||
│ ├── dashboards/ # Grafana dashboard ConfigMaps
|
│ ├── dashboards/ # Grafana dashboard ConfigMaps
|
||||||
@@ -149,13 +150,17 @@ launchpad/
|
|||||||
│ └── gcp-{dev,prod}/ # GCP: premium-rwo, L4 LB
|
│ └── gcp-{dev,prod}/ # GCP: premium-rwo, L4 LB
|
||||||
│
|
│
|
||||||
├── apps/ # Business Application ArgoCD manifests (Kustomize)
|
├── apps/ # Business Application ArgoCD manifests (Kustomize)
|
||||||
│ ├── base/ # Base app manifests
|
│ ├── base/ # One subdirectory per app
|
||||||
│ │ ├── kustomization.yaml
|
│ │ ├── kustomization.yaml
|
||||||
│ │ ├── dot-ai-stack.yaml
|
│ │ ├── musicman/
|
||||||
│ │ └── ...
|
│ │ ├── mcp10x/
|
||||||
|
│ │ ├── dot-ai-stack/
|
||||||
|
│ │ ├── ts-mcp/
|
||||||
|
│ │ └── argo-mcp/
|
||||||
│ └── overlays/
|
│ └── overlays/
|
||||||
│ ├── upc-dev/ # Uses base as-is
|
│ ├── upc-dev/ # All apps (resources: ../../base)
|
||||||
│ └── upc-prod/ # Patches value paths
|
│ ├── upc-prod/ # All apps + patches
|
||||||
|
│ └── aks-dev/ # Selective apps only
|
||||||
│
|
│
|
||||||
├── cluster-resources/ # Cluster-wide Kubernetes resources
|
├── cluster-resources/ # Cluster-wide Kubernetes resources
|
||||||
│ ├── ...
|
│ ├── ...
|
||||||
@@ -171,6 +176,8 @@ launchpad/
|
|||||||
|
|
||||||
**Key Points**:
|
**Key Points**:
|
||||||
- `_app-of-apps-upc-dev.yaml` and `_app-of-apps-upc-prod.yaml` are the per-cluster root Applications
|
- `_app-of-apps-upc-dev.yaml` and `_app-of-apps-upc-prod.yaml` are the per-cluster root Applications
|
||||||
|
- Each component in `base/` has its own subdirectory with a `kustomization.yaml`
|
||||||
|
- Overlays can include **all** components (`resources: [../../base]`) or **cherry-pick** specific ones (`resources: [../../base/grafana, ../../base/prometheus]`)
|
||||||
- Kustomize overlays in `infra/overlays/` render base Applications with per-cluster patches
|
- Kustomize overlays in `infra/overlays/` render base Applications with per-cluster patches
|
||||||
- Helm values are split: `values/base/` (shared) + `values/upc-dev/` or `values/upc-prod/` (cluster-specific)
|
- Helm values are split: `values/base/` (shared) + `values/upc-dev/` or `values/upc-prod/` (cluster-specific)
|
||||||
- `apps/` follows the same base/overlays pattern for business applications
|
- `apps/` follows the same base/overlays pattern for business applications
|
||||||
@@ -353,16 +360,30 @@ spec:
|
|||||||
|
|
||||||
### Multi-Cluster Pattern
|
### Multi-Cluster Pattern
|
||||||
|
|
||||||
Kustomize overlays enable deploying the same Applications across clusters with different configurations:
|
Kustomize overlays enable deploying the same Applications across clusters with different configurations.
|
||||||
|
|
||||||
|
Each component in `infra/base/` and `apps/base/` lives in its own subdirectory. Overlays define **which components to include** and optionally **patch** them:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# infra/base/ contains default (upc-dev) Applications
|
# Option 1: Include ALL components (full cluster)
|
||||||
# Helm values are layered: base + cluster-specific
|
# infra/overlays/upc-dev/kustomization.yaml
|
||||||
valueFiles:
|
resources:
|
||||||
- $values/infra/values/base/traefik-values.yaml # Shared config
|
- ../../base # Pulls in every component subdirectory
|
||||||
- $values/infra/values/upc-dev/traefik-values.yaml # Cluster-specific
|
|
||||||
|
|
||||||
# infra/overlays/upc-prod/kustomization.yaml patches the second valueFile
|
# Option 2: Cherry-pick specific components (lightweight cluster)
|
||||||
|
# infra/overlays/aks-dev/kustomization.yaml
|
||||||
|
resources:
|
||||||
|
- ../../base/traefik-application
|
||||||
|
- ../../base/grafana
|
||||||
|
- ../../base/prometheus
|
||||||
|
- ../../base/loki
|
||||||
|
# Only listed components are deployed — others are excluded
|
||||||
|
```
|
||||||
|
|
||||||
|
Per-cluster patches swap Helm value file paths:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# infra/overlays/upc-prod/kustomization.yaml
|
||||||
patches:
|
patches:
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
|
|||||||
@@ -76,33 +76,28 @@ launchpad/
|
|||||||
├── _app-of-apps-upc-dev.yaml # Root ArgoCD Application (upc-dev)
|
├── _app-of-apps-upc-dev.yaml # Root ArgoCD Application (upc-dev)
|
||||||
├── _app-of-apps-upc-prod.yaml # Root ArgoCD Application (upc-prod)
|
├── _app-of-apps-upc-prod.yaml # Root ArgoCD Application (upc-prod)
|
||||||
│
|
│
|
||||||
├── infra/ # Infrastructure applications
|
├── infra/ # Infrastructure applications (Kustomize)
|
||||||
│ ├── cluster-resources-application.yaml
|
│ ├── base/ # One subdirectory per component
|
||||||
│ ├── enterprise-apps.yaml
|
│ │ ├── kustomization.yaml # Aggregates all component subdirectories
|
||||||
│ ├── traefik-application.yaml
|
│ │ ├── traefik-application/
|
||||||
│ ├── cert-manager-application.yaml
|
│ │ │ ├── kustomization.yaml
|
||||||
│ ├── kyverno.yaml
|
│ │ │ └── traefik-application.yaml
|
||||||
│ ├── kyverno-policies.yaml
|
│ │ ├── keycloak/
|
||||||
│ ├── prometheus.yaml
|
│ │ │ ├── kustomization.yaml
|
||||||
│ ├── grafana.yaml
|
│ │ │ └── keycloak.yaml
|
||||||
│ ├── loki.yaml
|
│ │ ├── grafana/
|
||||||
│ ├── tempo.yaml
|
│ │ ├── prometheus/
|
||||||
│ ├── fluent-bit.yaml
|
│ │ ├── loki/
|
||||||
│ ├── gitea.yaml
|
│ │ ├── tempo/
|
||||||
│ ├── gitea-actions.yaml
|
│ │ ├── gitea/
|
||||||
│ ├── sealedsecrets.yaml
|
│ │ ├── opencost/
|
||||||
│ ├── secrets.yaml
|
│ │ ├── ... # Each component in own directory
|
||||||
│ ├── renovate.yaml
|
│ │ └── secrets/
|
||||||
│ ├── base/ # ArgoCD Application manifests (Kustomize base)
|
│ ├── overlays/ # Per-cluster: include all or cherry-pick
|
||||||
│ │ ├── gitea.yaml
|
│ │ ├── upc-dev/ # resources: [../../base] (all components)
|
||||||
│ │ ├── opencost.yaml
|
│ │ ├── upc-prod/ # resources: [../../base] + patches
|
||||||
│ │ ├── traefik-application.yaml
|
│ │ ├── aks-dev/ # resources: [../../base/grafana, ...] (selective)
|
||||||
│ │ ├── keycloak.yaml
|
│ │ └── .../ # 8 clusters total
|
||||||
│ │ ├── grafana.yaml
|
|
||||||
│ │ └── ...
|
|
||||||
│ ├── overlays/
|
|
||||||
│ │ └── upc-prod/
|
|
||||||
│ │ └── kustomization.yaml # Patches upc-dev → upc-prod valueFile paths
|
|
||||||
│ └── values/
|
│ └── values/
|
||||||
│ ├── base/ # Cloud-agnostic Helm values
|
│ ├── base/ # Cloud-agnostic Helm values
|
||||||
│ │ ├── gitea-values.yaml
|
│ │ ├── gitea-values.yaml
|
||||||
@@ -122,11 +117,18 @@ launchpad/
|
|||||||
│ ├── gitea-values.yaml
|
│ ├── gitea-values.yaml
|
||||||
│ └── opencost-values.yaml
|
│ └── opencost-values.yaml
|
||||||
│
|
│
|
||||||
├── apps/ # Business applications
|
├── apps/ # Business applications (Kustomize)
|
||||||
│ ├── mcp10x.yaml
|
│ ├── base/ # One subdirectory per app
|
||||||
│ ├── musicman.yaml
|
│ │ ├── kustomization.yaml
|
||||||
│ ├── dot-ai-stack.yaml
|
│ │ ├── musicman/
|
||||||
│ └── argo-mcp.yaml
|
│ │ ├── mcp10x/
|
||||||
|
│ │ ├── dot-ai-stack/
|
||||||
|
│ │ ├── ts-mcp/
|
||||||
|
│ │ └── argo-mcp/
|
||||||
|
│ └── overlays/ # Per-cluster: include all or cherry-pick
|
||||||
|
│ ├── upc-dev/
|
||||||
|
│ ├── upc-prod/
|
||||||
|
│ └── aks-dev/ # Selective apps only
|
||||||
│
|
│
|
||||||
├── cluster-resources/ # Cluster-level resources
|
├── cluster-resources/ # Cluster-level resources
|
||||||
│ ├── cert-manager-namespace.yaml
|
│ ├── cert-manager-namespace.yaml
|
||||||
@@ -723,6 +725,59 @@ TLS terminates at Traefik; ArgoCD runs in insecure mode behind the proxy.
|
|||||||
|
|
||||||
## Infrastructure Components
|
## Infrastructure Components
|
||||||
|
|
||||||
|
### Homepage (Platform Dashboard)
|
||||||
|
|
||||||
|
**Chart**: `jameswynn/homepage`
|
||||||
|
**Namespace**: `homepage`
|
||||||
|
**URL**: `https://start.forteapps.net`
|
||||||
|
|
||||||
|
Platform dashboard that auto-discovers deployed apps via Kubernetes service annotations.
|
||||||
|
|
||||||
|
**Discovery mechanism**: Services annotated with `gethomepage.dev/enabled: "true"` appear in the dashboard. Apps not deployed = annotations absent = not shown. Fully dynamic per environment.
|
||||||
|
|
||||||
|
**Annotated services**:
|
||||||
|
| Service | Namespace | Group | Widget |
|
||||||
|
|---------|-----------|-------|--------|
|
||||||
|
| `gitea-http` | `gitea` | DevOps | `gitea` |
|
||||||
|
| `argocd-server` | `argocd` | DevOps | `argocd` |
|
||||||
|
| `keycloak` | `keycloak` | Identity | none |
|
||||||
|
| `grafana` | `monitoring` | Monitoring | `grafana` |
|
||||||
|
| `karpor-server` | `karpor` | DevOps | none |
|
||||||
|
|
||||||
|
**Adding a new app**: Annotate the app's Service in its Helm values:
|
||||||
|
```yaml
|
||||||
|
service:
|
||||||
|
annotations:
|
||||||
|
gethomepage.dev/enabled: "true"
|
||||||
|
gethomepage.dev/name: "My App"
|
||||||
|
gethomepage.dev/description: "What it does"
|
||||||
|
gethomepage.dev/group: "GroupName"
|
||||||
|
gethomepage.dev/icon: "icon-name" # https://github.com/walkxcode/dashboard-icons
|
||||||
|
gethomepage.dev/href: "https://myapp.forteapps.net"
|
||||||
|
# Optional live widget:
|
||||||
|
gethomepage.dev/widget.type: "myapp"
|
||||||
|
gethomepage.dev/widget.url: "https://myapp.forteapps.net"
|
||||||
|
# gethomepage.dev/widget.key: "{{HOMEPAGE_VAR_MYAPP_TOKEN}}"
|
||||||
|
```
|
||||||
|
|
||||||
|
**Widget API credentials**: Inject via env vars into the Homepage pod:
|
||||||
|
```yaml
|
||||||
|
# In homepage-values.yaml per environment
|
||||||
|
env:
|
||||||
|
- name: HOMEPAGE_VAR_GRAFANA_TOKEN
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: homepage-widget-credentials
|
||||||
|
key: grafana-token
|
||||||
|
```
|
||||||
|
Then reference as `gethomepage.dev/widget.key: "{{HOMEPAGE_VAR_GRAFANA_TOKEN}}"`.
|
||||||
|
|
||||||
|
**Values files**:
|
||||||
|
- `infra/values/base/homepage-values.yaml` — RBAC, kubernetes mode, layout
|
||||||
|
- `infra/values/{env}/homepage-values.yaml` — hostname per environment
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
### Traefik
|
### Traefik
|
||||||
|
|
||||||
**Chart**: `traefik/traefik`
|
**Chart**: `traefik/traefik`
|
||||||
|
|||||||
4
infra/base/cert-manager-application/kustomization.yaml
Normal file
4
infra/base/cert-manager-application/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- cert-manager-application.yaml
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- cluster-resources-application.yaml
|
||||||
@@ -1,33 +1,42 @@
|
|||||||
apiVersion: argoproj.io/v1alpha1
|
apiVersion: argoproj.io/v1alpha1
|
||||||
kind: Application
|
kind: Application
|
||||||
metadata:
|
metadata:
|
||||||
name: network-policies
|
name: databunker
|
||||||
namespace: argocd
|
namespace: argocd
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: network-policies
|
|
||||||
app.kubernetes.io/part-of: platform
|
|
||||||
app.kubernetes.io/managed-by: argocd
|
|
||||||
annotations:
|
annotations:
|
||||||
argocd.argoproj.io/sync-wave: "1"
|
argocd.argoproj.io/sync-wave: "1"
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: databunker
|
||||||
|
app.kubernetes.io/part-of: identity
|
||||||
|
app.kubernetes.io/managed-by: argocd
|
||||||
finalizers:
|
finalizers:
|
||||||
- resources-finalizer.argocd.argoproj.io
|
- resources-finalizer.argocd.argoproj.io
|
||||||
spec:
|
spec:
|
||||||
project: default
|
project: default
|
||||||
|
|
||||||
source:
|
sources:
|
||||||
repoURL: ssh://git@git.forteapps.net:2222/Forte/launchpad.git
|
- repoURL: https://securitybunker.github.io/databunkerpro-setup
|
||||||
|
chart: databunkerpro
|
||||||
|
targetRevision: "0.1.0"
|
||||||
|
helm:
|
||||||
|
releaseName: databunkerpro
|
||||||
|
valueFiles:
|
||||||
|
- $values/infra/values/base/databunker-values.yaml
|
||||||
|
|
||||||
|
- repoURL: ssh://git@git.forteapps.net:2222/Forte/launchpad.git
|
||||||
targetRevision: HEAD
|
targetRevision: HEAD
|
||||||
path: cluster-resources/network
|
ref: values
|
||||||
|
|
||||||
destination:
|
destination:
|
||||||
server: https://kubernetes.default.svc
|
server: https://kubernetes.default.svc
|
||||||
|
namespace: databunker
|
||||||
|
|
||||||
syncPolicy:
|
syncPolicy:
|
||||||
automated:
|
automated:
|
||||||
prune: true
|
prune: true
|
||||||
selfHeal: true
|
selfHeal: true
|
||||||
allowEmpty: false
|
allowEmpty: false
|
||||||
|
|
||||||
syncOptions:
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
- Validate=true
|
- Validate=true
|
||||||
- ServerSideApply=true
|
- ServerSideApply=true
|
||||||
4
infra/base/databunker/kustomization.yaml
Normal file
4
infra/base/databunker/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- databunker.yaml
|
||||||
4
infra/base/enterprise-apps/kustomization.yaml
Normal file
4
infra/base/enterprise-apps/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- enterprise-apps.yaml
|
||||||
4
infra/base/fluent-bit/kustomization.yaml
Normal file
4
infra/base/fluent-bit/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- fluent-bit.yaml
|
||||||
4
infra/base/gitea-actions/kustomization.yaml
Normal file
4
infra/base/gitea-actions/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- gitea-actions.yaml
|
||||||
8
infra/base/gitea/kustomization.yaml
Normal file
8
infra/base/gitea/kustomization.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- gitea.yaml
|
||||||
|
- gitea-backup-s3-sealed.yaml
|
||||||
|
- gitea-credentials-sealed.yaml
|
||||||
|
- gitea-runner-token-sealed.yaml
|
||||||
|
- gitea-smtp-secret-sealed.yaml
|
||||||
4
infra/base/grafana-dashboards/kustomization.yaml
Normal file
4
infra/base/grafana-dashboards/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- grafana-dashboards.yaml
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
resources:
|
resources:
|
||||||
- ../../base
|
- grafana.yaml
|
||||||
43
infra/base/homepage/homepage.yaml
Normal file
43
infra/base/homepage/homepage.yaml
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: homepage
|
||||||
|
namespace: argocd
|
||||||
|
annotations:
|
||||||
|
argocd.argoproj.io/sync-wave: "3"
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: homepage
|
||||||
|
app.kubernetes.io/part-of: platform
|
||||||
|
app.kubernetes.io/managed-by: argocd
|
||||||
|
finalizers:
|
||||||
|
- resources-finalizer.argocd.argoproj.io
|
||||||
|
spec:
|
||||||
|
project: default
|
||||||
|
|
||||||
|
sources:
|
||||||
|
- repoURL: https://jameswynn.github.io/helm-charts
|
||||||
|
chart: homepage
|
||||||
|
targetRevision: "2.1.0"
|
||||||
|
helm:
|
||||||
|
releaseName: homepage
|
||||||
|
valueFiles:
|
||||||
|
- $values/infra/values/base/homepage-values.yaml
|
||||||
|
- $values/infra/values/upc-dev/homepage-values.yaml
|
||||||
|
|
||||||
|
- repoURL: ssh://git@git.forteapps.net:2222/Forte/launchpad.git
|
||||||
|
targetRevision: HEAD
|
||||||
|
ref: values
|
||||||
|
|
||||||
|
destination:
|
||||||
|
server: https://kubernetes.default.svc
|
||||||
|
namespace: homepage
|
||||||
|
|
||||||
|
syncPolicy:
|
||||||
|
automated:
|
||||||
|
prune: true
|
||||||
|
selfHeal: true
|
||||||
|
allowEmpty: false
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
|
- Validate=true
|
||||||
|
- ServerSideApply=true
|
||||||
4
infra/base/homepage/kustomization.yaml
Normal file
4
infra/base/homepage/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- homepage.yaml
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
resources:
|
resources:
|
||||||
- ../../base
|
- karpor.yaml
|
||||||
5
infra/base/keycloak/kustomization.yaml
Normal file
5
infra/base/keycloak/kustomization.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- keycloak.yaml
|
||||||
|
- keycloak-credentials-sealed.yaml
|
||||||
@@ -1,24 +1,24 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
resources:
|
resources:
|
||||||
- traefik-application.yaml
|
- traefik-application
|
||||||
- keycloak.yaml
|
- keycloak
|
||||||
- grafana.yaml
|
- grafana
|
||||||
- cert-manager-application.yaml
|
- cert-manager-application
|
||||||
- kyverno.yaml
|
- kyverno
|
||||||
- sealedsecrets.yaml
|
- sealedsecrets
|
||||||
- prometheus.yaml
|
- prometheus
|
||||||
- loki.yaml
|
- loki
|
||||||
- fluent-bit.yaml
|
- fluent-bit
|
||||||
- enterprise-apps.yaml
|
- enterprise-apps
|
||||||
- cluster-resources-application.yaml
|
- cluster-resources-application
|
||||||
- kyverno-policies.yaml
|
- kyverno-policies
|
||||||
- secrets.yaml
|
- gitea
|
||||||
- gitea.yaml
|
- gitea-actions
|
||||||
- gitea-actions.yaml
|
- opencost
|
||||||
- opencost.yaml
|
- renovate
|
||||||
- renovate.yaml
|
- tempo
|
||||||
- tempo.yaml
|
- grafana-dashboards
|
||||||
- grafana-dashboards.yaml
|
- karpor
|
||||||
- network-policies-application.yaml
|
- databunker
|
||||||
- karpor.yaml
|
- homepage
|
||||||
|
|||||||
4
infra/base/kyverno-policies/kustomization.yaml
Normal file
4
infra/base/kyverno-policies/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- kyverno-policies.yaml
|
||||||
4
infra/base/kyverno/kustomization.yaml
Normal file
4
infra/base/kyverno/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- kyverno.yaml
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
resources:
|
resources:
|
||||||
- ../../base
|
- loki.yaml
|
||||||
@@ -40,3 +40,9 @@ spec:
|
|||||||
- CreateNamespace=true
|
- CreateNamespace=true
|
||||||
- Validate=true
|
- Validate=true
|
||||||
- ServerSideApply=true
|
- ServerSideApply=true
|
||||||
|
|
||||||
|
ignoreDifferences:
|
||||||
|
- group: apps
|
||||||
|
kind: StatefulSet
|
||||||
|
jsonPointers:
|
||||||
|
- /spec/volumeClaimTemplates
|
||||||
4
infra/base/opencost/kustomization.yaml
Normal file
4
infra/base/opencost/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- opencost.yaml
|
||||||
4
infra/base/prometheus/kustomization.yaml
Normal file
4
infra/base/prometheus/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- prometheus.yaml
|
||||||
5
infra/base/renovate/kustomization.yaml
Normal file
5
infra/base/renovate/kustomization.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- renovate.yaml
|
||||||
|
- renovate-env-sealed.yaml
|
||||||
5
infra/base/sealedsecrets/kustomization.yaml
Normal file
5
infra/base/sealedsecrets/kustomization.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- sealedsecrets.yaml
|
||||||
|
- argocd-forte-helm-secret-sealed.yaml
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
apiVersion: argoproj.io/v1alpha1
|
|
||||||
kind: Application
|
|
||||||
metadata:
|
|
||||||
name: secrets
|
|
||||||
namespace: argocd
|
|
||||||
annotations:
|
|
||||||
argocd.argoproj.io/sync-wave: "2"
|
|
||||||
notifications.argoproj.io/subscribe.on-sync-succeeded.slack: ""
|
|
||||||
notifications.argoproj.io/subscribe.on-sync-failed.slack: ""
|
|
||||||
notifications.argoproj.io/subscribe.on-degraded.slack: ""
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: secrets
|
|
||||||
app.kubernetes.io/part-of: platform
|
|
||||||
app.kubernetes.io/managed-by: argocd
|
|
||||||
finalizers:
|
|
||||||
- resources-finalizer.argocd.argoproj.io
|
|
||||||
spec:
|
|
||||||
project: default
|
|
||||||
source:
|
|
||||||
repoURL: ssh://git@git.forteapps.net:2222/Forte/launchpad.git
|
|
||||||
path: secrets/overlays/upc-dev
|
|
||||||
destination:
|
|
||||||
server: https://kubernetes.default.svc
|
|
||||||
namespace: secrets
|
|
||||||
syncPolicy:
|
|
||||||
automated:
|
|
||||||
prune: true
|
|
||||||
selfHeal: true
|
|
||||||
syncOptions:
|
|
||||||
- CreateNamespace=true
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
resources:
|
resources:
|
||||||
- ../../base
|
- tempo.yaml
|
||||||
@@ -40,3 +40,9 @@ spec:
|
|||||||
- CreateNamespace=true
|
- CreateNamespace=true
|
||||||
- Validate=true
|
- Validate=true
|
||||||
- ServerSideApply=true
|
- ServerSideApply=true
|
||||||
|
|
||||||
|
ignoreDifferences:
|
||||||
|
- group: apps
|
||||||
|
kind: StatefulSet
|
||||||
|
jsonPointers:
|
||||||
|
- /spec/volumeClaimTemplates
|
||||||
4
infra/base/traefik-application/kustomization.yaml
Normal file
4
infra/base/traefik-application/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- traefik-application.yaml
|
||||||
@@ -1,9 +1,31 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
resources:
|
resources:
|
||||||
- ../../base
|
- ../../base/cert-manager-application
|
||||||
|
- ../../base/cluster-resources-application
|
||||||
|
- ../../base/grafana
|
||||||
|
- ../../base/grafana-dashboards
|
||||||
|
- ../../base/kyverno
|
||||||
|
- ../../base/kyverno-policies
|
||||||
|
- ../../base/loki
|
||||||
|
- ../../base/enterprise-apps
|
||||||
|
- ../../base/opencost
|
||||||
|
- ../../base/prometheus
|
||||||
|
- ../../base/sealedsecrets
|
||||||
|
- ../../base/tempo
|
||||||
|
- ../../base/homepage
|
||||||
|
- ../../base/traefik-application
|
||||||
|
|
||||||
patches:
|
patches:
|
||||||
|
# Homepage: swap upc-dev → aks-dev
|
||||||
|
- target:
|
||||||
|
kind: Application
|
||||||
|
name: homepage
|
||||||
|
patch: |
|
||||||
|
- op: replace
|
||||||
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
|
value: $values/infra/values/aks-dev/homepage-values.yaml
|
||||||
|
|
||||||
# Traefik: swap upc-dev → aks-dev
|
# Traefik: swap upc-dev → aks-dev
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
@@ -13,15 +35,6 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/aks-dev/traefik-values.yaml
|
value: $values/infra/values/aks-dev/traefik-values.yaml
|
||||||
|
|
||||||
# Keycloak: swap upc-dev → aks-dev
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: keycloak
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
|
||||||
value: $values/infra/values/aks-dev/keycloak-values.yaml
|
|
||||||
|
|
||||||
# Grafana: swap upc-dev → aks-dev
|
# Grafana: swap upc-dev → aks-dev
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
@@ -31,15 +44,6 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/aks-dev/grafana-values.yaml
|
value: $values/infra/values/aks-dev/grafana-values.yaml
|
||||||
|
|
||||||
# Gitea: swap upc-dev → aks-dev
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: gitea
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
|
||||||
value: $values/infra/values/aks-dev/gitea-values.yaml
|
|
||||||
|
|
||||||
# OpenCost: swap upc-dev → aks-dev
|
# OpenCost: swap upc-dev → aks-dev
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
@@ -49,16 +53,7 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/aks-dev/opencost-values.yaml
|
value: $values/infra/values/aks-dev/opencost-values.yaml
|
||||||
|
|
||||||
# Secrets: change path to aks-dev
|
# Ent apps: swap upc-dev → aks-prod
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: secrets
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/source/path
|
|
||||||
value: secrets/aks-dev
|
|
||||||
|
|
||||||
# Enterprise-apps: point to aks-dev overlay
|
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
name: enterprise-apps
|
name: enterprise-apps
|
||||||
|
|||||||
@@ -1,7 +1,18 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
resources:
|
resources:
|
||||||
- ../../base
|
- ../../base/cert-manager-application
|
||||||
|
- ../../base/cluster-resources-application
|
||||||
|
- ../../base/grafana
|
||||||
|
- ../../base/grafana-dashboards
|
||||||
|
- ../../base/kyverno
|
||||||
|
- ../../base/kyverno-policies
|
||||||
|
- ../../base/loki
|
||||||
|
- ../../base/opencost
|
||||||
|
- ../../base/prometheus
|
||||||
|
- ../../base/sealedsecrets
|
||||||
|
- ../../base/tempo
|
||||||
|
- ../../base/traefik-application
|
||||||
|
|
||||||
patches:
|
patches:
|
||||||
# Traefik: swap upc-dev → aks-prod
|
# Traefik: swap upc-dev → aks-prod
|
||||||
@@ -13,16 +24,7 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/aks-prod/traefik-values.yaml
|
value: $values/infra/values/aks-prod/traefik-values.yaml
|
||||||
|
|
||||||
# Keycloak: swap upc-dev → aks-prod
|
# Grafana: swap upc-dev → aks-prod
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: keycloak
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
|
||||||
value: $values/infra/values/aks-prod/keycloak-values.yaml
|
|
||||||
|
|
||||||
# Grafana: swap upc-dev → aks-prod
|
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
name: grafana
|
name: grafana
|
||||||
@@ -31,15 +33,6 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/aks-prod/grafana-values.yaml
|
value: $values/infra/values/aks-prod/grafana-values.yaml
|
||||||
|
|
||||||
# Gitea: swap upc-dev → aks-prod
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: gitea
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
|
||||||
value: $values/infra/values/aks-prod/gitea-values.yaml
|
|
||||||
|
|
||||||
# OpenCost: swap upc-dev → aks-prod
|
# OpenCost: swap upc-dev → aks-prod
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
@@ -48,21 +41,3 @@ patches:
|
|||||||
- op: replace
|
- op: replace
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/aks-prod/opencost-values.yaml
|
value: $values/infra/values/aks-prod/opencost-values.yaml
|
||||||
|
|
||||||
# Secrets: change path to aks-prod
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: secrets
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/source/path
|
|
||||||
value: secrets/aks-prod
|
|
||||||
|
|
||||||
# Enterprise-apps: point to aks-prod overlay
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: enterprise-apps
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/source/path
|
|
||||||
value: apps/overlays/aks-prod
|
|
||||||
|
|||||||
@@ -1,7 +1,18 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
resources:
|
resources:
|
||||||
- ../../base
|
- ../../base/cert-manager-application
|
||||||
|
- ../../base/cluster-resources-application
|
||||||
|
- ../../base/grafana
|
||||||
|
- ../../base/grafana-dashboards
|
||||||
|
- ../../base/kyverno
|
||||||
|
- ../../base/kyverno-policies
|
||||||
|
- ../../base/loki
|
||||||
|
- ../../base/opencost
|
||||||
|
- ../../base/prometheus
|
||||||
|
- ../../base/sealedsecrets
|
||||||
|
- ../../base/tempo
|
||||||
|
- ../../base/traefik-application
|
||||||
|
|
||||||
patches:
|
patches:
|
||||||
# Traefik: swap upc-dev → eks-dev
|
# Traefik: swap upc-dev → eks-dev
|
||||||
@@ -13,16 +24,7 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/eks-dev/traefik-values.yaml
|
value: $values/infra/values/eks-dev/traefik-values.yaml
|
||||||
|
|
||||||
# Keycloak: swap upc-dev → eks-dev
|
# Grafana: swap upc-dev → eks-dev
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: keycloak
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
|
||||||
value: $values/infra/values/eks-dev/keycloak-values.yaml
|
|
||||||
|
|
||||||
# Grafana: swap upc-dev → eks-dev
|
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
name: grafana
|
name: grafana
|
||||||
@@ -31,15 +33,6 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/eks-dev/grafana-values.yaml
|
value: $values/infra/values/eks-dev/grafana-values.yaml
|
||||||
|
|
||||||
# Gitea: swap upc-dev → eks-dev
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: gitea
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
|
||||||
value: $values/infra/values/eks-dev/gitea-values.yaml
|
|
||||||
|
|
||||||
# OpenCost: swap upc-dev → eks-dev
|
# OpenCost: swap upc-dev → eks-dev
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
@@ -48,21 +41,3 @@ patches:
|
|||||||
- op: replace
|
- op: replace
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/eks-dev/opencost-values.yaml
|
value: $values/infra/values/eks-dev/opencost-values.yaml
|
||||||
|
|
||||||
# Secrets: change path to eks-dev
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: secrets
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/source/path
|
|
||||||
value: secrets/eks-dev
|
|
||||||
|
|
||||||
# Enterprise-apps: point to eks-dev overlay
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: enterprise-apps
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/source/path
|
|
||||||
value: apps/overlays/eks-dev
|
|
||||||
|
|||||||
@@ -1,7 +1,18 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
resources:
|
resources:
|
||||||
- ../../base
|
- ../../base/cert-manager-application
|
||||||
|
- ../../base/cluster-resources-application
|
||||||
|
- ../../base/grafana
|
||||||
|
- ../../base/grafana-dashboards
|
||||||
|
- ../../base/kyverno
|
||||||
|
- ../../base/kyverno-policies
|
||||||
|
- ../../base/loki
|
||||||
|
- ../../base/opencost
|
||||||
|
- ../../base/prometheus
|
||||||
|
- ../../base/sealedsecrets
|
||||||
|
- ../../base/tempo
|
||||||
|
- ../../base/traefik-application
|
||||||
|
|
||||||
patches:
|
patches:
|
||||||
# Traefik: swap upc-dev → eks-prod
|
# Traefik: swap upc-dev → eks-prod
|
||||||
@@ -13,16 +24,7 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/eks-prod/traefik-values.yaml
|
value: $values/infra/values/eks-prod/traefik-values.yaml
|
||||||
|
|
||||||
# Keycloak: swap upc-dev → eks-prod
|
# Grafana: swap upc-dev → eks-prod
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: keycloak
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
|
||||||
value: $values/infra/values/eks-prod/keycloak-values.yaml
|
|
||||||
|
|
||||||
# Grafana: swap upc-dev → eks-prod
|
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
name: grafana
|
name: grafana
|
||||||
@@ -31,15 +33,6 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/eks-prod/grafana-values.yaml
|
value: $values/infra/values/eks-prod/grafana-values.yaml
|
||||||
|
|
||||||
# Gitea: swap upc-dev → eks-prod
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: gitea
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
|
||||||
value: $values/infra/values/eks-prod/gitea-values.yaml
|
|
||||||
|
|
||||||
# OpenCost: swap upc-dev → eks-prod
|
# OpenCost: swap upc-dev → eks-prod
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
@@ -48,21 +41,3 @@ patches:
|
|||||||
- op: replace
|
- op: replace
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/eks-prod/opencost-values.yaml
|
value: $values/infra/values/eks-prod/opencost-values.yaml
|
||||||
|
|
||||||
# Secrets: change path to eks-prod
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: secrets
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/source/path
|
|
||||||
value: secrets/eks-prod
|
|
||||||
|
|
||||||
# Enterprise-apps: point to eks-prod overlay
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: enterprise-apps
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/source/path
|
|
||||||
value: apps/overlays/eks-prod
|
|
||||||
|
|||||||
@@ -1,7 +1,18 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
resources:
|
resources:
|
||||||
- ../../base
|
- ../../base/cert-manager-application
|
||||||
|
- ../../base/cluster-resources-application
|
||||||
|
- ../../base/grafana
|
||||||
|
- ../../base/grafana-dashboards
|
||||||
|
- ../../base/kyverno
|
||||||
|
- ../../base/kyverno-policies
|
||||||
|
- ../../base/loki
|
||||||
|
- ../../base/opencost
|
||||||
|
- ../../base/prometheus
|
||||||
|
- ../../base/sealedsecrets
|
||||||
|
- ../../base/tempo
|
||||||
|
- ../../base/traefik-application
|
||||||
|
|
||||||
patches:
|
patches:
|
||||||
# Traefik: swap upc-dev → gke-dev
|
# Traefik: swap upc-dev → gke-dev
|
||||||
@@ -13,16 +24,7 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/gke-dev/traefik-values.yaml
|
value: $values/infra/values/gke-dev/traefik-values.yaml
|
||||||
|
|
||||||
# Keycloak: swap upc-dev → gke-dev
|
# Grafana: swap upc-dev → gke-dev
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: keycloak
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
|
||||||
value: $values/infra/values/gke-dev/keycloak-values.yaml
|
|
||||||
|
|
||||||
# Grafana: swap upc-dev → gke-dev
|
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
name: grafana
|
name: grafana
|
||||||
@@ -31,15 +33,6 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/gke-dev/grafana-values.yaml
|
value: $values/infra/values/gke-dev/grafana-values.yaml
|
||||||
|
|
||||||
# Gitea: swap upc-dev → gke-dev
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: gitea
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
|
||||||
value: $values/infra/values/gke-dev/gitea-values.yaml
|
|
||||||
|
|
||||||
# OpenCost: swap upc-dev → gke-dev
|
# OpenCost: swap upc-dev → gke-dev
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
@@ -48,21 +41,3 @@ patches:
|
|||||||
- op: replace
|
- op: replace
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/gke-dev/opencost-values.yaml
|
value: $values/infra/values/gke-dev/opencost-values.yaml
|
||||||
|
|
||||||
# Secrets: change path to gke-dev
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: secrets
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/source/path
|
|
||||||
value: secrets/gke-dev
|
|
||||||
|
|
||||||
# Enterprise-apps: point to gke-dev overlay
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: enterprise-apps
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/source/path
|
|
||||||
value: apps/overlays/gke-dev
|
|
||||||
|
|||||||
@@ -1,7 +1,18 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
resources:
|
resources:
|
||||||
- ../../base
|
- ../../base/cert-manager-application
|
||||||
|
- ../../base/cluster-resources-application
|
||||||
|
- ../../base/grafana
|
||||||
|
- ../../base/grafana-dashboards
|
||||||
|
- ../../base/kyverno
|
||||||
|
- ../../base/kyverno-policies
|
||||||
|
- ../../base/loki
|
||||||
|
- ../../base/opencost
|
||||||
|
- ../../base/prometheus
|
||||||
|
- ../../base/sealedsecrets
|
||||||
|
- ../../base/tempo
|
||||||
|
- ../../base/traefik-application
|
||||||
|
|
||||||
patches:
|
patches:
|
||||||
# Traefik: swap upc-dev → gke-prod
|
# Traefik: swap upc-dev → gke-prod
|
||||||
@@ -13,16 +24,7 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/gke-prod/traefik-values.yaml
|
value: $values/infra/values/gke-prod/traefik-values.yaml
|
||||||
|
|
||||||
# Keycloak: swap upc-dev → gke-prod
|
# Grafana: swap upc-dev → gke-prod
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: keycloak
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
|
||||||
value: $values/infra/values/gke-prod/keycloak-values.yaml
|
|
||||||
|
|
||||||
# Grafana: swap upc-dev → gke-prod
|
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
name: grafana
|
name: grafana
|
||||||
@@ -31,15 +33,6 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/gke-prod/grafana-values.yaml
|
value: $values/infra/values/gke-prod/grafana-values.yaml
|
||||||
|
|
||||||
# Gitea: swap upc-dev → gke-prod
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: gitea
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
|
||||||
value: $values/infra/values/gke-prod/gitea-values.yaml
|
|
||||||
|
|
||||||
# OpenCost: swap upc-dev → gke-prod
|
# OpenCost: swap upc-dev → gke-prod
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
@@ -48,21 +41,3 @@ patches:
|
|||||||
- op: replace
|
- op: replace
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/gke-prod/opencost-values.yaml
|
value: $values/infra/values/gke-prod/opencost-values.yaml
|
||||||
|
|
||||||
# Secrets: change path to gke-prod
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: secrets
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/source/path
|
|
||||||
value: secrets/gke-prod
|
|
||||||
|
|
||||||
# Enterprise-apps: point to gke-prod overlay
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: enterprise-apps
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/source/path
|
|
||||||
value: apps/overlays/gke-prod
|
|
||||||
|
|||||||
@@ -5,3 +5,12 @@ resources:
|
|||||||
|
|
||||||
# No patches needed — base already has "upc-dev" paths
|
# No patches needed — base already has "upc-dev" paths
|
||||||
# upc-dev is the default/base cluster
|
# upc-dev is the default/base cluster
|
||||||
|
|
||||||
|
patches:
|
||||||
|
- target:
|
||||||
|
kind: Application
|
||||||
|
name: databunker
|
||||||
|
patch: |
|
||||||
|
- op: add
|
||||||
|
path: /spec/sources/0/helm/valueFiles/-
|
||||||
|
value: $values/infra/values/upc-dev/databunker-values.yaml
|
||||||
|
|||||||
@@ -1,10 +1,21 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
resources:
|
resources:
|
||||||
- ../../base
|
- ../../base/cert-manager-application
|
||||||
|
- ../../base/cluster-resources-application
|
||||||
|
- ../../base/grafana
|
||||||
|
- ../../base/grafana-dashboards
|
||||||
|
- ../../base/kyverno
|
||||||
|
- ../../base/kyverno-policies
|
||||||
|
- ../../base/loki
|
||||||
|
- ../../base/opencost
|
||||||
|
- ../../base/prometheus
|
||||||
|
- ../../base/sealedsecrets
|
||||||
|
- ../../base/tempo
|
||||||
|
- ../../base/traefik-application
|
||||||
|
|
||||||
patches:
|
patches:
|
||||||
# Traefik: swap upc-dev → upc-prod in valueFiles
|
# Traefik: swap upc-dev → upc-prod
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
name: traefik
|
name: traefik
|
||||||
@@ -13,16 +24,7 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/upc-prod/traefik-values.yaml
|
value: $values/infra/values/upc-prod/traefik-values.yaml
|
||||||
|
|
||||||
# Keycloak: swap upc-dev → upc-prod
|
# Grafana: swap upc-dev → upc-prod
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: keycloak
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
|
||||||
value: $values/infra/values/upc-prod/keycloak-values.yaml
|
|
||||||
|
|
||||||
# Grafana: swap upc-dev → upc-prod
|
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
name: grafana
|
name: grafana
|
||||||
@@ -31,15 +33,6 @@ patches:
|
|||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/upc-prod/grafana-values.yaml
|
value: $values/infra/values/upc-prod/grafana-values.yaml
|
||||||
|
|
||||||
# Gitea: swap upc-dev → upc-prod
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: gitea
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
|
||||||
value: $values/infra/values/upc-prod/gitea-values.yaml
|
|
||||||
|
|
||||||
# OpenCost: swap upc-dev → upc-prod
|
# OpenCost: swap upc-dev → upc-prod
|
||||||
- target:
|
- target:
|
||||||
kind: Application
|
kind: Application
|
||||||
@@ -48,21 +41,3 @@ patches:
|
|||||||
- op: replace
|
- op: replace
|
||||||
path: /spec/sources/0/helm/valueFiles/1
|
path: /spec/sources/0/helm/valueFiles/1
|
||||||
value: $values/infra/values/upc-prod/opencost-values.yaml
|
value: $values/infra/values/upc-prod/opencost-values.yaml
|
||||||
|
|
||||||
# Secrets: change path to upc-prod
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: secrets
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/source/path
|
|
||||||
value: secrets/overlays/upc-prod
|
|
||||||
|
|
||||||
# Enterprise-apps: point to upc-prod overlay
|
|
||||||
- target:
|
|
||||||
kind: Application
|
|
||||||
name: enterprise-apps
|
|
||||||
patch: |
|
|
||||||
- op: replace
|
|
||||||
path: /spec/source/path
|
|
||||||
value: apps/overlays/upc-prod
|
|
||||||
|
|||||||
5
infra/values/aks-dev/argocd-values.yaml
Normal file
5
infra/values/aks-dev/argocd-values.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
global:
|
||||||
|
domain: argocd.127.0.0.1.nip.io
|
||||||
|
notifications:
|
||||||
|
context:
|
||||||
|
clusterName: "aks-dev-launchpad"
|
||||||
15
infra/values/aks-dev/homepage-values.yaml
Normal file
15
infra/values/aks-dev/homepage-values.yaml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
ingress:
|
||||||
|
main:
|
||||||
|
enabled: true
|
||||||
|
ingressClassName: traefik
|
||||||
|
annotations:
|
||||||
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||||
|
hosts:
|
||||||
|
- host: start.forteapps.net
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
tls:
|
||||||
|
- secretName: homepage-tls
|
||||||
|
hosts:
|
||||||
|
- start.forteapps.net
|
||||||
@@ -35,6 +35,15 @@ server:
|
|||||||
ingressClassName: traefik
|
ingressClassName: traefik
|
||||||
annotations:
|
annotations:
|
||||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||||
|
gethomepage.dev/enabled: "true"
|
||||||
|
gethomepage.dev/name: "ArgoCD"
|
||||||
|
gethomepage.dev/description: "GitOps continuous delivery"
|
||||||
|
gethomepage.dev/group: "DevOps"
|
||||||
|
gethomepage.dev/icon: "argocd"
|
||||||
|
gethomepage.dev/href: "https://argocd.forteapps.net"
|
||||||
|
gethomepage.dev/widget.type: "argocd"
|
||||||
|
gethomepage.dev/widget.url: "https://argocd.forteapps.net"
|
||||||
|
# gethomepage.dev/widget.key: "{{HOMEPAGE_VAR_ARGOCD_TOKEN}}"
|
||||||
tls: true
|
tls: true
|
||||||
extraArgs:
|
extraArgs:
|
||||||
- --insecure
|
- --insecure
|
||||||
|
|||||||
42
infra/values/base/databunker-values.yaml
Normal file
42
infra/values/base/databunker-values.yaml
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
# Default values for databunkerpro
|
||||||
|
image:
|
||||||
|
tag: 0.14.15
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
enabled: false # Set to true to enable ingress
|
||||||
|
className: traefik
|
||||||
|
# Set host to enable ingress
|
||||||
|
host: databunker.example.com
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: traefik
|
||||||
|
cert-manager.io/cluster-issuer: "letsencrypt-prod" # or your cluster issuer
|
||||||
|
traefik.ingress.kubernetes.io/ssl-redirect: "true"
|
||||||
|
traefik.ingress.kubernetes.io/force-ssl-redirect: "true"
|
||||||
|
traefik.ingress.kubernetes.io/ssl-passthrough: "false"
|
||||||
|
# Security headers
|
||||||
|
traefik.ingress.kubernetes.io/configuration-snippet: |
|
||||||
|
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
|
||||||
|
add_header X-Frame-Options DENY always;
|
||||||
|
add_header X-Content-Type-Options nosniff always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
# TLS configuration
|
||||||
|
tls:
|
||||||
|
enabled: true # Set to true to enable TLS
|
||||||
|
secretName: "databunker-tls" # Name of the secret containing TLS certificate
|
||||||
|
|
||||||
|
# Pin PostgreSQL password — chart uses randAlphaNum without lookup,
|
||||||
|
# so each ArgoCD sync would regenerate the password while PVC keeps the old one.
|
||||||
|
# Same issue as Backstage PostgreSQL (see MEMORY.md).
|
||||||
|
internal:
|
||||||
|
postgresql:
|
||||||
|
auth:
|
||||||
|
password: "databunker-pg-pass-2026"
|
||||||
|
|
||||||
|
resources:
|
||||||
|
# Uncomment and adjust these values based on your requirements
|
||||||
|
# requests:
|
||||||
|
# memory: "512Mi"
|
||||||
|
# cpu: "250m"
|
||||||
|
# limits:
|
||||||
|
# memory: "1Gi"
|
||||||
|
# cpu: "500m"
|
||||||
@@ -114,6 +114,15 @@ ingress:
|
|||||||
className: traefik
|
className: traefik
|
||||||
annotations:
|
annotations:
|
||||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||||
|
gethomepage.dev/enabled: "true"
|
||||||
|
gethomepage.dev/name: "Gitea"
|
||||||
|
gethomepage.dev/description: "Git hosting & CI/CD"
|
||||||
|
gethomepage.dev/group: "DevOps"
|
||||||
|
gethomepage.dev/icon: "gitea"
|
||||||
|
gethomepage.dev/href: "https://git.forteapps.net"
|
||||||
|
gethomepage.dev/widget.type: "gitea"
|
||||||
|
gethomepage.dev/widget.url: "https://git.forteapps.net"
|
||||||
|
# gethomepage.dev/widget.key: "{{HOMEPAGE_VAR_GITEA_TOKEN}}"
|
||||||
hosts:
|
hosts:
|
||||||
- host: git.forteapps.net
|
- host: git.forteapps.net
|
||||||
paths:
|
paths:
|
||||||
|
|||||||
@@ -3,6 +3,16 @@ ingress:
|
|||||||
ingressClassName: traefik
|
ingressClassName: traefik
|
||||||
annotations:
|
annotations:
|
||||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||||
|
gethomepage.dev/enabled: "true"
|
||||||
|
gethomepage.dev/name: "Grafana"
|
||||||
|
gethomepage.dev/description: "Metrics & observability dashboards"
|
||||||
|
gethomepage.dev/group: "Monitoring"
|
||||||
|
gethomepage.dev/icon: "grafana"
|
||||||
|
gethomepage.dev/href: "https://grafana.forteapps.net"
|
||||||
|
gethomepage.dev/widget.type: "grafana"
|
||||||
|
gethomepage.dev/widget.url: "https://grafana.forteapps.net"
|
||||||
|
# gethomepage.dev/widget.username: "{{HOMEPAGE_VAR_GRAFANA_USER}}"
|
||||||
|
# gethomepage.dev/widget.password: "{{HOMEPAGE_VAR_GRAFANA_PASSWORD}}"
|
||||||
tls:
|
tls:
|
||||||
- secretName: grafana-tls
|
- secretName: grafana-tls
|
||||||
hosts:
|
hosts:
|
||||||
|
|||||||
57
infra/values/base/homepage-values.yaml
Normal file
57
infra/values/base/homepage-values.yaml
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
# Homepage Helm Values
|
||||||
|
# Chart: jameswynn/homepage — https://gethomepage.dev
|
||||||
|
# Discovery: K8s service annotations (gethomepage.dev/*)
|
||||||
|
# Each deployed app annotates its own Service — apps not deployed = not visible.
|
||||||
|
|
||||||
|
# RBAC ClusterRole — required for cluster-wide service annotation scanning
|
||||||
|
enableRbac: true
|
||||||
|
|
||||||
|
serviceAccount:
|
||||||
|
create: true
|
||||||
|
name: homepage
|
||||||
|
|
||||||
|
config:
|
||||||
|
# Scan all namespaces for services with gethomepage.dev/enabled: "true"
|
||||||
|
kubernetes:
|
||||||
|
mode: cluster
|
||||||
|
|
||||||
|
settings:
|
||||||
|
title: "Forte Platform"
|
||||||
|
headerStyle: clean
|
||||||
|
layout:
|
||||||
|
DevOps:
|
||||||
|
style: row
|
||||||
|
columns: 4
|
||||||
|
Identity:
|
||||||
|
style: row
|
||||||
|
columns: 4
|
||||||
|
Monitoring:
|
||||||
|
style: row
|
||||||
|
columns: 4
|
||||||
|
|
||||||
|
# Top-of-page cluster overview widget
|
||||||
|
widgets:
|
||||||
|
- kubernetes:
|
||||||
|
cluster:
|
||||||
|
show: true
|
||||||
|
cpu: true
|
||||||
|
memory: true
|
||||||
|
showLabel: true
|
||||||
|
label: "Cluster"
|
||||||
|
nodes:
|
||||||
|
show: false
|
||||||
|
# Both empty — all entries come from K8s service annotations
|
||||||
|
bookmarks: []
|
||||||
|
services: []
|
||||||
|
# Widget API credentials (optional — add via SealedSecret + envFrom below)
|
||||||
|
# Homepage reads HOMEPAGE_VAR_* env vars and substitutes them in widget annotations.
|
||||||
|
# Example: gethomepage.dev/widget.key: "{{HOMEPAGE_VAR_GRAFANA_TOKEN}}"
|
||||||
|
# To enable: create a sealed secret and add envFrom to load it.
|
||||||
|
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 10m
|
||||||
|
memory: 128Mi
|
||||||
|
limits:
|
||||||
|
cpu: 100m
|
||||||
|
memory: 256Mi
|
||||||
@@ -18,6 +18,12 @@ ingress:
|
|||||||
ingressClassName: traefik
|
ingressClassName: traefik
|
||||||
annotations:
|
annotations:
|
||||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||||
|
gethomepage.dev/enabled: "true"
|
||||||
|
gethomepage.dev/name: "Keycloak"
|
||||||
|
gethomepage.dev/description: "Identity & access management"
|
||||||
|
gethomepage.dev/group: "Identity"
|
||||||
|
gethomepage.dev/icon: "keycloak"
|
||||||
|
gethomepage.dev/href: "https://id.forteapps.net"
|
||||||
|
|
||||||
metrics:
|
metrics:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|||||||
3
infra/values/upc-dev/databunker-values.yaml
Normal file
3
infra/values/upc-dev/databunker-values.yaml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
ingress:
|
||||||
|
enabled: true
|
||||||
|
host: databunker.forteapps.net
|
||||||
15
infra/values/upc-dev/homepage-values.yaml
Normal file
15
infra/values/upc-dev/homepage-values.yaml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
ingress:
|
||||||
|
main:
|
||||||
|
enabled: true
|
||||||
|
ingressClassName: traefik
|
||||||
|
annotations:
|
||||||
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||||
|
hosts:
|
||||||
|
- host: start.forteapps.net
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
tls:
|
||||||
|
- secretName: homepage-tls
|
||||||
|
hosts:
|
||||||
|
- start.forteapps.net
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
||||||
kind: Kustomization
|
|
||||||
resources:
|
|
||||||
- argocd-forte-helm-secret-sealed.yaml
|
|
||||||
- argocd-mcp-credentials.yaml
|
|
||||||
- argocdmcp-auth-oidc-sealed.yaml
|
|
||||||
- dot-ai-secrets.yaml
|
|
||||||
- forte10x-app-credentials-sealed.yaml
|
|
||||||
- gitea-backup-s3-sealed.yaml
|
|
||||||
- gitea-credentials-sealed.yaml
|
|
||||||
- gitea-runner-token-sealed.yaml
|
|
||||||
- gitea-smtp-secret-sealed.yaml
|
|
||||||
- keycloak-credentials-sealed.yaml
|
|
||||||
- musicman-credentials.yaml
|
|
||||||
- renovate-env-sealed.yaml
|
|
||||||
- ts-mcp-secrets-sealed.yaml
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
||||||
kind: Kustomization
|
|
||||||
resources:
|
|
||||||
- ../../base
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
||||||
kind: Kustomization
|
|
||||||
resources:
|
|
||||||
- ../../base
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
||||||
kind: Kustomization
|
|
||||||
resources:
|
|
||||||
- ../../base
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
||||||
kind: Kustomization
|
|
||||||
resources:
|
|
||||||
- ../../base
|
|
||||||
Submodule shared-prompts updated: c5bc55b3d7...b79858d73c
Reference in New Issue
Block a user