openclaw: deploy openclaw on kube

This commit is contained in:
2026-08-23 10:43:07 +02:00
parent 9c2f4de590
commit 34660b1231
13 changed files with 173 additions and 0 deletions
@@ -11,3 +11,5 @@ resources:
- stalwart-certificates.yaml
- longhorn.yaml
- longhorn-jobs.yaml
- openclaw-operator.yaml
- openclaw.yaml
@@ -0,0 +1,20 @@
# Flux Kustomization for the OpenClaw operator
# Separate from main homeprod because the operator's CRDs must be installed
# before OpenClawInstance resources can be applied
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: openclaw-operator
namespace: flux-system
spec:
interval: 10m
prune: true
sourceRef:
kind: GitRepository
name: homeprod
path: ./kubernetes/system/openclaw-operator
healthChecks:
- apiVersion: apps/v1
kind: Deployment
name: openclaw-operator
namespace: openclaw-operator-system
+25
View File
@@ -0,0 +1,25 @@
# Flux Kustomization for the OpenClaw instance
# Depends on the openclaw-operator so its CRDs exist before applying
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: openclaw
namespace: flux-system
spec:
interval: 10m
prune: true
dependsOn:
- name: openclaw-operator
sourceRef:
kind: GitRepository
name: homeprod
path: ./kubernetes/personal/openclaw
decryption:
provider: sops
secretRef:
name: flux-sops
healthChecks:
- apiVersion: apps/v1
kind: StatefulSet
name: openclaw
namespace: openclaw