docs: Update kickstart URL to canonical get.netdata.cloud#21938
Merged
docs: Update kickstart URL to canonical get.netdata.cloud#21938
Conversation
Replace my-netdata.io/kickstart.sh with get.netdata.cloud/kickstart.sh in installation documentation for consistency with OneLineInstall component.
Contributor
There was a problem hiding this comment.
No issues found across 2 files
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Architecture diagram
sequenceDiagram
participant User as User/Admin
participant Docs as Netdata Documentation
participant Canonical as get.netdata.cloud (CDN)
participant Node as Target System
participant Cloud as Netdata Cloud
Note over User,Cloud: Installation / Reclaim Flow
User->>Docs: Access installation or reclaim guides
Docs-->>User: Display command with canonical URL
User->>Node: Paste and execute installation command
Node->>Canonical: CHANGED: curl -Ss https://get.netdata.cloud/kickstart.sh
Canonical-->>Node: Return kickstart.sh script
Node->>Node: Execute kickstart.sh
Node->>Canonical: Fetch Netdata Agent packages/binaries
Canonical-->>Node: Return Agent software
Node->>Node: Install and start Netdata Agent
opt Claiming Node
Node->>Cloud: Claim node using --claim-token
Cloud-->>Node: Confirm connection (UUID assigned)
end
Note over Node,Cloud: Node is now visible in Netdata Cloud UI
ilyam8
approved these changes
Mar 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
This PR resolves a documentation inconsistency by updating the kickstart installation URL to use the canonical
https://get.netdata.cloud/kickstart.shinstead ofhttps://my-netdata.io/kickstart.sh.Changes
docs/getting-started-netdata/guide.md- Replaced kickstart URL in installation commanddocs/learn/unclaim-reclaim-node.md- Replaced kickstart URL in reclaim commandContext
The installation documentation was using different kickstart URLs across different files. The OneLineInstall component uses
get.netdata.cloudwhile the Getting Started guide usedmy-netdata.io. This PR standardizes all documentation to use the canonical URL for consistency.Summary by cubic
Standardizes the kickstart install URL to https://get.netdata.cloud/kickstart.sh across docs for consistency with OneLineInstall and to avoid confusion. Updates the Getting Started guide and the Unclaim/Reclaim guide.
Written for commit 5283f5a. Summary will update on new commits.