Compare commits

..

1 Commits

Author SHA1 Message Date
Morten Olsen
9150a0f9b1 remove most features 2026-01-02 14:07:57 +01:00
4 changed files with 7 additions and 7 deletions

View File

@@ -10,7 +10,7 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v5 uses: actions/checkout@v5
- name: Self-hosted Renovate - name: Self-hosted Renovate
uses: renovatebot/github-action@v43.0.20 uses: renovatebot/github-action@v43.0.13
with: with:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
configurationFile: ./renovate.json5 configurationFile: ./renovate.json5

View File

@@ -31,11 +31,11 @@ class BootstrapService {
public ensure = async () => { public ensure = async () => {
await this.namespaces.ensure(); await this.namespaces.ensure();
await this.repos.ensure(); // await this.repos.ensure();
// await this.releases.ensure(); // await this.releases.ensure();
await this.cloudflareTunnel.ensure({ // await this.cloudflareTunnel.ensure({
spec: {}, // spec: {},
}); //});
}; };
} }

View File

@@ -8,7 +8,7 @@ import { homelab } from '#resources/homelab/homelab.ts';
const services = new Services(); const services = new Services();
const resourceService = services.get(ResourceService); const resourceService = services.get(ResourceService);
await resourceService.install(...Object.values(homelab)); // await resourceService.install(...Object.values(homelab));
await resourceService.register(...Object.values(resources)); await resourceService.register(...Object.values(resources));
const bootstrapService = services.get(BootstrapService); const bootstrapService = services.get(BootstrapService);

View File

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