Compare commits

...

5 Commits

Author SHA1 Message Date
904f16bfc0 use correct loki url 2024-12-28 15:51:53 +01:00
4f0a0289fc allow app to log to loki 2024-12-28 13:58:49 +01:00
718df09e88 use up to date labels instead of commonlabels 2024-10-15 10:29:55 +02:00
97f4a5e175 fix services to map to correct pod 2024-10-15 10:01:32 +02:00
bb27ca2c86 add debug flag to staging environment 2024-10-01 16:09:32 +02:00
4 changed files with 22 additions and 0 deletions

View File

@@ -27,6 +27,8 @@ spec:
value: "3"
- name: OSM_CACHE_DIR
value: "/osm-cache"
- name: LOKI_URL
value: "http://loki.monitoring.svc:3100/loki/api/v1/push"
volumeMounts:
- name: osm-cache
mountPath: /osm-cache

View File

@@ -6,6 +6,10 @@ resources:
namespace: anyway-backend
nameSuffix: -prod
labels:
- includeSelectors: true
pairs:
env: prod
images:
- name: backend-image

View File

@@ -6,6 +6,12 @@ resources:
namespace: anyway-backend
nameSuffix: -stg
labels:
- includeSelectors: true
pairs:
env: stg
images:
- name: backend-image
newName: git.kluster.moll.re/anydev/anyway-backend
@@ -20,3 +26,8 @@ patches:
target:
kind: Deployment
name: anyway-backend
- path: patch-deployment.yaml
target:
kind: Deployment
name: anyway-backend

View File

@@ -0,0 +1,5 @@
- op: add
path: /spec/template/spec/containers/0/env/-
value:
name: DEBUG
value: "true"