Compare commits
8
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7b367fb8a1 | ||
|
|
ba10ac87e0 | ||
|
|
3c5d38fa58 | ||
|
|
a0d8ffe01e | ||
|
|
f7bfe91ef5 | ||
|
|
c78b1fe096 | ||
|
|
2f7fa75230 | ||
|
|
9a5abf3067 |
@@ -1,19 +1,4 @@
|
|||||||
# GitOps on Haven — Deployment Draft
|
# Haven
|
||||||
|
|
||||||
> **Draft only.** Nothing below is applied to the cluster yet. Diagrams are
|
|
||||||
> [Excalidraw JSON] (import at https://excalidraw.com) — static previews included
|
|
||||||
> as PNG. Create the repo before running any commands.
|
|
||||||
|
|
||||||
## 1. Decisions
|
|
||||||
|
|
||||||
| Decision | Value | Why |
|
|
||||||
|---|---|---|
|
|
||||||
| Tool | **Argo CD** | Best UI (app dependency graph, live-vs-git diff, rollback). Flux's UI (Weave GitOps) is stalled post-Weaveworks; community alternative is Capacitor. |
|
|
||||||
| Git remote | **Gitea** `git.ivanch.me/ivanch/haven` | Repo you'll create. Gitea is a first-class Argo CD source. |
|
|
||||||
| Layout | **App-of-apps** | A single root Argo `Application` watches a folder of app manifests; each app manifests as a child `Application`. One place to add/remove apps. |
|
|
||||||
| Secrets | **No change.** Keep raw env in manifests initially, migrate to ESO/Vaultwarden later. | Argo CD can't write Secret contents itself — value must live in git or come from a controller. Never commit real secrets. |
|
|
||||||
| Access | Ingress `argocd.haven`, internal-only (nginx class, **no TLS/cert-manager**) + admin password via kubectl | Matches your internal-app convention (`notepad`, `openwebui`, etc.). |
|
|
||||||
| Repo structure | **New `gitops` repo** (clean, standalone). Your current spec folder stays untouched — migrate later if desired. | Avoids mixing with the `haven` folder used by Gitea Actions CI. |
|
|
||||||
|
|
||||||
## 2. Repo layout (`gitops/`)
|
## 2. Repo layout (`gitops/`)
|
||||||
|
|
||||||
@@ -31,94 +16,3 @@ gitops/
|
|||||||
│ ├── <app-1>.yaml # all-in-one manifest per app
|
│ ├── <app-1>.yaml # all-in-one manifest per app
|
||||||
│ └── <app-2>.yaml
|
│ └── <app-2>.yaml
|
||||||
```
|
```
|
||||||
|
|
||||||
To add a new app: simply drop `<app>.yaml` into the appropriate `apps/<namespace>/` folder. The ApplicationSet automatically generates an Argo CD Application for it.
|
|
||||||
|
|
||||||
## 3. Manual bootstrap (run once, by hand)
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Install Argo CD — declarative kustomize install (no Helm CLI, no curl pipes).
|
|
||||||
# Renders 59 resources from the official argo-cd manifests repo, pinned via ?ref=
|
|
||||||
kubectl.exe --kubeconfig=C:\Users\ivanch\.kube\config apply -k bootstrap/argocd-install
|
|
||||||
# retrieve the initial admin password
|
|
||||||
kubectl.exe --kubeconfig=C:\Users\ivanch\.kube\config -n argocd get secret argocd-initial-admin-secret \
|
|
||||||
-o jsonpath='{.data.password}' | base64 -d
|
|
||||||
# one-time: point the root app at Gitea (requires the repo to exist first)
|
|
||||||
kubectl.exe --kubeconfig=C:\Users\ivanch\.kube\config apply -f bootstrap/root-app.yaml
|
|
||||||
```
|
|
||||||
|
|
||||||
Version pinning: `?ref=stable` in `bootstrap/argocd-install/kustomization.yaml`
|
|
||||||
tracks the stable branch; pin a tag (`?ref=v3.1.0`) once settled. Component
|
|
||||||
customization goes through `patches:` in that same kustomization (example
|
|
||||||
commented in the file), not by editing rendered output.
|
|
||||||
|
|
||||||
After that, **every** change is: `git push` → Argo syncs. kubectl only for debugging.
|
|
||||||
|
|
||||||
## 4. Key manifests
|
|
||||||
|
|
||||||
**`bootstrap/root-app.yaml`**
|
|
||||||
```yaml
|
|
||||||
apiVersion: argoproj.io/v1alpha1
|
|
||||||
kind: Application
|
|
||||||
metadata:
|
|
||||||
name: root
|
|
||||||
namespace: argocd
|
|
||||||
finalizers: [resources-finalizer.argocd.argoproj.io]
|
|
||||||
spec:
|
|
||||||
project: default
|
|
||||||
source:
|
|
||||||
repoURL: https://git.ivanch.me/ivanch/haven.git
|
|
||||||
targetRevision: main
|
|
||||||
path: apps/root
|
|
||||||
destination:
|
|
||||||
server: https://kubernetes.default.svc
|
|
||||||
namespace: argocd
|
|
||||||
syncPolicy:
|
|
||||||
automated:
|
|
||||||
prune: true
|
|
||||||
selfHeal: true
|
|
||||||
```
|
|
||||||
|
|
||||||
**`apps/root/applicationset.yaml`** — Uses the Git Files generator to discover any `apps/*/*.yaml` file and automatically generate an Argo CD `Application` pointing directly to that app file within the respective namespace.
|
|
||||||
|
|
||||||
## 5. Ingress (internal-only, per Haven convention)
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
apiVersion: networking.k8s.io/v1
|
|
||||||
kind: Ingress
|
|
||||||
metadata:
|
|
||||||
name: argocd-server
|
|
||||||
namespace: argocd
|
|
||||||
spec:
|
|
||||||
ingressClassName: nginx
|
|
||||||
rules:
|
|
||||||
- host: argocd.haven
|
|
||||||
http:
|
|
||||||
paths:
|
|
||||||
- path: /
|
|
||||||
pathType: Prefix
|
|
||||||
backend:
|
|
||||||
service:
|
|
||||||
name: argocd-server
|
|
||||||
port: { number: 80 }
|
|
||||||
```
|
|
||||||
|
|
||||||
## 6. Diagrams (Excalidraw JSON)
|
|
||||||
|
|
||||||
Two diagrams are included as `.excalidraw` files — open https://excalidraw.com
|
|
||||||
and drop the file onto the canvas to view/edit:
|
|
||||||
|
|
||||||
- `excalidraw/haven-gitops-flow.excalidraw` — the flow: git push → Gitea →
|
|
||||||
Argo CD → k3s, with Gitea Actions CI reduced to image build/push only.
|
|
||||||
- `excalidraw/haven-gitops-tree.excalidraw` — the app-of-apps tree: root app →
|
|
||||||
child Applications (notepad, openwebui, paperless, vaultwarden, argocd itself,
|
|
||||||
and infra deferred to a later phase).
|
|
||||||
|
|
||||||
## 7. Migration plan
|
|
||||||
|
|
||||||
Phase 0 (this draft) → Phase 1: install Argo CD + root app, convert 1 pilot app
|
|
||||||
(suggest `notepad` — simple, stateless-ish, single PVC) → Phase 2: onboard the
|
|
||||||
rest of `default` ns → Phase 3: infra components (ingress-nginx, cert-manager,
|
|
||||||
ESO) — do these **last**; they're the ones that can break the cluster if a sync
|
|
||||||
goes wrong → Phase 4: delete the old `haven` spec folder once Argo is the source
|
|
||||||
of truth.
|
|
||||||
|
|||||||
@@ -0,0 +1,39 @@
|
|||||||
|
apiVersion: batch/v1
|
||||||
|
kind: CronJob
|
||||||
|
metadata:
|
||||||
|
name: renovate
|
||||||
|
namespace: cronjobs
|
||||||
|
spec:
|
||||||
|
schedule: "0 12 * * 0" # every Sunday 12:00
|
||||||
|
concurrencyPolicy: Forbid
|
||||||
|
jobTemplate:
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: renovate
|
||||||
|
image: renovate/renovate:44.39.3
|
||||||
|
args:
|
||||||
|
- ivanch/haven-ops
|
||||||
|
env:
|
||||||
|
- name: LOG_LEVEL
|
||||||
|
value: debug
|
||||||
|
- name: RENOVATE_AUTODISCOVER
|
||||||
|
value: "false"
|
||||||
|
- name: RENOVATE_PLATFORM
|
||||||
|
value: "gitea"
|
||||||
|
- name: RENOVATE_ENDPOINT
|
||||||
|
value: "https://git.ivanch.me"
|
||||||
|
- name: RENOVATE_GIT_AUTHOR
|
||||||
|
value: "Renovate Bot <bot@renovateapp.com>"
|
||||||
|
- name: RENOVATE_TOKEN
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: renovate-bot
|
||||||
|
key: RENOVATE_TOKEN
|
||||||
|
- name: RENOVATE_GITHUB_COM_TOKEN
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: renovate-bot
|
||||||
|
key: RENOVATE_GITHUB_COM_TOKEN
|
||||||
|
restartPolicy: Never
|
||||||
@@ -38,7 +38,7 @@ spec:
|
|||||||
env:
|
env:
|
||||||
- name: TZ
|
- name: TZ
|
||||||
value: America/Sao_Paulo
|
value: America/Sao_Paulo
|
||||||
image: mcr.microsoft.com/playwright:v1.58.0-noble
|
image: mcr.microsoft.com/playwright:v1.62.1-noble
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
name: playwright
|
name: playwright
|
||||||
ports:
|
ports:
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ spec:
|
|||||||
- amd64
|
- amd64
|
||||||
containers:
|
containers:
|
||||||
- name: beszel
|
- name: beszel
|
||||||
image: ghcr.io/henrygd/beszel/beszel:0.18.7
|
image: ghcr.io/henrygd/beszel/beszel:0.18.8
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8090
|
- containerPort: 8090
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ spec:
|
|||||||
kubernetes.io/arch: amd64
|
kubernetes.io/arch: amd64
|
||||||
containers:
|
containers:
|
||||||
- name: bitwarden-cli
|
- name: bitwarden-cli
|
||||||
image: ghcr.io/charlesthomas/bitwarden-cli:2026.3.0
|
image: ghcr.io/charlesthomas/bitwarden-cli:2026.7.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
# Override the baked entrypoint so --disable-origin-protection is
|
# Override the baked entrypoint so --disable-origin-protection is
|
||||||
# actually passed (it was commented out in the image's entrypoint.sh,
|
# actually passed (it was commented out in the image's entrypoint.sh,
|
||||||
|
|||||||
+12
-1
@@ -1,3 +1,14 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"kubernetes": {
|
||||||
|
"managerFilePatterns": ["/\\.yaml$/"]
|
||||||
|
},
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"description": "Skip local registry images (built by CI, not upstream deps)",
|
||||||
|
"matchDatasources": ["docker"],
|
||||||
|
"matchPackageNames": ["git.ivanch.me/**"],
|
||||||
|
"enabled": false
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata: { name: adguardhome-password, namespace: dns }
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
target:
|
||||||
|
name: adguardhome-password
|
||||||
|
deletionPolicy: Retain
|
||||||
|
template:
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
username: "{{ .username }}"
|
||||||
|
password: "{{ .password }}"
|
||||||
|
data:
|
||||||
|
- secretKey: username
|
||||||
|
remoteRef:
|
||||||
|
{ key: 5bc7e63f-18bb-482c-bc3e-740e03b26334, property: username }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-login, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: password
|
||||||
|
remoteRef:
|
||||||
|
{ key: 5bc7e63f-18bb-482c-bc3e-740e03b26334, property: password }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-login, kind: ClusterSecretStore } }
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata: { name: affine, namespace: cloud }
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
target:
|
||||||
|
name: affine-secret
|
||||||
|
deletionPolicy: Retain
|
||||||
|
template:
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
DB_USERNAME: "{{ .DB_USERNAME }}"
|
||||||
|
DB_PASSWORD: "{{ .DB_PASSWORD }}"
|
||||||
|
DB_NAME: "{{ .DB_NAME }}"
|
||||||
|
data:
|
||||||
|
- secretKey: DB_USERNAME
|
||||||
|
remoteRef:
|
||||||
|
{ key: 4f15af1c-9b66-41d0-80db-a99ebe50e91f, property: username }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-login, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: DB_PASSWORD
|
||||||
|
remoteRef:
|
||||||
|
{ key: 4f15af1c-9b66-41d0-80db-a99ebe50e91f, property: password }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-login, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: DB_NAME
|
||||||
|
remoteRef:
|
||||||
|
{ key: 4f15af1c-9b66-41d0-80db-a99ebe50e91f, property: DB_NAME }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata: { name: cloudreve, namespace: cloud }
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
target:
|
||||||
|
name: cloudreve-secret
|
||||||
|
deletionPolicy: Retain
|
||||||
|
template:
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
DB_USER: "{{ .DB_USER }}"
|
||||||
|
DB_PASSWORD: "{{ .DB_PASSWORD }}"
|
||||||
|
DB_NAME: "{{ .DB_NAME }}"
|
||||||
|
REDIS_PASSWORD: "{{ .REDIS_PASSWORD }}"
|
||||||
|
data:
|
||||||
|
- secretKey: DB_USER
|
||||||
|
remoteRef:
|
||||||
|
{ key: 8c25cac9-e9e8-4970-bdf4-31f9aee19276, property: username }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-login, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: DB_PASSWORD
|
||||||
|
remoteRef:
|
||||||
|
{ key: 8c25cac9-e9e8-4970-bdf4-31f9aee19276, property: password }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-login, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: DB_NAME
|
||||||
|
remoteRef:
|
||||||
|
{ key: 8c25cac9-e9e8-4970-bdf4-31f9aee19276, property: DB_NAME }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: REDIS_PASSWORD
|
||||||
|
remoteRef:
|
||||||
|
{ key: 8c25cac9-e9e8-4970-bdf4-31f9aee19276, property: REDIS_PASSWORD }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata: { name: discord-webhook, namespace: infra }
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
target:
|
||||||
|
name: discord-webhook
|
||||||
|
deletionPolicy: Retain
|
||||||
|
template:
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
HAVEN_WEBHOOK_URL: "{{ .HAVEN_WEBHOOK_URL }}"
|
||||||
|
data:
|
||||||
|
- secretKey: HAVEN_WEBHOOK_URL
|
||||||
|
remoteRef:
|
||||||
|
{
|
||||||
|
key: afd065bd-be8f-4e3c-a06e-e9d3089cb8f7,
|
||||||
|
property: HAVEN_WEBHOOK_URL,
|
||||||
|
}
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata: { name: gitea-runner, namespace: dev }
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
target:
|
||||||
|
name: gitea-runner-token
|
||||||
|
deletionPolicy: Retain
|
||||||
|
template:
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
REGISTRATION_TOKEN: "{{ .REGISTRATION_TOKEN }}"
|
||||||
|
data:
|
||||||
|
- secretKey: REGISTRATION_TOKEN
|
||||||
|
remoteRef:
|
||||||
|
{
|
||||||
|
key: 4e286657-b5de-4354-be2e-d1649b0fd527,
|
||||||
|
property: REGISTRATION_TOKEN,
|
||||||
|
}
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata: { name: kasbot, namespace: default }
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
target:
|
||||||
|
name: kasbot-secrets
|
||||||
|
deletionPolicy: Retain
|
||||||
|
template:
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
KASBOT_TOKEN: "{{ .KASBOT_TOKEN }}"
|
||||||
|
data:
|
||||||
|
- secretKey: KASBOT_TOKEN
|
||||||
|
remoteRef:
|
||||||
|
{ key: 885a7d90-95be-494f-af88-300ac6a7e210, property: KASBOT_TOKEN }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata: { name: openwebui, namespace: default }
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
target:
|
||||||
|
name: openwebui-secret
|
||||||
|
deletionPolicy: Retain
|
||||||
|
template:
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
DATABASE_URL: "postgresql://{{ .username }}:{{ .password }}@postgresql.haven:5432/{{ .dbname }}"
|
||||||
|
data:
|
||||||
|
- secretKey: username
|
||||||
|
remoteRef:
|
||||||
|
{ key: e80ff314-7445-4b61-b5c5-69285ea72586, property: username }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-login, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: password
|
||||||
|
remoteRef:
|
||||||
|
{ key: e80ff314-7445-4b61-b5c5-69285ea72586, property: password }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-login, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: dbname
|
||||||
|
remoteRef: { key: e80ff314-7445-4b61-b5c5-69285ea72586, property: dbname }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata: { name: paperless, namespace: default }
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
target:
|
||||||
|
name: paperless-secret
|
||||||
|
deletionPolicy: Retain
|
||||||
|
template:
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
PAPERLESS_DBNAME: "{{ .PAPERLESS_DBNAME }}"
|
||||||
|
PAPERLESS_DBUSER: "{{ .PAPERLESS_DBUSER }}"
|
||||||
|
PAPERLESS_DBPASSWORD: "{{ .PAPERLESS_DBPASSWORD }}"
|
||||||
|
PAPERLESS_SECRET_KEY: "{{ .PAPERLESS_SECRET_KEY }}"
|
||||||
|
data:
|
||||||
|
- secretKey: PAPERLESS_DBNAME
|
||||||
|
remoteRef:
|
||||||
|
{
|
||||||
|
key: 05426e55-fe04-4c16-8697-8a258928257a,
|
||||||
|
property: PAPERLESS_DBNAME,
|
||||||
|
}
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: PAPERLESS_DBUSER
|
||||||
|
remoteRef:
|
||||||
|
{
|
||||||
|
key: 05426e55-fe04-4c16-8697-8a258928257a,
|
||||||
|
property: PAPERLESS_DBUSER,
|
||||||
|
}
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: PAPERLESS_DBPASSWORD
|
||||||
|
remoteRef:
|
||||||
|
{
|
||||||
|
key: 05426e55-fe04-4c16-8697-8a258928257a,
|
||||||
|
property: PAPERLESS_DBPASSWORD,
|
||||||
|
}
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: PAPERLESS_SECRET_KEY
|
||||||
|
remoteRef:
|
||||||
|
{
|
||||||
|
key: 05426e55-fe04-4c16-8697-8a258928257a,
|
||||||
|
property: PAPERLESS_SECRET_KEY,
|
||||||
|
}
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata: { name: radarr, namespace: media }
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
target:
|
||||||
|
name: radarr-secret
|
||||||
|
deletionPolicy: Retain
|
||||||
|
template:
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
Radarr__Postgres__User: "{{ .Radarr__Postgres__User }}"
|
||||||
|
Radarr__Postgres__Password: "{{ .Radarr__Postgres__Password }}"
|
||||||
|
Radarr__Postgres__Host: "{{ .Radarr__Postgres__Host }}"
|
||||||
|
Radarr__Postgres__MainDb: "{{ .Radarr__Postgres__MainDb }}"
|
||||||
|
data:
|
||||||
|
- secretKey: Radarr__Postgres__User
|
||||||
|
remoteRef:
|
||||||
|
{
|
||||||
|
key: ab723b65-3ec8-469c-b01d-67a6e3049023,
|
||||||
|
property: username,
|
||||||
|
}
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-login, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: Radarr__Postgres__Password
|
||||||
|
remoteRef:
|
||||||
|
{
|
||||||
|
key: ab723b65-3ec8-469c-b01d-67a6e3049023,
|
||||||
|
property: password,
|
||||||
|
}
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-login, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: Radarr__Postgres__Host
|
||||||
|
remoteRef:
|
||||||
|
{
|
||||||
|
key: ab723b65-3ec8-469c-b01d-67a6e3049023,
|
||||||
|
property: Radarr__Postgres__Host,
|
||||||
|
}
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: Radarr__Postgres__MainDb
|
||||||
|
remoteRef:
|
||||||
|
{
|
||||||
|
key: ab723b65-3ec8-469c-b01d-67a6e3049023,
|
||||||
|
property: Radarr__Postgres__MainDb,
|
||||||
|
}
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata: { name: recommender, namespace: media }
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
target:
|
||||||
|
name: recommender-secrets
|
||||||
|
deletionPolicy: Retain
|
||||||
|
template:
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
OPENAI_API_KEY: "{{ .OPENAI_API_KEY }}"
|
||||||
|
DATABASE_URL: "{{ .DATABASE_URL }}"
|
||||||
|
data:
|
||||||
|
- secretKey: OPENAI_API_KEY
|
||||||
|
remoteRef:
|
||||||
|
{
|
||||||
|
key: 5079ef6f-3d1d-4522-b22c-6dd5f1c19acd,
|
||||||
|
property: OPENAI_API_KEY,
|
||||||
|
}
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: DATABASE_URL
|
||||||
|
remoteRef:
|
||||||
|
{ key: 5079ef6f-3d1d-4522-b22c-6dd5f1c19acd, property: DATABASE_URL }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata: { name: renovate-bot, namespace: cronjobs }
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
target:
|
||||||
|
name: renovate-bot
|
||||||
|
deletionPolicy: Retain
|
||||||
|
template:
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
RENOVATE_GITHUB_COM_TOKEN: "{{ .RENOVATE_GITHUB_COM_TOKEN }}"
|
||||||
|
RENOVATE_TOKEN: "{{ .RENOVATE_TOKEN }}"
|
||||||
|
data:
|
||||||
|
- secretKey: RENOVATE_GITHUB_COM_TOKEN
|
||||||
|
remoteRef:
|
||||||
|
{
|
||||||
|
key: 25b1f5c9-0a2b-438e-a4c6-23ea1d58e2de,
|
||||||
|
property: RENOVATE_GITHUB_COM_TOKEN,
|
||||||
|
}
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: RENOVATE_TOKEN
|
||||||
|
remoteRef:
|
||||||
|
{ key: 25b1f5c9-0a2b-438e-a4c6-23ea1d58e2de, property: RENOVATE_TOKEN }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata: { name: slink, namespace: cloud }
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
target:
|
||||||
|
name: slink-secret
|
||||||
|
deletionPolicy: Retain
|
||||||
|
template:
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
ADMIN_USERNAME: "{{ .ADMIN_USERNAME }}"
|
||||||
|
ADMIN_PASSWORD: "{{ .ADMIN_PASSWORD }}"
|
||||||
|
ADMIN_EMAIL: "{{ .ADMIN_EMAIL }}"
|
||||||
|
data:
|
||||||
|
- secretKey: ADMIN_USERNAME
|
||||||
|
remoteRef:
|
||||||
|
{ key: 79f97033-6bc3-40cd-a28c-6060b8bd3a63, property: username }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-login, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: ADMIN_PASSWORD
|
||||||
|
remoteRef:
|
||||||
|
{ key: 79f97033-6bc3-40cd-a28c-6060b8bd3a63, property: password }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-login, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: ADMIN_EMAIL
|
||||||
|
remoteRef:
|
||||||
|
{ key: 79f97033-6bc3-40cd-a28c-6060b8bd3a63, property: ADMIN_EMAIL }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
@@ -0,0 +1,42 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata: { name: sonarr, namespace: media }
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
target:
|
||||||
|
name: sonarr-secret
|
||||||
|
deletionPolicy: Retain
|
||||||
|
template:
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
Sonarr__Postgres__User: "{{ .Sonarr__Postgres__User }}"
|
||||||
|
Sonarr__Postgres__Password: "{{ .Sonarr__Postgres__Password }}"
|
||||||
|
Sonarr__Postgres__Host: "{{ .Sonarr__Postgres__Host }}"
|
||||||
|
Sonarr__Postgres__MainDb: "{{ .Sonarr__Postgres__MainDb }}"
|
||||||
|
data:
|
||||||
|
- secretKey: Sonarr__Postgres__User
|
||||||
|
remoteRef:
|
||||||
|
{ key: 2c5b6d27-971f-4876-b10d-db400dfde7b2, property: username }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-login, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: Sonarr__Postgres__Password
|
||||||
|
remoteRef:
|
||||||
|
{ key: 2c5b6d27-971f-4876-b10d-db400dfde7b2, property: password }
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-login, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: Sonarr__Postgres__Host
|
||||||
|
remoteRef:
|
||||||
|
{
|
||||||
|
key: 2c5b6d27-971f-4876-b10d-db400dfde7b2,
|
||||||
|
property: Sonarr__Postgres__Host,
|
||||||
|
}
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
|
- secretKey: Sonarr__Postgres__MainDb
|
||||||
|
remoteRef:
|
||||||
|
{
|
||||||
|
key: 2c5b6d27-971f-4876-b10d-db400dfde7b2,
|
||||||
|
property: Sonarr__Postgres__MainDb,
|
||||||
|
}
|
||||||
|
sourceRef:
|
||||||
|
{ storeRef: { name: bitwarden-fields, kind: ClusterSecretStore } }
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# Dry-run validate every app manifest in apps/default/ against live cluster
|
|
||||||
export KUBECONFIG="C:\\Users\\ivanch\\.kube\\config"
|
|
||||||
cd "C:/Users/ivanch/Desktop/gitops-draft" || exit 1
|
|
||||||
fail=0
|
|
||||||
for f in apps/default/*.yaml; do
|
|
||||||
out=$(kubectl.exe apply --dry-run=server -f "$f" 2>&1)
|
|
||||||
if echo "$out" | grep -qi "error"; then
|
|
||||||
echo "FAIL: $f"
|
|
||||||
echo "$out" | grep -i error | head -2
|
|
||||||
fail=1
|
|
||||||
else
|
|
||||||
echo "OK: $f"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
[ $fail -eq 0 ] && echo "ALL apps/default dry-runs clean"
|
|
||||||
exit $fail
|
|
||||||
Reference in New Issue
Block a user