aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-05-28 19:54:30 +0100
committerGravatar Joe Banks <[email protected]>2024-05-28 19:54:30 +0100
commitc832cbee3675356a84f6e43ad39c925b5a5df8e8 (patch)
tree1536b057451c7c0df32ee10abb2d954c91a134fa
parentAdd user for Stelercus (diff)
Add documentation on services deployed to the kube-system namespace
-rw-r--r--kubernetes/namespaces/kube-system/README.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/kubernetes/namespaces/kube-system/README.md b/kubernetes/namespaces/kube-system/README.md
new file mode 100644
index 0000000..d6625e5
--- /dev/null
+++ b/kubernetes/namespaces/kube-system/README.md
@@ -0,0 +1,33 @@
+# Kubernetes System Namespace
+
+The `kube-system` namespace contains several services used for the operation of
+the Kubernetes cluster.
+
+## Folder Contents
+
+### `coredns-custom.yaml`
+
+This is a custom CoreDNS configuration file loaded in by Linode allowing us to
+add additional configuration options to our cluster DNS server, such as
+additional logging of specific queries.
+
+### `nginx`
+
+This folder contains the deployment of the `ingress-nginx` service which handles
+all inbound traffic to the cluster, TLS termination and forwarding to the
+relevant internal services.
+
+### `reflector`
+
+This is a system component which allows specific annotations on secrets to
+trigger them to replicate to a selected set of other namespaces.
+
+See the README.md in the folder for more information.
+
+## Other components
+
+We deploy the Kubernetes [`metrics-server`](https://github.com/kubernetes-sigs/metrics-server) using the
+manifests specified in the project repository. This allows commands like
+`kubectl top` to work.
+
+We also deploy [`kube-state-metrics`](https://github.com/kubernetes/kube-state-metrics) again using the manifests located in the repository.