From 5c86f19dc7dca16f928baa062215de6500b7d153 Mon Sep 17 00:00:00 2001 From: Grant Rodgers Date: Fri, 23 Feb 2018 10:17:38 -0800 Subject: [PATCH] Clarify controller-created resource namespace (#215) --- resources-overview.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resources-overview.md b/resources-overview.md index 8e8648bd0..0da7d9193 100644 --- a/resources-overview.md +++ b/resources-overview.md @@ -17,7 +17,9 @@ There are two primary components to the Elafros system. The first is a controlle The controller processes a series of state changes in order to move the system from its current, actual state to the state desired by the user. -All of the Elafros components are deployed into the `ela-system` namespace. You can see the various objects in this namespace by running `kubectl -n ela-system get all` ([minus some admin-level resources like service accounts](https://github.com/kubernetes/kubectl/issues/151)). To see only objects of a specific type, for example to see the webhook and controller deployments inside Elafros, you can run `kubectl -n ela-system get deployments`. The Elafros controller creates other child objects inside Kubernetes. You can specify the namespace for your child objects by specifying your desired namespace when deploying your Elafros configuration. +All of the Elafros components are deployed into the `ela-system` namespace. You can see the various objects in this namespace by running `kubectl -n ela-system get all` ([minus some admin-level resources like service accounts](https://github.com/kubernetes/kubectl/issues/151)). To see only objects of a specific type, for example to see the webhook and controller deployments inside Elafros, you can run `kubectl -n ela-system get deployments`. + +The Elafros controller creates Kubernetes, Istio, and Build CRD resources when Elafros resources are created and updated. These sub-resources will be created in the same namespace as their parent Elafros resource, _not_ the `ela-system` namespace. ## Precise Object Listing