rad install kubernetes CLI reference

Details on the rad install kubernetes Radius CLI command

rad install kubernetes

Installs Radius onto a kubernetes cluster

Synopsis

Install Radius in a Kubernetes cluster using the Radius Helm chart. By default ‘rad install kubernetes’ will install Radius with the version matching the rad CLI version.

Radius will be installed in the ‘radius-system’ namespace. For more information visit https://docs.radapp.io/concepts/technical/architecture/

Overrides can be set by specifying Helm chart values with the ‘–set’ flag. For more information visit https://docs.radapp.io/guides/operations/kubernetes/install/.

rad install kubernetes [flags]

Examples

# Install Radius with default settings in current Kubernetes context
rad install kubernetes

# Install Radius with default settings in specified Kubernetes context
rad install kubernetes --kubecontext mycluster

# Install Radius with overrides in the current Kubernetes context
rad install kubernetes --set key=value

# Install Radius with the intermediate root CA certificate in the current Kubernetes context
rad install kubernetes --set-file global.rootCA.cert=/path/to/rootCA.crt

# Install Radius with zipkin server for distributed tracing 
rad install kubernetes --set global.zipkin.url=http://localhost:9411/api/v2/spans

# Install Radius with central prometheus monitoring service
rad install kubernetes --set global.prometheus.path=/customdomain.com/metrics,global.prometheus.port=443,global.rootCA.cert=/path/to/rootCA.crt 

# Install Radius using a helmchart from specified file path
rad install kubernetes --chart /root/radius/deploy/Chart

# Force re-install Radius with latest version
rad install kubernetes --reinstall

Options

      --chart string           Specify a file path to a helm chart to install Radius from
  -h, --help                   help for kubernetes
      --kubecontext string     The Kubernetes context to use, will use the default if unset
      --reinstall              Specify to force reinstallation of Radius
      --set stringArray        Set values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)
      --set-file stringArray   Set values from files on the command line (can specify multiple or separate files with commas: key1=filename1,key2=filename2)

Options inherited from parent commands

      --config string   config file (default "$HOME/.rad/config.yaml")
  -o, --output string   output format (supported formats are json, table) (default "table")

SEE ALSO