문제 해결 도구 다운로드
이 페이지에서는 Cloud Service Mesh의 문제 해결 도구를 다운로드하는 방법을 보여줍니다. Cloud Service Mesh 배포를 디버그하고 검토하려면 Google Cloud CLI용 istioctl 구성요소를 설치해야 합니다.
istioctl 다운로드
관리형 컨트롤 플레인
Google Cloud CLI를 업데이트합니다.
gcloud components update
삽입된 Cloud Service Mesh 문제 해결 도구를 다운로드합니다.
gcloud components install istioctl
You cannot perform this action because the
Google Cloud CLI component manager is disabled for this installation
오류 메시지가 표시되면 이전에 Debian/Ubuntu를 통해 Google Cloud CLI를 설치한 것입니다. 대신 다음 명령어를 사용합니다.
Google Cloud CLI 업데이트
sudo apt-get update
삽입된 Cloud Service Mesh 문제 해결 도구를 다운로드합니다.
sudo apt-get install google-cloud-sdk-istioctl
클러스터 내 컨트롤 플레인
Linux
Cloud Service Mesh 설치 파일을 현재 작업 디렉터리에 다운로드합니다.
curl -LO https://storage.googleapis.com/gke-release/asm/istio-1.21.5-asm.12-linux-amd64.tar.gz
서명 파일을 다운로드하고
openssl
을 사용하여 서명을 확인합니다.curl -LO https://storage.googleapis.com/gke-release/asm/istio-1.21.5-asm.12-linux-amd64.tar.gz.1.sig openssl dgst -verify /dev/stdin -signature istio-1.21.5-asm.12-linux-amd64.tar.gz.1.sig istio-1.21.5-asm.12-linux-amd64.tar.gz <<'EOF' -----BEGIN PUBLIC KEY----- MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWZrGCUaJJr1H8a36sG4UUoXvlXvZ wQfk16sxprI2gOJ2vFFggdq3ixF2h4qNBt0kI7ciDhgpwS8t+/960IsIgw== -----END PUBLIC KEY----- EOF
예상되는 출력은
Verified OK
입니다.원하는 파일 시스템 위치에 파일 콘텐츠 압축을 풉니다. 예를 들어 콘텐츠를 현재 작업 디렉터리에 추출하려면 다음을 사용하세요.
tar xzf istio-1.21.5-asm.12-linux-amd64.tar.gz
이 명령어는 다음을 포함하는 현재 작업 디렉터리에
istio-1.21.5-asm.12
이라는 설치 디렉터리를 만듭니다.- Sample applications in the `samples` directory. - The `istioctl` command-line tool that you use to install Cloud Service Mesh is in the <code>bin</code> directory. - The Cloud Service Mesh configuration profiles are in the `manifests/profiles` directory.
Cloud Service Mesh 설치 루트 디렉터리에 있는지 확인합니다.
cd istio-1.21.5-asm.12
Mac OS
Cloud Service Mesh 설치 파일을 현재 작업 디렉터리에 다운로드합니다.
curl -LO https://storage.googleapis.com/gke-release/asm/istio-1.21.5-asm.12-osx.tar.gz
서명 파일을 다운로드하고
openssl
을 사용하여 서명을 확인합니다.curl -LO https://storage.googleapis.com/gke-release/asm/istio-1.21.5-asm.12-osx.tar.gz.1.sig openssl dgst -sha256 -verify /dev/stdin -signature istio-1.21.5-asm.12-osx.tar.gz.1.sig istio-1.21.5-asm.12-osx.tar.gz <<'EOF' -----BEGIN PUBLIC KEY----- MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWZrGCUaJJr1H8a36sG4UUoXvlXvZ wQfk16sxprI2gOJ2vFFggdq3ixF2h4qNBt0kI7ciDhgpwS8t+/960IsIgw== -----END PUBLIC KEY----- EOF
예상되는 출력은
Verified OK
입니다.원하는 파일 시스템 위치에 파일 콘텐츠 압축을 풉니다. 예를 들어 콘텐츠를 현재 작업 디렉터리에 추출하려면 다음을 사용하세요.
tar xzf istio-1.21.5-asm.12-osx.tar.gz
이 명령어는 다음을 포함하는 현재 작업 디렉터리에
istio-1.21.5-asm.12
이라는 설치 디렉터리를 만듭니다.- Sample applications in the `samples` directory. - The `istioctl` command-line tool that you use to install Cloud Service Mesh is in the <code>bin</code> directory. - The Cloud Service Mesh configuration profiles are in the `manifests/profiles` directory.
Cloud Service Mesh 설치 루트 디렉터리에 있는지 확인합니다.
cd istio-1.21.5-asm.12
Windows
Cloud Service Mesh 설치 파일을 현재 작업 디렉터리에 다운로드합니다.
curl -LO https://storage.googleapis.com/gke-release/asm/istio-1.21.5-asm.12-win.zip
서명 파일을 다운로드하고
openssl
을 사용하여 서명을 확인합니다.curl -LO https://storage.googleapis.com/gke-release/asm/istio-1.21.5-asm.12-win.zip.1.sig openssl dgst -verify - -signature istio-1.21.5-asm.12-win.zip.1.sig istio-1.21.5-asm.12-win.zip <<'EOF' -----BEGIN PUBLIC KEY----- MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWZrGCUaJJr1H8a36sG4UUoXvlXvZ wQfk16sxprI2gOJ2vFFggdq3ixF2h4qNBt0kI7ciDhgpwS8t+/960IsIgw== -----END PUBLIC KEY----- EOF
예상되는 출력은
Verified OK
입니다.원하는 파일 시스템 위치에 파일 콘텐츠 압축을 풉니다. 예를 들어 콘텐츠를 현재 작업 디렉터리에 추출하려면 다음을 사용하세요.
tar xzf istio-1.21.5-asm.12-win.zip
이 명령어는 다음을 포함하는 현재 작업 디렉터리에
istio-1.21.5-asm.12
이라는 설치 디렉터리를 만듭니다.- Sample applications in the `samples` directory. - The `istioctl` command-line tool that you use to install Cloud Service Mesh is in the <code>bin</code> directory. - The Cloud Service Mesh configuration profiles are in the `manifests/profiles` directory.
Cloud Service Mesh 설치 루트 디렉터리에 있는지 확인합니다.
cd istio-1.21.5-asm.12