Files
URLShortener/k8s/base/configmaps/service-config.yaml

19 lines
593 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: service-config
namespace: urlshortener
labels:
app: urlshortener
data:
# Service discovery - internal service URLs
shortener.service.url: "http://shortener-service:8083"
auth.service.url: "http://auth-service:8080"
analytics.service.url: "http://analytics-service:8080"
redirect.service.url: "http://redirect-service:8080"
# External service URLs (if needed)
shortener.service.external.url: "https://api.urlshortener.example.com/api/shortener"
redirect.service.external.url: "https://short.urlshortener.example.com"