Overview

KubeSphere+K8s

As part of KubeSphere’s commitment to provide a plug-and-play architecture for users, it can be easily installed on existing Kubernetes clusters. More specifically, KubeSphere can be deployed on Kubernetes either hosted on clouds (e.g. AWS EKS, QingCloud QKE and Google GKE) or on-premises. This is because KubeSphere does not hack Kubernetes itself. It only interacts with the Kubernetes API to manage Kubernetes cluster resources. In other words, KubeSphere can be installed on any native Kubernetes cluster and Kubernetes distribution.

This section gives you an overview of the general steps of installing KubeSphere on Kubernetes. For more information about the specific way of installation in different environments, see Installing on Hosted Kubernetes and Installing on On-premises Kubernetes.

Note

Please read Prerequisites before you install KubeSphere on existing Kubernetes clusters.

Deploy KubeSphere

After you make sure your existing Kubernetes cluster meets all the requirements, you can use kubectl to trigger the default minimal installation of KubeSphere.

  • Execute the following commands to start installation:
  1. kubectl apply -f https://raw.githubusercontent.com/kubesphere/ks-installer/v3.0.0/deploy/kubesphere-installer.yaml
  1. kubectl apply -f https://raw.githubusercontent.com/kubesphere/ks-installer/v3.0.0/deploy/cluster-configuration.yaml

Note

If your server has trouble accessing GitHub, you can copy the content in kubesphere-installer.yaml and cluster-configuration.yaml respectively and past it to local files. You then can use kubectl apply -f for the local files to install KubeSphere.

  • Inspect the logs of installation:
  1. kubectl logs -n kubesphere-system $(kubectl get pod -n kubesphere-system -l app=ks-install -o jsonpath='{.items[0].metadata.name}') -f
  • Use kubectl get pod --all-namespaces to see whether all pods are running normally in relevant namespaces of KubeSphere. If they are, check the port (30880 by default) of the console through the following command:
  1. kubectl get svc/ks-console -n kubesphere-system
  • Make sure port 30880 is opened in security groups and access the web console through the NodePort (IP:30880) with the default account and password (admin/[[email protected]](https://kubesphere.io/cdn-cgi/l/email-protection)).

kubesphere-console

Enable Pluggable Components (Optional)

If you start with a default minimal installation, refer to Enable Pluggable Components to install other components.

Tip

  • Pluggable components can be enabled either before or after the installation. Please refer to the example file cluster-configuration.yaml for more details.
  • Make sure there is enough CPU and memory available in your cluster.
  • It is highly recommended that you install these pluggable components to discover the full-stack features and capabilities provided by KubeSphere.