- Updated all OpenTelemetry packages to latest versions: - opentelemetry-api: 1.27.0 → 1.39.1 - opentelemetry-sdk: 1.27.0 → 1.39.1 - opentelemetry-exporter-otlp-proto-grpc: 1.27.0 → 1.39.1 - opentelemetry-exporter-otlp-proto-http: 1.27.0 → 1.39.1 - opentelemetry-instrumentation-fastapi: 0.48b0 → 0.60b1 - opentelemetry-instrumentation-httpx: 0.48b0 → 0.60b1 - opentelemetry-instrumentation-redis: 0.48b0 → 0.60b1 - opentelemetry-instrumentation-sqlalchemy: 0.48b0 → 0.60b1 - Removed prometheus-client==0.23.1 from all services - Unified all services to use the same monitoring package versions Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
49 lines
1.4 KiB
YAML
49 lines
1.4 KiB
YAML
kind: Cluster
|
|
apiVersion: kind.x-k8s.io/v1alpha4
|
|
name: bakery-ia-local
|
|
nodes:
|
|
- role: control-plane
|
|
# Increase resource limits for the Kind node to handle multiple services
|
|
kubeadmConfigPatches:
|
|
- |
|
|
kind: InitConfiguration
|
|
nodeRegistration:
|
|
kubeletExtraArgs:
|
|
node-labels: "ingress-ready=true"
|
|
# Increase max pods for development environment
|
|
max-pods: "200"
|
|
- |
|
|
kind: ClusterConfiguration
|
|
# Increase API server memory and other parameters for local dev
|
|
apiServer:
|
|
extraArgs:
|
|
encryption-provider-config: /etc/kubernetes/enc/encryption-config.yaml
|
|
extraVolumes:
|
|
- name: encryption-config
|
|
hostPath: /etc/kubernetes/enc
|
|
mountPath: /etc/kubernetes/enc
|
|
readOnly: true
|
|
pathType: DirectoryOrCreate
|
|
# Mount encryption keys for secure development
|
|
extraMounts:
|
|
- hostPath: ./infrastructure/kubernetes/encryption
|
|
containerPath: /etc/kubernetes/enc
|
|
readOnly: true
|
|
# Port mappings for local access
|
|
extraPortMappings:
|
|
# HTTP ingress - nginx ingress controller uses hostPort: 80
|
|
- containerPort: 80
|
|
hostPort: 80
|
|
protocol: TCP
|
|
# HTTPS ingress - nginx ingress controller uses hostPort: 443
|
|
- containerPort: 443
|
|
hostPort: 443
|
|
protocol: TCP
|
|
# Direct frontend access (backup)
|
|
- containerPort: 30300
|
|
hostPort: 3000
|
|
protocol: TCP
|
|
# Direct gateway access (backup)
|
|
- containerPort: 30800
|
|
hostPort: 8000
|
|
protocol: TCP |