Skip to main content
Version: 0.5.0

kubeslice-cli Configuration Parameters

This topic describes the parameters used in creating the topology YAML file to install opensource KubeSlice.

Cluster Configuration Parameters

The following table describes the cluster configuration parameters used to create the topology YAML.

ParameterParameter TypeDescriptionRequired
profileStringIt is the KubeSlice profile to create demo clusters.The supported values are minimal-demo and full-demoMandatory
kube_config_pathStringIt is the absolute path to the kubeconfig file to use topology set up. It is used in the topology YAML file only.Optional
controllerObjectIt is the controller cluster details.Mandatory
workerObjectIt is the worker clusters details.Mandatory

Controller Cluster Configuration Parameters

The following table describes the controller cluster configuration parameters used to create the topology YAML.

ParameterParameter TypeDescriptionRequired
nameStringIt is the user-defined name of the controller cluster.Mandatory
context_nameStringIt is the name of the context to use from the kubeconfig file; It is used in the topology YAML file only.Optional
kube_config_pathStringIt is the absolute path to the kubeconfig file to install controller cluster. This takes precedence over the kubeconfig path defined under cluster configuration.Optional
control_plane_addressAlphaNumericIt is the address of the control plane kube-apiserver. The kubeslice-cli determines the address from kubeconfig. Override this option if the address in kubeconfig is not reachable by other clusters in topology.Mandatory
node_ipNumericIt is the IP address of one of the node in the cluster. The kubeslice-cli determines the address from this command:kubectl get nodes. Override this option to an address which is discoverable by other clusters in the topology.Mandatory

Worker Cluster Configuration Parameters

The following table describes the worker cluster configuration parameters.

ParameterParameter TypeDescriptionRequired
nameStringIt is the user-defined name of the worker cluster.Mandatory
context_nameStringIt is the name of the context to use from kubeconfig file; It is used in the topology YAML only.Optional
kube_config_pathStringIt is the absolute path to the kubeconfig file to install a worker cluster. This takes precedence over the kubeconfig path defined under cluster configuration.Optional
control_plane_addressAlphaNumericIt is the address of the control plane kube-apiserver. The kubeslice-cli determines the address from kubeconfig. Override this option if the address in kubeconfig is not reachable by other clusters in topology.Mandatory
node_ipNumericIt is the IP address of one of the node in the cluster. The kubeslice-cli determines the address from this command:kubectl get nodes. Override this option to an address which is discoverable by other clusters in the topology.Mandatory

KubeSlice Configuration Parameters

The following table describes the KubeSlice configuration parameters.

ParameterParameter TypeDescriptionRequired
project_nameStringIt is the user-defined name of the Kubeslice project.Mandatory

Helm Chart Configuration Parameters

The following table describes the helm chart configuration parameters.

ParameterParameter TypeDescriptionRequired
repo_aliasStringIt is the alias of the helm repo for KubeSlice charts.Optional
repo_urlStringIt is the URL of the helm charts for KubeSlice.Mandatory
cert_manager_chartObjectIt is the certificate manager chart details.Mandatory
controller_chartObjectIt is the controller chart details.Mandatory
worker_chartObjectIt is the worker chart details.Mandatory

Certificate Manager Chart Configuration Parameters

The following table describes the certificate manager chart configuration parameters used to create topology YAML.

ParameterParameter TypeDescriptionRequired
chart_nameStringIt is the name of the certificate manager chart.Mandatory
versionNumericIt is the version of the certificate manager chart. Leave this value blank for the latest version.Optional

Controller Chart Configuration Parameters

The following table describes the controller chart configuration parameters used to create topology YAML.

ParameterParameter TypeDescriptionRequired
chart_nameStringIt is the name of the controller chart.Mandatory
versionNumericIs it the version of the chart. Leave this value blank for the latest versionOptional

Worker Chart Configuration Parameters

The following table describes the worker chart configuration parameters used to create topology YAML.

ParameterParameter TypeDescriptionRequired
chart_nameStringIt is the name of the worker chart.Mandatory
versionNumericIt is the version of the chart. Leave this value blank for the latest versionOptional
note

The 'kube_config_path' parameter in the topology configuration requires the absolute path to the kubeconfig file. The 'kube_config_path' parameter must be set at the top-level, that is under cluster_configuration,' or under the controller and workers configuration.