-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds support for RedHat OpenShift clusters #732
Conversation
@@ -31,11 +31,20 @@ spec: | |||
spec: | |||
terminationGracePeriodSeconds: {{ .Values.otel.node_collector.terminationGracePeriodSeconds }} | |||
serviceAccountName: {{ include "common.fullname" . }} | |||
hostNetwork: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to be on host metric everywhere or only on openshift?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is due to INFRA nodes, we can make it conditional only for openshift.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need to mount node collector to host network interface? Even in openShift?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hostNetwork option solves issues with access to journal logs and wr access to checkpoints folder. We decided that as first draft we go out with this not optimal solution and in operator we will deal with it properly.
Our collector should be able to run on openshift cluster.
Limitations: