Compare commits

..

1 Commits

Author SHA1 Message Date
renovate[bot]
37fc628a67 chore(deps): update renovatebot/github-action action to v43.0.20 2025-12-31 14:08:09 +00: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.13 uses: renovatebot/github-action@v43.0.20
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 };