ci: direct services logs to a single file (#12041)

This commit is contained in:
nirajacharya2
2026-02-27 22:03:45 +05:45
committed by GitHub
parent 2a89fec331
commit c84e674133
2 changed files with 64 additions and 13 deletions

View File

@@ -0,0 +1,29 @@
{{/*
DO NOT RENAME THIS FILE
Filename: _zoverride.tpl
Override filename starts with 'z'
to make sure it is loaded after all other templates.
Using the existing variable definitions
which are already included in most of the templates.
*/}}
{{- define "ocis.caPath" -}}
- name: logdir
mountPath: /logs
{{- end -}}
{{- define "ocis.caVolume" -}}
- name: logdir
hostPath:
path: /logs
type: Directory
{{- end -}}
{{- define "ocis.caEnv" -}}
- name: OCIS_LOG_FILE
value: /logs/ocis.log
{{- end -}}