b3426f7493
Added a /health endpoint for application health monitoring Implemented logging filter to suppress health check requests from logs Updated Dockerfile and Kubernetes deployment to use the new health check endpoint Incremented production image tag version
33 lines
591 B
YAML
33 lines
591 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: math-tables
|
|
|
|
resources:
|
|
- ../../base
|
|
- namespace.yaml
|
|
|
|
# Production-specific patches
|
|
|
|
# Production-specific configurations
|
|
images:
|
|
- name: math-exercises
|
|
newName: harbor.cl1.parano.ch/library/math-exercice
|
|
newTag: 1.0.7
|
|
|
|
# Production-specific labels
|
|
|
|
secretGenerator:
|
|
- envs:
|
|
- s3-credentials.env
|
|
name: s3-credentials
|
|
labels:
|
|
- includeSelectors: true
|
|
pairs:
|
|
environment: production
|
|
security-level: high
|
|
patches:
|
|
- path: deployment-patch.yaml
|
|
- path: security-patch.yaml
|
|
- path: ingress-patch.yaml
|