forked from aquasecurity/starboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: update installation guides for v0.15.0 (aquasecurity#1063)
Signed-off-by: Daniel Pacak <pacak.daniel@gmail.com>
- Loading branch information
1 parent
f857598
commit 44ad60c
Showing
4 changed files
with
38 additions
and
31 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
Every [release][release] of Starboard provides binary releases for a variety of operating systems. These | ||
binary versions can be manually downloaded and installed. | ||
|
||
1. Download your [desired version][release] | ||
2. Unpack it (`tar -zxvf starboard_darwin_x86_64.tar.gz`) | ||
1. Download desired [release archive][release] for your platform | ||
2. Unpack it. As an example for macOS platform, run the following command: | ||
``` | ||
tar -zxvf starboard_darwin_x86_64.tar.gz | ||
``` | ||
3. Find the `starboard` binary in the unpacked directory, and move it to its desired destination | ||
(`mv starboard_darwin_x86_64/starboard /usr/local/bin/starboard`) | ||
``` | ||
mv ./starboard /usr/local/bin/starboard | ||
``` | ||
|
||
From there, you should be able to run Starboard CLI commands: `starboard help` | ||
|
||
## kubectl plugin | ||
|
||
The Starboard CLI is compatible with [kubectl][kubectl] and is intended as [kubectl plugin][kubectl-plugins], | ||
but it's perfectly fine to run it as a stand-alone executable. If you rename the `starboard` executable to | ||
`kubectl-starboard` and if it's in your path, you can invoke it using `kubectl starboard`. | ||
The Starboard CLI is compatible with [kubectl] and is intended as [kubectl plugin], but it's perfectly fine to run it as | ||
a stand-alone executable. If you rename the `starboard` executable to `kubectl-starboard` and if it's in your path, you | ||
can invoke it using `kubectl starboard`. | ||
|
||
|
||
[release]: https://github.com/aquasecurity/starboard/releases | ||
[release]: https://github.com/aquasecurity/starboard/releases/{{ git.tag }} | ||
[kubectl]: https://kubernetes.io/docs/reference/kubectl | ||
[kubectl-plugins]: https://kubernetes.io/docs/tasks/extend-kubectl/kubectl-plugins | ||
[kubectl plugin]: https://kubernetes.io/docs/tasks/extend-kubectl/kubectl-plugins |
This file contains 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
This file contains 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