Kubernetes multi-cluster management tool Kuboard v3

Table of contents

I. Overview

2. Installation and basic use

2.1 Add k8s cluster

2.2 Information viewing

2.2.1 Summary information viewing

2.2.2 Import cluster node information

2.2.3 Storage

2.3 Create a workload


I. Overview


Kuboard is a free Kubernetes graphical management tool. Kuboard tries to help users quickly implement microservices on Kubernetes.

Kuboard v3.x supports Kubernetes multi-cluster management. If you upgrade to Kuboard from Kuboard v1.0.x or Kuboard v2.0.x, please note:

  • You can use Kuboard v3.x and Kuboard v2.0.x at the same time;
  • Kuboard v3.x supports amd64 (x86) architecture and arm68 (armv8) architecture CPU;

2. Installation and basic use


Install Kubernetes multi-cluster management tool - Kuboard v3 | Kuboard

docker pull swr.cn-east-2.myhuaweicloud.com/kuboard/kuboard:v3


#启动kuboard容器
docker run -d \
  --restart=unless-stopped \
  --name=kuboard \
  -p 8081:80/tcp \
  -p 30081:10081/tcp \
  -e KUBOARD_ENDPOINT="http://10.111.13.2:8081" \
  -e KUBOARD_AGENT_SERVER_TCP_PORT="30081" \
  -v /srv/docker/kuboard:/data/kuboard \
  swr.cn-east-2.myhuaweicloud.com/kuboard/kuboard:v3

Access address: http://192.168.2.211:8081/
User: admin
Password: Kuboard123

Enter Kuboard

2.1 Add k8s cluster

select kubeconfig 

I use kubeadmin to install k8s, copy the following information to the specified page, and click OK.

cat /etc/kubernetes/admin.conf 

Cluster import information confirmation

2.2 Information viewing

2.2.1 Summary information viewing

The existing cluster has been successfully imported, and you can view the summary information of the kuberntes cluster.

We enter the deployed jenkins

You can see the basic deployment information of the pod, and you can also automatically scale and enter the container command line

We can select service to view the service and port information of the application deployment

2.2.2 Import cluster node information

We can see that there are 3 servers.

CPU and memory details for node load

2.2.3 Storage

You can see the NFS storage class I created

Storage volume information

2.3 Create a workload

We choose the default namespace and choose to create a workload

 Workload type selection deployment

  Add a working container, other information is default, save and exit

 3 copies of the hello application are successfully created.

  We are looking at the command line:

 

Guess you like

Origin blog.csdn.net/qq_35995514/article/details/129938928