https://github.com/fairwindsops/asdf-polaris
asdf plugin for Polaris
https://github.com/fairwindsops/asdf-polaris
asdf fairwinds-incubator
Last synced: 4 months ago
JSON representation
asdf plugin for Polaris
- Host: GitHub
- URL: https://github.com/fairwindsops/asdf-polaris
- Owner: FairwindsOps
- License: apache-2.0
- Created: 2022-08-08T21:00:03.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-20T17:04:53.000Z (almost 2 years ago)
- Last Synced: 2026-02-13T07:40:28.104Z (4 months ago)
- Topics: asdf, fairwinds-incubator
- Language: Shell
- Homepage: https://fairwinds.com
- Size: 18.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# asdf-polaris
[](https://travis-ci.org/TheCubicleJockey/asdf-polaris)
polaris plugin for [asdf](https://github.com/asdf-vm/asdf) version manager
## Install
```
asdf plugin-add polaris https://github.com/TheCubicleJockey/asdf-polaris.git
```
## Use
Check out the [asdf documentation](https://asdf-vm.com/#/core-manage-versions?id=install-version) for instructions on how to install and manage versions of polaris.
## Architecture Override
The `ASDF_polaris_OVERWRITE_ARCH` variable can be used to override the architecture that is used for determining which `polaris` build to download. The primary use case is when attempting to install an older version of `polaris` for use on an Apple M1 computer as `polaris` was not built for ARM at the time.
### Without `ASDF_polaris_OVERWRITE_ARCH`:
```
% asdf install polaris 7.0.1
Downloading polaris from https://github.com/FairwindsOps/polaris/releases/download/7.0.1/polaris_darwin_amd64.tar.gz
```
### With `ASDF_polaris_OVERWRITE_ARCH`:
```
% ASDF_polaris_OVERWRITE_ARCH=amd64 asdf install polaris 7.0.0
Downloading polaris from https://github.com/FairwindsOps/polaris/releases/download/7.0.0/polaris_darwin_amd64.tar.gz
```