Pypi: rosa-python-client
A utility to run ROSA commands in CLI
- Export GitHub token
export GITHUB_TOKEN=<your_github_token>
sudo npm install --global release-it
npm install --save-dev @release-it/bumper
Note: execute outside the repository directory (for example ~/
)
- To create a new release, run:
git main
git pull
release-it # Follow the instructions
From source using poetry.
git clone https://github.com/RedHatQE/rosa-python-client.git
cd rosa-python-client
poetry install
From pypi:
pip install rosa-python-client --user
Although rose cli support args with
(space) when using this module we only accept arg=value
rosa cli accept: rosa create cluster --cluster-name mycluster
when called with this module the command should be: rosa create cluster --cluster-name=mycluster