cloudera-deploy
A general purpose framework for automating Cloudera Products
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
az login
설명 보기 ▼
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
설명 보기 ▼
brew
macOS와 Linux를 위한 패키지 관리자.
더 많은 정보: <https://docs.brew.sh/Manpage>.
brew install {{formula|cask}}
공식(formula) 혹은 캐스크(cask)의 최신 안정 버전을 설치:
brew list
설치된 모든 공식(formulae)과 캐스크(casks) 나열:
brew upgrade {{formula|cask}}
설치된 특정 공식(formula) 혹은 캐스크(cask) 업그레이드 (옵션이 주어지지 않으면 모든 공식과 캐스크 업그레이드):
docker ps
설명 보기 ▼
docker ps
This command is an alias of `docker container ls`.
tldr docker container ls
View documentation for the original command:
docker
설명 보기 ▼
docker
Docker 컨테이너 및 이미지를 관리.
`run`과 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다.
더 많은 정보: <https://docs.docker.com/reference/cli/docker/>.
docker {{[ps|container ls]}} {{[-a|--all]}}
모든 도커 컨테이너들(실행 및 중지) 목록 보기:
docker {{[run|container run]}} --name {{container_name}} {{image}}
사용자 정의 이름으로 이미지로부터 컨테이너 실행:
docker container {{start|stop}} {{container_name}}
기존 컨테이너 시작 또는 중지:
git clone
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
podman
파드, 컨테이너 및 이미지의 간단한 관리 도구.
Podman은 Docker-CLI와 유사한 명령줄을 제공합니다. 간단히 말해: `alias docker=podman`.
더 많은 정보: <https://github.com/containers/podman/blob/main/commands-demo.md>.
podman ps {{[-a|--all]}}
모든 컨테이너 나열 (실행 중 및 중지됨 모두 포함):
podman run --name {{container_name}} {{image}}
이미지에서 사용자 정의 이름으로 컨테이너 생성:
podman {{start|stop}} {{container_name}}
기존 컨테이너 시작 또는 중지:
virtualenv
설명 보기 ▼
virtualenv
가상 격리된 Python 환경 생성.
더 많은 정보: <https://virtualenv.pypa.io/en/latest/cli_interface.html>.
virtualenv {{path/to/venv}}
새 환경 생성:
virtualenv --prompt {{prompt_prefix}} {{path/to/venv}}
프롬프트 접두사를 사용자 정의:
virtualenv {{[-p|--python]}} {{path/to/pythonbin}} {{path/to/venv}}
virtualenv에 다른 버전의 Python 사용:
