summary refs log tree commit diff
path: root/nixos/doc
diff options
context:
space:
mode:
authorJohan Thomsen <jth@dbc.dk>2018-06-08 10:16:43 +0200
committerJohan Thomsen <jth@dbc.dk>2018-06-12 22:47:32 +0200
commit8d7ea96a13ab569d69aa7feaaa99f0d896b4f97a (patch)
tree9397f90b1e9829ee54405a0e882b91cfa2d4bb05 /nixos/doc
parentda8920622a8b8574a07feadf1f917da71509008b (diff)
downloadnixpkgs-8d7ea96a13ab569d69aa7feaaa99f0d896b4f97a.tar
nixpkgs-8d7ea96a13ab569d69aa7feaaa99f0d896b4f97a.tar.gz
nixpkgs-8d7ea96a13ab569d69aa7feaaa99f0d896b4f97a.tar.bz2
nixpkgs-8d7ea96a13ab569d69aa7feaaa99f0d896b4f97a.tar.lz
nixpkgs-8d7ea96a13ab569d69aa7feaaa99f0d896b4f97a.tar.xz
nixpkgs-8d7ea96a13ab569d69aa7feaaa99f0d896b4f97a.tar.zst
nixpkgs-8d7ea96a13ab569d69aa7feaaa99f0d896b4f97a.zip
nixos/kubernetes: improvements
- Added option 'cni.configDir' to allow for having CNI config outside of nix-store
  Existing behavior (writing verbatim CNI conf-files to nix-store) is still available.

- Removed unused option 'apiserver.publicAddress' and changed 'apiserver.address' to 'bindAddress'
  This conforms better to k8s docs and removes existing --bind-address hardcoding to 0.0.0.0

- Fixed c/p mistake in apiserver systemd unit description

- Updated 18.09 release notes to reflect changes to existing options
  And fixed some typos from previous PR

- Make docker images for Kubernetes Dashboard and kube-dns configurable
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/release-notes/rl-1809.xml15
1 files changed, 14 insertions, 1 deletions
diff --git a/nixos/doc/manual/release-notes/rl-1809.xml b/nixos/doc/manual/release-notes/rl-1809.xml
index 72f96f1ca1a..f57fd75c782 100644
--- a/nixos/doc/manual/release-notes/rl-1809.xml
+++ b/nixos/doc/manual/release-notes/rl-1809.xml
@@ -288,11 +288,24 @@ inherit (pkgs.nixos {
    </listitem>
    <listitem>
     <para>
-     Recommented way to access the Kubernetes Dashboard is with HTTPS (TLS)
+     Recommended way to access the Kubernetes Dashboard is via HTTPS (TLS)
      Therefore; public service port for the dashboard has changed to 443
      (container port 8443) and scheme to https.
     </para>
    </listitem>
+   <listitem>
+    <para>
+     The option <varname>services.kubernetes.apiserver.address</varname>
+     was renamed to <varname>services.kubernetes.apiserver.bindAddress</varname>.
+     Note that the default value has changed from 127.0.0.1 to 0.0.0.0.
+    </para>
+   </listitem>
+   <listitem>
+    <para>
+     The option <varname>services.kubernetes.apiserver.publicAddress</varname>
+     was not used and thus has been removed.
+    </para>
+   </listitem>
   </itemizedlist>
  </section>
 </section>