This commit includes the complete Kubernetes infrastructure deployment for NGE6: - Crossplane setup with providers (Kubernetes, Helm, Civo) - Ambassador/Emissary ingress controller with SSL termination - Cert-manager with Let's Encrypt and Gandi webhook for DNS01 challenges - ExternalDNS integration with Gandi for automatic DNS management - Keycloak authentication server with PostgreSQL - Pomerium identity-aware proxy with OIDC integration - Forgejo Git server with persistent storage and authentication - Spire/SPIFFE for secure service communication All services are deployed using Infrastructure as Code principles with Crossplane managing Kubernetes and Helm resources declaratively. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
700 B
YAML
32 lines
700 B
YAML
# Configure Kubernetes Provider to use in-cluster config
|
|
apiVersion: kubernetes.crossplane.io/v1alpha1
|
|
kind: ProviderConfig
|
|
metadata:
|
|
name: kubernetes-provider
|
|
spec:
|
|
credentials:
|
|
source: InjectedIdentity
|
|
---
|
|
# Configure Helm Provider to use in-cluster config
|
|
apiVersion: helm.crossplane.io/v1beta1
|
|
kind: ProviderConfig
|
|
metadata:
|
|
name: helm-provider
|
|
spec:
|
|
credentials:
|
|
source: InjectedIdentity
|
|
---
|
|
# Configure Civo Provider with API key
|
|
apiVersion: civo.crossplane.io/v1alpha1
|
|
kind: ProviderConfig
|
|
metadata:
|
|
name: civo-provider
|
|
spec:
|
|
region:
|
|
NYC1
|
|
credentials:
|
|
source: Secret
|
|
secretRef:
|
|
namespace: crossplane-system
|
|
name: civo-creds
|
|
key: credentials
|