Skip to content

Operator Installation

Operator needs very few configurations in config map and namespace. Here is simple use case. For more details see Operator Manual.

If you don't have Kubernetes cluster install the minikube.

Create separate namespace

kubectl create namespace spaship-operator

Create Operator's configuration

kubectl create configmap -n spaship-operator spaship-operator-config \
        --from-literal=APP_OPERATOR_ROUTER_MODE=ingress \
        --from-literal=APP_OPERATOR_WEBSITE_DOMAIN=minikube.info

Install Operator

kubectl apply -n spaship-operator -f https://raw.githubusercontent.com/spaship/operator/main/manifests/install.yaml