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 };