- Add Helm chart with 19 templates (Deployments, Services, Ingress, ConfigMaps, Secrets, NetworkPolicy, cert-manager) - Add Dockerfiles for 4 microservices (dashboard, data-service, execute-service, news-service) - Add CI/CD workflows (build-test, build-push, deploy) - Add raw K8s manifests, per-service Helm charts, and deploy scripts - Add SOPS-encrypted secrets template and config - Configure deployment to customer1 namespace - Include infrastructure components: PostgreSQL, Redis, Kafka
18 lines
410 B
YAML
18 lines
410 B
YAML
apiVersion: v1
|
|
kind: Namespace
|
|
metadata:
|
|
name: customer1
|
|
labels:
|
|
name: customer1
|
|
istio-injection: disabled # Disable Istio if using native K8s policies
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: trading-platform-config
|
|
namespace: customer1
|
|
data:
|
|
KAFKA_BOOTSTRAP_SERVERS: "kafka-headless:9092"
|
|
REDIS_URL: "redis://redis-master:6379/0"
|
|
LOG_LEVEL: "info"
|
|
TRADING_ENV: "production"
|