Static Astro 5 site for BlueCap Strategies with exact live-site content parity, deployed to k3s via GitOps (ArgoCD). - Page copy in Markdown content collections (services, focus-areas, pages, insights) with a Zod SEO schema enforced at build time - Homepage + About restored to exact live copy; real live-site imagery - Build-time SEO linter (scripts/seo-lint.mjs) and Playwright e2e suite - Multi-stage Dockerfile (nginx serves dist/) and Kustomize manifests (k8s/) - Per-agent robots.txt; config-driven PostHog + Umami analytics scaffold - ADRs and engineering docs under docs/ Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
38 lines
1.0 KiB
YAML
38 lines
1.0 KiB
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: bluecap-website
|
|
namespace: bluecap-strategies
|
|
annotations:
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
# If cert-manager is installed, uncomment and set your ClusterIssuer.
|
|
# cert-manager.io/cluster-issuer: letsencrypt-production
|
|
spec:
|
|
# If cert-manager is installed, uncomment tls and set the secret name.
|
|
# tls:
|
|
# - hosts:
|
|
# - www.bluecapstrategies.com
|
|
# - bluecapstrategies.com
|
|
# secretName: bluecap-website-tls
|
|
rules:
|
|
- host: www.bluecapstrategies.com
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: bluecap-website
|
|
port:
|
|
name: http
|
|
- host: bluecapstrategies.com
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: bluecap-website
|
|
port:
|
|
name: http
|