Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.78 KB

installation.md

File metadata and controls

49 lines (35 loc) · 1.78 KB

Install Tarantool Kubernetes Operator CE

Table of Contents

Prerequisites

Install or update the Operator using Helm

To install or upgrade the CRD's and the Tarantool Operator using Helm, run following commands from the shell:

  • Add helm repository

    helm repo add tarantool https://tarantool.github.io/helm-charts/
  • Configure the Operator deployment (optional)

    helm show values tarantool/tarantool-operator > operator-values.yaml

    Edit operator-values.yaml file if needed, all parameters described in comments.

  • Install/Update operator (choose on of)

    • To default namespace:

      • Add the --values ./operator-values.yaml option if you are using custom configuration of deployment.
      • Execute following command:
        helm upgrade --install tarantool-operator-ce tarantool/tarantool-operator [--values ./operator-values.yaml]
    • To custom namespace:

      • Replace the my-namespace with any name of namespace what you want.
      • Add the --create-namespace flag if your namespace is not created yet.
      • Add the --values ./operator-values.yaml option if you are using custom configuration of deployment.
      • Execute following command:
        helm upgrade --install tarantool-operator-ce tarantool/tarantool-operator \
        -n my-namespace [--create-namespace] [--values ./operator-values.yaml]