Kustomized Installation

We are using Flux to package our Kustomize files through OCI, and they are built and released just as our helm solution.

There is no way of downloading manifest files through the Kustomize CLI, so if you want to download the Kustomize manifest you need to install the Flux cli.

Install Flux Cli

Download Kustomize files

After you have downloaded Flux you can use flux pull artifact to download the manifests.

This will provide you the manifest files unpacked and ready to use.

mkdir doris-operator
flux pull artifact oci://ghcr.io/linsoss/kustomize/doris-operator:1.0.4 --output ./doris-operator/

Install Operator

kubectl apply -k doris-operator

Uninstall Operator

kubectl delete -k doris-operator