Skip to content

1.2.0-beta7

Pre-release
Pre-release
Compare
Choose a tag to compare
@docker-ee-ucp docker-ee-ucp released this 11 Feb 13:12
f4e08d0

Changelog

(vs 1.2.0-beta6)

  • Support for Ubuntu 20.04
  • Mount docker socket when listing MKE images
  • APIVersion 1.3

There is a rather large refactoring done between beta6 and this version, all of the host communication code has been moved to a library shared between k0sctl and Launchpad.

Configuration API changes

Address is now in the level of protocol configuration:

Before:

spec:
  hosts:
    - role: manager
      address: 10.0.0.1
      ssh:
        port: 22

Now:

spec:
  hosts:
    - role: manager
      ssh:
        address: 10.0.0.1
        port: 22

The "localhost" connection is no longer a direct boolean:

Before:

spec:
  hosts:
    - localhost: true

Now:

spec:
  hosts:
    - localhost:
        enabled: true

Any old style configuration will be migrated.