remove most features

This commit is contained in:
Morten Olsen
2026-01-02 14:07:13 +01:00
parent 0793d30222
commit 9150a0f9b1
3 changed files with 6 additions and 6 deletions

View File

@@ -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: {},
//});
};
}

View File

@@ -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);

View File

@@ -11,7 +11,7 @@ const resources = {
...flux,
...certManager,
...istio,
...homelab,
// ...homelab,
} satisfies Record<string, ResourceClass<ExpectedAny>>;
export { resources };