-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Update metricbeat-kubernetes.yaml #42173
base: main
Are you sure you want to change the base?
Conversation
fix --system.hostfs=/hostfs argument
❌ Author of the following commits did not sign a Contributor Agreement: Please, read and sign the above mentioned agreement if you want to contribute to this project |
This pull request does not have a backport label.
To fixup this pull request, you need to add the backport labels for the needed
|
|
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.
Pinging @elastic/elastic-agent-control-plane (Team:Elastic-Agent-Control-Plane) |
Hi, yes I get a error with version 8.17.0: https://raw.githubusercontent.com/elastic/beats/8.17/deploy/kubernetes/metricbeat-kubernetes.yaml No working: - name: metricbeat
image: docker.elastic.co/beats/metricbeat-wolfi:8.17.0
args: [
"-c", "/etc/metricbeat.yml",
"-e",
"-system.hostfs=/hostfs",
] Working: - name: metricbeat
image: docker.elastic.co/beats/metricbeat-wolfi:8.17.0
args: [
"-c", "/etc/metricbeat.yml",
"-e",
"--system.hostfs=/hostfs",
] |
And with 8.1.4.3 work with single and double dash (metricbeat image): - name: metricbeat
image: docker.elastic.co/beats/metricbeat:8.14.3
args: [
"-c", "/etc/metricbeat.yml",
"-e",
"-system.hostfs=/hostfs",
] |
UPDATE: I believe this issue is already being handled in this PR 🙂 @524c I believe what you are seeing is |
The docker.elastic.co/beats/metricbeat-wolfi:8.17.0 image has a problem with
-system.hostfs=/hostfs
argument (one dash)