Skip to content

Latest commit

 

History

History
 
 

hnc

The Hierarchical Namespace Controller (HNC)

$ kubectl hns create child -n parent
$ kubectl hns tree parent
parent
└── child

Hierarchical namespaces make it easier for you to create and manage namespaces in your cluster. For example, you can create a hierarchical namespace under your team's namespace, even if you don't have cluster-level permission to create namespaces, and easily apply policies like RBAC and Network Policies across all namespaces in your team (e.g. a set of related microservices).

You can read more about hierarchical namespaces in the HNC User Guide.

The best way you can help contribute to bringing hierarchical namespaces to the Kubernetes ecosystem is to try out HNC and report the problems you have with either HNC itself or its documentation (see below). Or, if it's working well for you, let us know on the #wg-multitenancy channel on Slack, or join a wg-multitenancy meeting. We'd love to hear from you!

With that said, please be cautious - HNC is alpha software. While we will not break any existing API without incrementing the API version, there may be bugs or missing features. HNC also requires very high privileges on your cluster and you should be cautious about installing it on clusters with configurations that you cannot afford to lose (e.g. that are not stored in a Git repository).

Lead developer: @adrianludwin (aludwin@google.com).

Using HNC

The latest version of HNC is v0.5.1. To install HNC on your cluster, and the kubectl-hns plugin on your workstation, follow the instructions on that page.

Once HNC is installed, you can try out the HNC demos to get an idea of what HNC can do. Or, feel free to dive right inot the user guide instead.

Issues and project management

All HNC issues are assigned to an HNC milestone. So far, the following milestones are defined:

Non-coding tasks are also tracked in the HNC project.

Developing HNC

HNC is a small project, and we have limited abilities to help onboard developers. If you'd like to contribute to the core of HNC, it would be helpful if you've created your own controllers before using controller-runtime and have a good understanding at least one non-functional task such as monitoring or lifecycle management. However, there are sometimes tasks to help improve the CLI or other aspects of usability that require less background knowledge.

With that said, if you want to use HNC yourself and are also a developer, we want to know what does and does not work for you, and we'd welcome any PRs that might solve your problems.

The main design doc is here; other design docs are listed here.

Prerequisites

Make sure you have installed the following libraries/packages and that they're accessible from your PATH:

If you're using gcloud and the GCP Container Registry, make sure that gcloud is configured to use the project containing the registry you want to use, and that you've previously run gcloud auth configure-docker so that Docker can use your GCP credentials.

Building and deploying to a test cluster

To build from source and deploy to a cluster:

  • Ensure your kubeconfig is configured to point at your cluster
    • For example, if you're using GKE, run gcloud container clusters get-credentials <cluster-name> --zone <cluster-zone>
    • To deploy to KIND, see below instead.
  • Use make deploy to deploy to your cluster.
    • Ensure you run gcloud auth configure-docker so that docker-push works correctly.
    • This will also install the kubectl-hns plugin into $GOPATH/bin. Ensure that this is in your PATH env var if you want to use it by saying kubectl hns, as described in the user guide.
    • The manifests that get deployed will be output to /manifests/hnc-controller.yaml if you want to check them out.
    • Note that make deploy can respond to env vars in your environment; see the Makefile for more information.
  • To view logs, say make deploy-watch

Development Workflow

Once HNC is installed via make deploy, the development cycle looks like the following:

  • Make changes locally and write new unit and integration tests as necessary
  • Ensure make test passes
  • Deploy to your cluster with make deploy
  • Monitor changes. Some ways you can do that are:
    • Look at logging with make deploy-watch
    • Look at the result of the structure of your namespaces with kubectl-hns tree -A or kubectl-hns tree NAMESPACE
    • See the resultant conditions or labels on namespaces by using kubectl describe namespace NAMESPACE

Developing with KIND

While developing the HNC, it's usually faster to deploy locally to KIND:

  • Run . devenv (or source devenv) to setup your KUBECONFIG env var to point to the local Kind cluster.
  • Run make kind-reset to stop any existing KIND cluster and setup a new one. You don't need to run this every time, only when you're first starting development or you think your KIND cluster is in a bad state.
  • Run CONFIG=kind make deploy or make kind-deploy to build the image, load it into KIND, and deploy to KIND. See the notes above for caveats on make deploy, though you don't need to set IMG yourself.
  • Alternatively, you can also run the controller locally (ie, not on the cluster) by saying make run. Webhooks don't work in this mode because I haven't bothered to find an easy way to make them work yet.

KIND doesn't integrate with any identity providers - that is, you can't add "sara@foo.com" as a "regular user." So you'll have to use service accounts and impersonate them to test things like RBAC rules. Use kubectl --as system:serviceaccount:<namespace>:<sa-name> to impersonate a service account from the command line, as documented here.

Code structure

The directory structure is fairly standard for a Kubernetes project. The most interesting directories are probably:

  • /api: the API definition.
  • /cmd: top-level executables. Currently the manager and the kubectl plugin.
  • /hack: various release scripts, end-to-end bash script tests and other miscellaneous files.
  • /internal/reconcilers: the reconcilers and their tests
  • /internal/validators: validating admission controllers
  • /internal/forest: the in-memory data structure, shared between the reconcilers and validators
  • /internal/kubectl: implementation of the kubectl-hns plugin

Within the reconcilers directory, there are four reconcilers:

  • HNCConfiguration reconciler: manages the HNCConfiguration via the cluster-wide config singleton.
  • Anchor reconciler: manages the subnamespace anchors via the subnamespaceanchor resources.
  • HierarchyConfiguration reconciler: manages the hierarchy and the namespaces via the hierarchy singleton per namespace.
  • Object reconciler: propagates (copies and deletes) the relevant objects from parents to children. Instantiated once for every supported object GVK (group/version/kind) - e.g., Role, Secret, etc.

Test infrastructure

HNC uses Prow to run tests, which is configured here. The presubmits run hack/ci-test.sh in this repo. Results are displayed on testgrid and are configured here.

These config files should be inspected periodically (e.g. about once a release) to make sure they're fully up-to-date.

Releasing

To release HNC, follow this guide.