Compare commits

..

1 Commits

Author SHA1 Message Date
renovate[bot]
712ac0a326 chore(deps): update docker/login-action digest to 6862ffc 2025-12-31 14:07:34 +00:00
5 changed files with 8 additions and 8 deletions

View File

@@ -36,7 +36,7 @@ jobs:
fetch-depth: 0
- name: Log in to the Container registry
uses: docker/login-action@5b7b28b1cc417bbd34cd8c225a957c9ce9adf7f2
uses: docker/login-action@6862ffc5ab2cdb4405cf318a62a6f4c066e2298b
with:
registry: ${{ env.DOCKER_REGISTRY }}
username: ${{ github.actor }}

View File

@@ -36,7 +36,7 @@ jobs:
fetch-depth: 0
- name: Log in to the Container registry
uses: docker/login-action@5b7b28b1cc417bbd34cd8c225a957c9ce9adf7f2
uses: docker/login-action@6862ffc5ab2cdb4405cf318a62a6f4c066e2298b
with:
registry: ${{ env.DOCKER_REGISTRY }}
username: ${{ github.actor }}

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