Hearth is the infrastructure home for the letemcook ecosystem. Ported from coherence-mcp/infra: - Terraform modules (VPC, EKS, IAM, NLB, S3, storage) - Kubernetes manifests (Forgejo, ingress, cert-manager, karpenter) - Deployment scripts (phased rollout) Status: Not deployed. EKS cluster needs to be provisioned. Next steps: 1. Bootstrap terraform backend 2. Deploy phase 1 (foundation) 3. Deploy phase 2 (core services including Forgejo) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
516 B
YAML
21 lines
516 B
YAML
# cert-manager Kustomization
|
|
# RFC 0039: ADR-Compliant Foundation Infrastructure
|
|
#
|
|
# Deploy with:
|
|
# 1. helm install cert-manager jetstack/cert-manager -f helm-values.yaml
|
|
# 2. kubectl apply -k infra/kubernetes/cert-manager/
|
|
---
|
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: cert-manager
|
|
|
|
resources:
|
|
- namespace.yaml
|
|
- cluster-issuers.yaml
|
|
- route53-role.yaml
|
|
|
|
commonLabels:
|
|
app.kubernetes.io/managed-by: kustomize
|
|
app.kubernetes.io/part-of: alignment-foundation
|
|
rfc: "0039"
|