From 9150a0f9b1096896d498b29495eec29e86ac53e3 Mon Sep 17 00:00:00 2001 From: Morten Olsen Date: Fri, 2 Jan 2026 14:07:13 +0100 Subject: [PATCH] remove most features --- images/operator/src/bootstrap/bootstrap.ts | 8 ++++---- images/operator/src/index.ts | 2 +- images/operator/src/resources/resources.ts | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/images/operator/src/bootstrap/bootstrap.ts b/images/operator/src/bootstrap/bootstrap.ts index ca1c3aa..295ed2f 100644 --- a/images/operator/src/bootstrap/bootstrap.ts +++ b/images/operator/src/bootstrap/bootstrap.ts @@ -31,11 +31,11 @@ class BootstrapService { public ensure = async () => { await this.namespaces.ensure(); - await this.repos.ensure(); + // await this.repos.ensure(); // await this.releases.ensure(); - await this.cloudflareTunnel.ensure({ - spec: {}, - }); + // await this.cloudflareTunnel.ensure({ + // spec: {}, + //}); }; } diff --git a/images/operator/src/index.ts b/images/operator/src/index.ts index 50172db..1fb26ca 100644 --- a/images/operator/src/index.ts +++ b/images/operator/src/index.ts @@ -8,7 +8,7 @@ import { homelab } from '#resources/homelab/homelab.ts'; const services = new Services(); const resourceService = services.get(ResourceService); -await resourceService.install(...Object.values(homelab)); +// await resourceService.install(...Object.values(homelab)); await resourceService.register(...Object.values(resources)); const bootstrapService = services.get(BootstrapService); diff --git a/images/operator/src/resources/resources.ts b/images/operator/src/resources/resources.ts index c2b9fc9..abb1e14 100644 --- a/images/operator/src/resources/resources.ts +++ b/images/operator/src/resources/resources.ts @@ -11,7 +11,7 @@ const resources = { ...flux, ...certManager, ...istio, - ...homelab, + // ...homelab, } satisfies Record>; export { resources };