0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

KubeView動かしてみた

Posted at

KubernetesのリソースをビジュアライズしてくれるKubeviewを見つけた

Kubernetesクラスタに突っ込でおくと、クラスタないのPodやsvcやPVなどの関連をビジュアライズしてくれる
誰かが作った、K8s上のアプリケーションの構造を読み解く際に大いに活用できそう(今までは1つずつmanifest開けて見てた...)

実際に動かしてみるとこんな感じ

kubeview.png

Prerequirement

HelmとKubernetesが設定済み

Install

git clone https://github.com/benc-uk/kubeview
cd deployments/helm
cp myvalues-sample.yaml myvalues.yaml
helm install ./kubeview kubeview -f myvalues.yaml --generate-name

SVC_NAME=$(kubectl get svc  -o jsonpath={".items[0].metadata.name"})
kubectl port-forward svc/${SVC_NAME}  8080:80  
0
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?