feat: Gitea | add runners to utility-services stack

TBD if they will stay here
This commit is contained in:
2025-11-22 20:27:04 +05:00
parent 2f0b9af67c
commit 3c31105fc6
5 changed files with 156 additions and 21 deletions

View File

@@ -1,18 +1,13 @@
import * as fs from "fs";
import * as path from "path";
import { HelmProvider } from "@cdktf/provider-helm/lib/provider";
import { Release } from "@cdktf/provider-helm/lib/release";
import { Construct } from "constructs";
import { KubernetesProvider } from "@cdktf/provider-kubernetes/lib/provider";
import { OnePasswordSecret } from "../../utils";
import { IngressRoute, IngressRouteTcp } from "../../utils/traefik";
import { OnePasswordSecret, IngressRoute, IngressRouteTcp } from "../../utils";
import type { Providers } from "../../types";
type GiteaServerOptions = {
providers: {
helm: HelmProvider;
kubernetes: KubernetesProvider;
};
providers: Providers;
name: string;
namespace: string;
r2Endpoint: string;