Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 1.05 KB

README.md

File metadata and controls

24 lines (20 loc) · 1.05 KB

ℹ️ NOTE: Please open issues in the Kubero main repository.



This is the source code for the Kubero Operator.
Pleas visit the main repository for docs and more information https://github.com/kubero-dev

Installation of operator controller without operator hub via kustomize and a single instance of kubero via helm (not published yet)

Note: Add any extra configuration variables to the kubero-secrets secret.

git clone https://github.com/kubero-dev/kubero-operator.git
cd kubero-operator
# kubectl apply operator controller
kubectl apply --kustomize  config/default 
# Add kubero-ui instance
helm install kubero ./helm-charts/kubero -n kubero --create-namespace --values custom_values.yaml
kubectl create secret generic kubero-secrets -n kubero --from-literal=KUBERO_WEBHOOK_SECRET=$(openssl rand -hex 20) --from-literal=KUBERO_SESSION_KEY=$(openssl rand -hex 20)