Skip to content

Commit

Permalink
Merge pull request #89 from rcarpa/88-wait-for-log-files-in-tail
Browse files Browse the repository at this point in the history
wait for log files in httpd-error-log containers. Closes #88
  • Loading branch information
ericvaandering authored Mar 14, 2022
2 parents a206734 + d725bbb commit 455774a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
3 changes: 1 addition & 2 deletions charts/rucio-server/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rucio-server
version: 1.27.3
version: 1.27.4
apiVersion: v1
description: A Helm chart to deploy servers for Rucio
keywords:
Expand All @@ -11,4 +11,3 @@ sources:
maintainers:
- name: Rucio development team
email: [email protected]

2 changes: 1 addition & 1 deletion charts/rucio-server/templates/auth_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ spec:
{{- if .Values.exposeErrorLogs.authServer }}
- name: httpd-error-log
image: busybox
args: [/bin/sh, -c, 'tail -n+1 -f /var/log/httpd/error_log']
args: [/bin/sh, -c, 'tail -n+1 -F /var/log/httpd/error_log']
volumeMounts:
- name: httpdlog
mountPath: /var/log/httpd
Expand Down
2 changes: 1 addition & 1 deletion charts/rucio-server/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ spec:
{{- if .Values.exposeErrorLogs.server }}
- name: httpd-error-log
image: busybox
args: [/bin/sh, -c, 'tail -n+1 -f /var/log/httpd/error_log']
args: [/bin/sh, -c, 'tail -n+1 -F /var/log/httpd/error_log']
volumeMounts:
- name: httpdlog
mountPath: /var/log/httpd
Expand Down
2 changes: 1 addition & 1 deletion charts/rucio-server/templates/trace_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ spec:
{{- if .Values.exposeErrorLogs.traceServer }}
- name: httpd-error-log
image: busybox
args: [/bin/sh, -c, 'tail -n+1 -f /var/log/httpd/error_log']
args: [/bin/sh, -c, 'tail -n+1 -F /var/log/httpd/error_log']
volumeMounts:
- name: httpdlog
mountPath: /var/log/httpd
Expand Down
3 changes: 1 addition & 2 deletions charts/rucio-ui/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rucio-ui
version: 1.27.1
version: 1.27.2
apiVersion: v1
description: A Helm chart to deploy webui servers for Rucio
keywords:
Expand All @@ -11,4 +11,3 @@ sources:
maintainers:
- name: Rucio development team
email: [email protected]

2 changes: 1 addition & 1 deletion charts/rucio-ui/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ spec:
{{- if .Values.exposeErrorLogs }}
- name: httpd-error-log
image: busybox
args: [/bin/sh, -c, 'tail -n+1 -f /var/log/httpd/error_log']
args: [/bin/sh, -c, 'tail -n+1 -F /var/log/httpd/error_log']
volumeMounts:
- name: httpdlog
mountPath: /var/log/httpd
Expand Down

0 comments on commit 455774a

Please sign in to comment.