-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: Add more content to documentation website (#111)
- Loading branch information
Showing
9 changed files
with
151 additions
and
24 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
## ::: eos_downloader.defaults |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Frequently Asked Questions | ||
|
||
## EVE-NG with OpenSSL issue. | ||
|
||
On EVE-NG, you may have to install/upgrade __pyOpenSSL__ in version `23.0.0`: | ||
|
||
```bash | ||
# Error when running ardl: AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK' | ||
|
||
$ pip install pyopenssl --upgrade | ||
``` |
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Download CloudVision package from arista website | ||
|
||
This command gives you option to download EOS images localy. Some options are available based on image type like importing your cEOS container in your local registry | ||
|
||
```bash | ||
# Get latest version of CVP in Vvmware format | ||
ardl get cvp --latest --format ova | ||
|
||
# Get latest version of CVP in upgrade format | ||
ardl get eos --branch 4.29 --format upgrade | ||
``` | ||
|
||
## ardl get eos options | ||
|
||
Below are all the options available to get EOS package: | ||
|
||
```bash | ||
$ ardl get cvp --help | ||
Usage: ardl get cvp [OPTIONS] | ||
|
||
Download CVP image from Arista server. | ||
|
||
Options: | ||
--format TEXT Image format [default: ova] | ||
--output PATH Path to save image [default: .] | ||
--latest Get latest version. If --branch is not use, get the latest | ||
branch with specific release type | ||
--version TEXT EOS version to download | ||
--branch TEXT Branch to download | ||
--dry-run Enable dry-run mode: only run code without system changes | ||
--help Show this message and exit. | ||
``` | ||
|
||
!!! info | ||
You can get information about available version using the [`ardl info version` cli](./info.md) |
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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# Get information about software mapping | ||
|
||
`ardl` comes with a tool to get all supoprted package format for both CVP and EOS softwares. It helps to know which format to use for a specific file extension. | ||
|
||
## Get information about available versions | ||
|
||
```bash | ||
$ ardl info mapping --help | ||
Usage: ardl info mapping [OPTIONS] | ||
|
||
List available flavors of Arista packages (eos or CVP) packages. | ||
|
||
Options: | ||
--package [eos|cvp] | ||
--format [json|text|fancy] Output format | ||
--details Show details for each flavor | ||
--help Show this message and exit. | ||
``` | ||
|
||
## Usage example | ||
|
||
With this CLI, you can specify either a branch or a release type when applicable to filter information: | ||
|
||
|
||
```bash | ||
# Get list of supported packages for EOS. | ||
$ ardl info mapping --package eos | ||
Log Level is: error | ||
|
||
╭─────────────────────────── Flavors ───────────────╮ | ||
│ │ | ||
│ * Flavor: 64 │ | ||
│ * Flavor: INT │ | ||
│ * Flavor: 2GB-INT │ | ||
│ * Flavor: cEOS │ | ||
│ * Flavor: cEOS64 │ | ||
│ * Flavor: vEOS │ | ||
│ * Flavor: vEOS-lab │ | ||
│ * Flavor: EOS-2GB │ | ||
│ * Flavor: RN │ | ||
│ * Flavor: SOURCE │ | ||
│ * Flavor: default │ | ||
│ │ | ||
╰───────────────────────────────────────────────────╯ | ||
|
||
# Get list of supported packages for EOS with filename information | ||
$ ardl info mapping --package eos | ||
Log Level is: error | ||
|
||
╭─────────────────────────────────────────────────── Flavors ─────────╮ | ||
│ │ | ||
│ * Flavor: 64 │ | ||
│ - Information: extension='.swi' prepend='EOS64' │ | ||
│ * Flavor: INT │ | ||
│ - Information: extension='-INT.swi' prepend='EOS' │ | ||
│ * Flavor: 2GB-INT │ | ||
│ - Information: extension='-INT.swi' prepend='EOS-2GB' │ | ||
│ * Flavor: cEOS │ | ||
│ - Information: extension='.tar.xz' prepend='cEOS-lab' │ | ||
│ * Flavor: cEOS64 │ | ||
│ - Information: extension='.tar.xz' prepend='cEOS64-lab' │ | ||
│ * Flavor: vEOS │ | ||
│ - Information: extension='.vmdk' prepend='vEOS' │ | ||
│ * Flavor: vEOS-lab │ | ||
│ - Information: extension='.vmdk' prepend='vEOS-lab' │ | ||
│ * Flavor: EOS-2GB │ | ||
│ - Information: extension='.swi' prepend='EOS-2GB' │ | ||
│ * Flavor: RN │ | ||
│ - Information: extension='-' prepend='RN' │ | ||
│ * Flavor: SOURCE │ | ||
│ - Information: extension='-source.tar' prepend='EOS' │ | ||
│ * Flavor: default │ | ||
│ - Information: extension='.swi' prepend='EOS' │ | ||
│ │ | ||
╰─────────────────────────────────────────────────────────────────────╯ | ||
|
||
``` |
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