Hi Dev team, I have the following question: K8s de...
# contributing-to-airbyte
t
Hi Dev team, I have the following question: K8s deployment can only be done on the Main namespace, will you support multiple namespaces soon?
u
u
oh oops. that’s a good point. read too quickly 😬 removed my original message
u
apologies Thomas - to get back to your original question, it’s actually possible to do so now if you are familiar with kubernetes. I believe all you need to do is 1) create a kubernetes name space 2) modify the
kustomization.yaml
to point to your new namespace
Copy code
apiVersion: <http://kustomize.config.k8s.io/v1beta1|kustomize.config.k8s.io/v1beta1>
kind: Kustomization

namespace: production

resources:
  - db.yaml
  - scheduler.yaml
  - scheduler-service-account.yaml
  - server.yaml
  - volume-configs.yaml
  - volume-db.yaml
  - volume-workspace.yaml
  - webapp.yaml
e.g. this applies the yamls to the production namespace