- 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>
53 lines
1007 B
YAML
53 lines
1007 B
YAML
apiVersion: cert-manager.io/v1
|
|
kind: Certificate
|
|
metadata:
|
|
name: bakery-dev-tls-cert
|
|
namespace: bakery-ia
|
|
spec:
|
|
# Self-signed certificate for local development
|
|
secretName: bakery-dev-tls-cert
|
|
|
|
# Certificate duration
|
|
duration: 2160h # 90 days
|
|
renewBefore: 360h # 15 days
|
|
|
|
# Subject configuration
|
|
subject:
|
|
organizations:
|
|
- Bakery IA Development
|
|
|
|
# Common name
|
|
commonName: localhost
|
|
|
|
# DNS names this certificate is valid for
|
|
dnsNames:
|
|
- localhost
|
|
- bakery-ia.local
|
|
- api.bakery-ia.local
|
|
- monitoring.bakery-ia.local
|
|
- "*.bakery-ia.local"
|
|
|
|
# IP addresses (for localhost)
|
|
ipAddresses:
|
|
- 127.0.0.1
|
|
- ::1
|
|
|
|
# Use self-signed issuer for development
|
|
issuerRef:
|
|
name: selfsigned-issuer
|
|
kind: ClusterIssuer
|
|
group: cert-manager.io
|
|
|
|
# Private key configuration
|
|
privateKey:
|
|
algorithm: RSA
|
|
encoding: PKCS1
|
|
size: 2048
|
|
|
|
# Usages
|
|
usages:
|
|
- server auth
|
|
- client auth
|
|
- digital signature
|
|
- key encipherment
|