URL-5 Added Kubernetes manifests, services and deployments. Also included Ingress and namespace and service configs.

This commit is contained in:
LenaGmbh
2026-01-07 16:21:29 +01:00
parent 22bb61abac
commit 0d02f3e8aa
14 changed files with 562 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: application-config
namespace: urlshortener
labels:
app: urlshortener
data:
# Spring Boot Actuator configuration
management.endpoints.web.exposure.include: "health,info,metrics,prometheus"
management.endpoint.health.probes.enabled: "true"
management.health.livenessState.enabled: "true"
management.health.readinessState.enabled: "true"
# Logging configuration
logging.level.root: "INFO"
logging.level.me.lenajenichen: "DEBUG"
logging.pattern.console: "%d{yyyy-MM-dd HH:mm:ss} - %msg%n"
# Application common settings
spring.application.name: "urlshortener"
# Server configuration
server.error.include-message: "always"
server.error.include-binding-errors: "always"
server.error.include-stacktrace: "on_param"
server.error.include-exception: "false"