mist-ce

(★ 1,912)

Mist is an open source, multicloud management platform

파일 탐색기

  • .env
  • .gitignore
  • .gitlab-ci.yml
  • .gitmodules
  • api
  • Architecture.png
  • Architecture.svg
  • CHANGELOG.md
  • defaults.py
  • docker-compose.override.yml
  • docker-compose.yml
  • Dockerfile
  • landing
  • LICENSE
  • orchestration
  • portal
  • README.md
  • restart.sh
  • test.sh
  • tests
  • ui

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

릴리즈 타임라인

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

builtin

설명 보기 ▼

내장 쉘을 실행.
더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#index-builtin>.

builtin {{command}}

내장 쉘을 실행:

🔍

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

설명 보기 ▼

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:

🔍

helm install

설명 보기 ▼

Install a helm chart.

helm install {{name}} {{repository_name}}/{{chart_name}}

Install a helm chart:

helm install {{name}} {{path/to/source_directory}}

Install a helm chart from an unpacked chart directory:

helm install {{package_name}} {{https://example.com/charts/packagename-1.2.3.tgz}}

Install a helm chart from a URL:

🔍

helm

설명 보기 ▼

Kubernetes 패키지 관리자.
`install`과 같은 하위 명령어에는 자체 사용법 문서가 있음.
더 많은 정보: <https://helm.sh/docs/helm/>.

helm create {{chart_name}}

helm 차트 생성:

helm repo add {{repository_name}}

새로운 helm 레포지토리를 추가:

helm repo {{[ls|list]}}

helm 레포지토리 나열:

🔍

kubectl get

설명 보기 ▼

Get Kubernetes objects and resources.

kubectl get {{[ns|namespaces]}}

Get all namespaces in the current cluster:

kubectl get {{[no|nodes]}} {{[-n|--namespace]}} {{namespace}}

Get nodes in a specified namespace:

kubectl get {{[po|pods]}} {{[-n|--namespace]}} {{namespace}}

Get pods in a specified namespace:

🔍

kubectl logs

설명 보기 ▼

Show logs for containers in a pod.

kubectl logs {{pod_name}}

Show logs for a single-container pod:

kubectl logs {{[-c|--container]}} {{container_name}} {{pod_name}}

Show logs for a specified container in a pod:

kubectl logs --all-containers={{true}} {{pod_name}}

Show logs for all containers in a pod:

🔍

standard

설명 보기 ▼

JavaScript 코드의 린트 및 수정을 위한 JavaScript Standard Style 도구.
더 많은 정보: <https://standardjs.com/#usage>.

standard

현재 디렉토리의 모든 JavaScript 소스 파일을 린트:

standard {{path/to/file1 path/to/file2 ...}}

특정 JavaScript 파일(들)을 린트:

standard --fix

린트 시 자동 수정 적용:

// repository documentation