728x90
## repo 저장
tanzu package repository add tce-repo --url projects.registry.vmware.com/tce/main:0.9.1 --namespace tanzu-package-repo-global
## repo list 확인
tanzu package repository list --namespace tanzu-package-repo-global
## repo 설치 가능한 리스트 확인
tanzu package available list
## 또는
kubectl get package -A
## 설치 방법
tanzu package install cert-manager --package-name cert-manager.community.tanzu.vmware.com --version 1.5.3

imgpkg를 다운로드 받는다.
https://github.com/vmware-tanzu/carvel-imgpkg/releases/tag/v0.24.0
Release v0.24.0 · vmware-tanzu/carvel-imgpkg
✨ What's new By default imgpkg now creates a tag for all the OCI Images that it pushes to the registry #248 Allow users to set the number of retries for temporary errors #231 🔈 Callouts Thanks to...
github.com
## imgpkg 다운로드
wget https://github.com/vmware-tanzu/carvel-imgpkg/releases/download/v0.24.0/imgpkg-linux-amd64
## 권한
chmod +x imgpkg-linux-amd64
mv imgpkg-linux-amd64 /usr/local/bin/imgpkg
## 파일 다운로드 받기 위한 방법
image_url=$(kubectl -n tanzu-package-repo-global get packages contour.community.tanzu.vmware.com.1.18.1 -o jsonpath='{.spec.template.spec.fetch[0].imgpkgBundle.image}')
## 파일 다운로드
imgpkg pull -b $image_url -o /var/tmp/extension/contour
cp /var/tmp/extension/contour/config/values.yaml /var/tmp/extension/contour/contour-data-values.yaml
vi /var/tmp/extension/contour/contour-data-values.yaml
## contour 설치
tanzu package install contour -p contour.community.tanzu.vmware.com -v 1.18.1 -f contour-data-values.yaml -n tanzu-system-ingress --create-namespace
## OCTANT 실행으로 UI로도 가능
다운로드 링크
https://github.com/vmware-tanzu/octant/releases/tag/v0.25.0
Release v0.25.0 · vmware-tanzu/octant
v0.25.0 2021-11-16 Download https://github.com/vmware-tanzu/octant/releases/v0.25.0 All Changes Fixed invalid port when backend service has multiple ports (#2994, @kaitoii11) Updated documentati...
github.com

octant 실행


반응형
'VMware > TANZU' 카테고리의 다른 글
(DK) Tanzu Application Platform (2) (0) | 2022.04.08 |
---|---|
(DK) Tanzu Application Platform (1) (0) | 2022.03.09 |
(DK)WSL에서 TCE(Tanzu Communty Edition) Install (0) | 2021.12.18 |
(DK) TANZU PUBLIC환경에서 VM Resizing (0) | 2021.08.26 |
(DK) TANZU HARBOR EXTENTION에서 OCI Registry 및 KUBEAPPS 연동 (0) | 2021.08.25 |