Hello, According to <https://docs.flyte.org/en/lat...
# ask-the-community
f
Hello, According to https://docs.flyte.org/en/latest/deployment/plugins/k8s/index.html#install-the-kubernetes-operator I need to install k8s spark-operator that Flyte (deployed in EKS cluster) depends on for running spark tasks via the following commands.
Copy code
helm repo add spark-operator <https://googlecloudplatform.github.io/spark-on-k8s-operator>
helm install spark-operator spark-operator/spark-operator --namespace spark-operator --create-namespace
Our organization is using CICD & helm chart for deployment and doesn’t allow direct helm command execution. I wonder if someone can provide guideline on how to modify the flyte helm chart (may be in the templates) to achieve the same effects as the above helm command? Also, we are not allowed to create new k8s namespaces e.g. spark-operator nor install spark-operator in the default namespace. What will be the namespace alternative? Can I install it in the ‘flyte’ namespace? Thank you in advance!