typhoon/docs
Dalton Hubble b3c384fbc0 Introduce the component system for managing pre-installed addons
* Previously: Typhoon provisions clusters with kube-system components
like CoreDNS, kube-proxy, and a chosen CNI provider (among flannel,
Calico, or Cilium) pre-installed. This is convenient since clusters
come with "batteries included". But it also means upgrading these
components is generally done in lock-step, by upgrading to a new
Typhoon / Kubernetes release
* It can be valuable to manage these components with a separate
plan/apply process or through automations and deploy systems. For
example, this allows managing CoreDNS separately from the cluster's
lifecycle.
* These "components" will continue to be pre-installed by default,
but a new `components` variable allows them to be disabled and
managed as "addons", components you apply after cluster creation
and manage on a rolling basis. For some of these, we may provide
Terraform modules to aide in managing these components.

```
module "cluster" {
  # defaults
  components = {
    enable = true
    coredns = {
      enable = true
    }
    kube_proxy = {
      enable = true
    }
    # Only the CNI set in var.networking will be installed
    flannel = {
      enable = true
    }
    calico = {
      enable = true
    }
    cilium = {
      enable = true
    }
  }
}
```

An earlier variable `install_container_networking = true/false` has
been removed, since it can now be achieved with this more extensible
and general components mechanism by setting the chosen networking
provider enable field to false.
2024-05-19 16:33:57 -07:00
..
addons Introduce the component system for managing pre-installed addons 2024-05-19 16:33:57 -07:00
advanced Update Kubernetes from v1.30.0 to v1.30.1 2024-05-15 21:59:00 -07:00
architecture azure: Add controller security group and subnet outputs 2024-05-14 21:34:31 -07:00
fedora-coreos Introduce the component system for managing pre-installed addons 2024-05-19 16:33:57 -07:00
flatcar-linux Introduce the component system for managing pre-installed addons 2024-05-19 16:33:57 -07:00
img Add new load balancing, TCP/UDP, and firewall docs/diagrams 2019-08-03 11:50:03 -07:00
topics Update Kubernetes from v1.30.0 to v1.30.1 2024-05-15 21:59:00 -07:00
announce.md Fix minor typo in announcement date 2020-01-23 08:57:01 -08:00
CNAME Migrate from internal hosting to GitHub pages 2022-07-27 21:56:42 -07:00
index.md Update Kubernetes from v1.30.0 to v1.30.1 2024-05-15 21:59:00 -07:00