-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: DOC-1369 * docs: fixed typo * docs: Apply suggestions from code review * ci: auto-formatting prettier issues * ci: fix vale --------- Co-authored-by: Lenny Chen <55669665+lennessyy@users.noreply.github.com> Co-authored-by: karl-cardenas-coding <karl-cardenas-coding@users.noreply.github.com>
- Loading branch information
1 parent
5056798
commit ad864bc
Showing
4 changed files
with
41 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
sidebar_label: "Automation" | ||
title: "Automation" | ||
description: "Troubleshooting steps for Palette and VerteX related automation tools such as the SDK, CLI, and API." | ||
icon: "" | ||
hide_table_of_contents: false | ||
sidebar_position: 5 | ||
tags: ["troubleshooting", "automation", "sdk", "cli", "api"] | ||
--- | ||
|
||
The following sections will help you troubleshoot issues with Palette and VerteX related automation tools such as the | ||
API, CLI, Terraform, and SDK. | ||
|
||
## Scenario - Incompatible Stale Palette CLI Binaries | ||
|
||
Palette CLI may encounter issues when attempting to use third-party binaries that are incompatible with the CLI such as | ||
`docker`, `kind`, and `validatorctl`. By default, the Palette CLI will download the third-party binaries from the | ||
internet and store them in the `$HOME/.palette/bin` directory, the first time you issue a command that requires them. | ||
The Palette CLI does not upgrade these binaries, which can lead to compatibility issues with current versions of the | ||
CLI. | ||
|
||
Use the following steps to resolve issues with incompatible stale Palette CLI binaries. | ||
|
||
### Debug Steps | ||
|
||
1. Log in to the machine where the Palette CLI is installed. | ||
|
||
2. Remove the `~/.palette/bin` directory. | ||
|
||
```shell | ||
rm -rf ~/.palette/bin | ||
``` | ||
|
||
3. Re-issue the command that requires the binary. The CLI will download the latest version of the binary and store it in | ||
the `$HOME/.palette/bin` directory. If you used the `--workspace` flag then the third-party binaries will be stored | ||
in the specified workspace directory. |
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
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