cloudera-deploy
A general purpose framework for automating Cloudera Products
File Explorer
- all.yml
- main.yml
- main.yml
- default.yml
- main.yml
- RedHat-post.yml
- Ubuntu-pre.yml
- inventory
- test.yml
- default.yml
- main.yml
- RedHat.yml
- Ubuntu.yml
- README.md
- deployment.html.j2
- deployment.md.j2
- infra.tfvars.j2
- main.tf
- outputs.tf
- variables.tf
- main.tf
- outputs.tf
- variables.tf
- main.tf
- outputs.tf
- variables.tf
- main.tf
- outputs.tf
- variables.tf
- .gitignore
- ansible-navigator.yml
- base_postfix.yml
- base_setup.yml
- base_teardown.yml
- cluster.yml
- config-template.yml
- definition.yml
- external_setup.yml
- internal_setup.yml
- inventory.yml
- pre_setup.yml
- pre_teardown.yml
- README.md
- summary.yml
- validate_dns_lookups.yml
- .gitignore
- ansible-navigator.yml
- definition.yml
- inventory.ini
- main.yml
- README.md
- teardown.yml
- .gitignore
- ansible-navigator.yml
- application.yml
- definition.yml
- inventory.ini
- main.yml
- README.md
- teardown.yml
- .gitignore
- ansible-navigator.yml
- definition.yml
- inventory.ini
- main.yml
- README.md
- teardown.yml
- .gitignore
- ansible-navigator.yml
- definition.yml
- inventory.ini
- main.yml
- README.md
- teardown.yml
- main.tf
- outputs.tf
- variables.tf
- main.tf
- outputs.tf
- variables.tf
- cdp_aws_deploy.tfvars.j2
- cdp_aws_prereqs.tfvars.j2
- .gitignore
- ansible-navigator.yml
- config.yml
- inventory.ini
- main.yml
- README.md
- teardown.yml
- .gitignore
- ansible-navigator.yml
- definition.yml
- inventory.ini
- main.yml
- README.md
- teardown.yml
- CONTRIBUTING.md
- FAQ.md
- LICENSE
- MIGRATION_V1.md
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
az login
View Details ▼
az login
Log in to Azure.
Part of `azure-cli` (also known as `az`).
az login
Log in interactively:
az login --service-principal {{[-u|--username]}} {{http://azure-cli-service-principal}} {{[-p|--password]}} {{secret}} {{[-t|--tenant]}} {{someone.onmicrosoft.com}}
Log in with a service principal using a client secret:
az login --service-principal {{[-u|--username]}} {{http://azure-cli-service-principal}} {{[-p|--password]}} {{path/to/cert.pem}} {{[-t|--tenant]}} {{someone.onmicrosoft.com}}
Log in with a service principal using a client certificate:
brew
View Details ▼
brew
Homebrew - a package manager for macOS and Linux.
Some subcommands such as `install` have their own usage documentation.
brew install {{formula|cask}}
Install the latest stable version of a formula or cask:
brew list
List all installed formulae and casks:
brew upgrade {{formula|cask}}
Upgrade an installed formula or cask (if none is given, all installed formulae/casks are upgraded):
docker ps
View Details ▼
docker ps
This command is an alias of `docker container ls`.
tldr docker container ls
View documentation for the original command:
docker
View Details ▼
docker
Manage Docker containers and images.
Some subcommands such as `container` and `image` have their own usage documentation.
docker {{[ps|container ls]}} {{[-a|--all]}}
List all Docker containers (running and stopped):
docker {{[run|container run]}} --name {{container_name}} {{image}}
Start a container from an image, with a custom name:
docker container {{start|stop}} {{container_name}}
Start or stop an existing container:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
podman
View Details ▼
podman
Simple management tool for pods, containers, and images.
Podman provides a Docker-CLI comparable command-line. Simply put: `alias docker=podman`.
podman ps {{[-a|--all]}}
List all containers (both running and stopped):
podman run --name {{container_name}} {{image}}
Create a container from an image, with a custom name:
podman {{start|stop}} {{container_name}}
Start or stop an existing container:
virtualenv
View Details ▼
virtualenv
Create virtual isolated Python environments.
virtualenv {{path/to/venv}}
Create a new environment:
virtualenv --prompt {{prompt_prefix}} {{path/to/venv}}
Customize the prompt prefix:
virtualenv {{[-p|--python]}} {{path/to/pythonbin}} {{path/to/venv}}
Use a different version of Python with virtualenv:
