-
Notifications
You must be signed in to change notification settings - Fork 63
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
Fix standalone agent K8s manifest link to include patch level #1344
Conversation
A documentation preview will be available soon. Request a new doc build by commenting
If your PR continues to fail for an unknown reason, the doc build pipeline may be broken. Elastic employees can check the pipeline status here. |
docs/en/ingest-management/elastic-agent/running-on-kubernetes-standalone.asciidoc
Outdated
Show resolved
Hide resolved
…standalone.asciidoc Co-authored-by: Julien Mailleret <[email protected]>
@elasticmachine run docs-build |
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.
Nice approach! LGTM
* Fix standalone agent K8s manifest link to include patch level * Update docs/en/ingest-management/elastic-agent/running-on-kubernetes-standalone.asciidoc Co-authored-by: Julien Mailleret <[email protected]> --------- Co-authored-by: Julien Mailleret <[email protected]> (cherry picked from commit 153b04d)
* Fix standalone agent K8s manifest link to include patch level * Update docs/en/ingest-management/elastic-agent/running-on-kubernetes-standalone.asciidoc Co-authored-by: Julien Mailleret <[email protected]> --------- Co-authored-by: Julien Mailleret <[email protected]> (cherry picked from commit 153b04d)
…#1347) * Fix standalone agent K8s manifest link to include patch level * Update docs/en/ingest-management/elastic-agent/running-on-kubernetes-standalone.asciidoc Co-authored-by: Julien Mailleret <[email protected]> --------- Co-authored-by: Julien Mailleret <[email protected]> (cherry picked from commit 153b04d) Co-authored-by: David Kilfoyle <[email protected]>
…#1348) * Fix standalone agent K8s manifest link to include patch level * Update docs/en/ingest-management/elastic-agent/running-on-kubernetes-standalone.asciidoc Co-authored-by: Julien Mailleret <[email protected]> --------- Co-authored-by: Julien Mailleret <[email protected]> (cherry picked from commit 153b04d) Co-authored-by: David Kilfoyle <[email protected]>
It was reported in Slack that on the Kubernetes install instructions for standalone agent, customers are being directed to
8.15.2
manifest files before they're fully available.Essentially this link:
curl -L -O https://raw.githubusercontent.com/elastic/elastic-agent/8.15/deploy/kubernetes/elastic-agent-standalone-kubernetes.yaml
Should be:
curl -L -O https://raw.githubusercontent.com/elastic/elastic-agent/8.15.1deploy/kubernetes/elastic-agent-standalone-kubernetes.yaml
I've fixed this by changing the
{manifest}
variable to include{bare-version}
(which is currently set to8.15.1
) rather than{branch}
(which is currently set to8.15
).The screen capture below shows the manifest link as
8.16.0
because this change is going into themain
branch. In the public docs, this would be the current patch version, so as I write this that version is currently set to8.15.1
.