diff --git a/README.md b/README.md index acb81028..9d5ae477 100644 --- a/README.md +++ b/README.md @@ -362,6 +362,28 @@ Override OS distribution auto-detection. By default `k0sctl` detects the OS by r address: 10.0.0.2 ``` +##### `spec.hosts[*].privateInterface` <string> (optional) (default: ``) + +Override private network interface selected by host fact gathering. +Useful in case fact gathering picks the wrong private network interface. + +```yaml + - role: worker + os: debian + privateInterface: eth1 +``` + +##### `spec.hosts[*].privateAddress` <string> (optional) (default: ``) + +Override private IP address selected by host fact gathering. +Useful in case fact gathering picks the wrong IPAddress. + +```yaml + - role: worker + os: debian + privateAddress: 10.0.0.2 +``` + ##### `spec.hosts[*].ssh` <mapping> (optional) SSH connection options.