Skip to main content
Version: 3.9

Create a bastion server

This document explains how to create a bastion server and install some tools for the deployment of Scalar products.

Create a server on the same private network as a Kubernetes cluster

It is recommended to create a Kubernetes cluster for Scalar products on a private network. If you create a Kubernetes cluster on a private network, you should create a bastion server on the same private network to access your Kubernetes cluster.

Install tools

Please install the following tools on the bastion server according to their official documents.

Configure kubeconfig

After you install the kubectl command, you must configure a kubeconfig to access your Kubernetes cluster. Please refer to the following official document for more details on how to configure kubeconfig in each managed Kubernetes.

If you use Amazon EKS (Amazon Elastic Kubernetes Service), you must install the AWS CLI according to the official document Installing or updating the latest version of the AWS CLI. After that, you can see how to configure kubeconfig in Creating or updating a kubeconfig file for an Amazon EKS cluster.

If you use AKS (Azure Kubernetes Service), you must install the Azure CLI according to the official document How to install the Azure CLI. After that, you can see how to configure kubeconfig in az aks get-credentials.

Check installation

You can check if the tools are installed as follows.

  • kubectl
    kubectl version --client
  • helm
    helm version

You can also check if your kubeconfig is properly configured as follows. If you see a URL response, kubectl is correctly configured to access your cluster.

kubectl cluster-info