[8.15] Fix standalone agent K8s manifest link to include patch level (backport #1344) #1348
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
.This is an automatic backport of pull request #1344 done by [Mergify](https://mergify.com).