fix: Ingress | simplify https infrastructure

This commit is contained in:
2025-11-24 11:29:27 +05:00
parent 497331e585
commit d75671f5dd
2 changed files with 15 additions and 17 deletions

View File

@@ -7,7 +7,6 @@ import {
OnePasswordSecret,
PublicIngressRoute,
IngressRouteTcp,
PrivateCertificate,
} from "../../../utils";
import type { Providers } from "../../../types";
@@ -53,20 +52,6 @@ export class GiteaServer extends Construct {
itemPath: "vaults/Lab/items/cloudflare",
});
new PrivateCertificate(this, "internal-cert", {
provider: kubernetes,
namespace,
name: "gitea-tls-internal",
secretName: "gitea-tls-internal",
dnsNames: [
"git.dogar.dev",
"gitea",
"gitea.homelab.svc",
"gitea.homelab.svc.cluster.local",
],
usages: ["digital signature", "key encipherment", "server auth"],
});
new Release(this, id, {
...options,
provider: helm,