Randy
Randy

Reputation: 1367

Multiple Istio instances in one cluster

We have quite large clusters with different independent organizations. Therefore we would like to have an installation of istio per organisation.

Question: Is this possible at all?

I know I can install the control plane separately in custom namespaces. However, when I'd like to install istio using the [helm chart], I don't know how to configure it respectively for concurrent installations of isto.

Upvotes: 2

Views: 512

Answers (1)

c4f4t0r
c4f4t0r

Reputation: 1641

Yes, you can have one ingress controller by namespace, you need to use helm install --namespace to specify the desired namespace.

If you want your ingress controller check only local namespaced rules, you need to use the option:

  # Whether to restrict the applications namespace the controller manages;
  # If not set, controller watches all namespaces
oneNamespace: false

This option needs to be true.

Upvotes: 1

Related Questions