Giter Club home page Giter Club logo

docker-machine-driver-hetzner's Introduction

Hetzner Cloud Docker machine driver

Go Report Card License Go-CI

This library adds the support for creating Docker machines hosted on the Hetzner Cloud.

You need to create a project-specific access token under Access > API Tokens in the project control panel and pass that to docker-machine create with the --hetzner-api-token option.

Installation

You can find sources and pre-compiled binaries here.

# Download the binary (this example downloads the binary for linux amd64)
$ wget https://github.com/JonasProgrammer/docker-machine-driver-hetzner/releases/download/5.0.0/docker-machine-driver-hetzner_5.0.0_linux_amd64.tar.gz
$ tar -xvf docker-machine-driver-hetzner_5.0.0_linux_amd64.tar.gz

# Make it executable and copy the binary in a directory accessible with your $PATH
$ chmod +x docker-machine-driver-hetzner
$ cp docker-machine-driver-hetzner /usr/local/bin/

Usage

$ docker-machine create \
  --driver hetzner \
  --hetzner-api-token=QJhoRT38JfAUO037PWJ5Zt9iAABIxdxdh4gPqNkUGKIrUMd6I3cPIsfKozI513sy \
  some-machine

Using environment variables

$ HETZNER_API_TOKEN=QJhoRT38JfAUO037PWJ5Zt9iAABIxdxdh4gPqNkUGKIrUMd6I3cPIsfKozI513sy \
  && HETZNER_IMAGE=centos-7 \
  && docker-machine create \
     --driver hetzner \
     some-machine

Dealing with kernels without aufs

If you use an image without aufs, like the one currently supplied with the debian-9 image, you can try specifying another storage driver, such as overlay2. Like so:

$ docker-machine create \
  --engine-storage-driver overlay2 \
  --driver hetzner \
  --hetzner-image debian-9 \
  --hetzner-api-token=QJhoRT38JfAUO037PWJ5Zt9iAABIxdxdh4gPqNkUGKIrUMd6I3cPIsfKozI513sy \
  some-machine

Using Cloud-init

$ CLOUD_INIT_USER_DATA=`cat <<EOF
#cloud-config
write_files:
  - path: /test.txt
    content: |
      Here is a line.
      Another line is here.
EOF
`

$ docker-machine create \
  --driver hetzner \
  --hetzner-api-token=QJhoRT38JfAUO037PWJ5Zt9iAABIxdxdh4gPqNkUGKIrUMd6I3cPIsfKozI513sy \
  --hetzner-user-data="${CLOUD_INIT_USER_DATA}" \
  some-machine

Using a snapshot

Assuming your snapshot ID is 424242:

$ docker-machine create \
  --driver hetzner \
  --hetzner-api-token=QJhoRT38JfAUO037PWJ5Zt9iAABIxdxdh4gPqNkUGKIrUMd6I3cPIsfKozI513sy \
  --hetzner-image-id=424242 \
  some-machine

Options

  • --hetzner-api-token: required. Your project-specific access token for the Hetzner Cloud API.
  • --hetzner-image: The name (or ID) of the Hetzner Cloud image to use, see Images API for how to get a list (currently defaults to ubuntu-20.04). Explicitly specifying an image is strongly recommended and will be required from v6 onwards.
  • --hetzner-image-arch: The architecture to use during image lookup, inferred from the server type if not explicitly given.
  • --hetzner-image-id: The id of the Hetzner cloud image (or snapshot) to use, see Images API for how to get a list (mutually excludes --hetzner-image).
  • --hetzner-server-type: The type of the Hetzner Cloud server, see Server Types API for how to get a list (defaults to cx11).
  • --hetzner-server-location: The location to create the server in, see Locations API for how to get a list.
  • --hetzner-existing-key-path: Use an existing (local) SSH key instead of generating a new keypair. If a remote key with a matching fingerprint exists, it will be used as if specified using --hetzner-existing-key-id, rather than uploading a new key.
  • --hetzner-existing-key-id: requires --hetzner-existing-key-path. Use an existing (remote) SSH key instead of uploading the imported key pair, see SSH Keys API for how to get a list
  • --hetzner-additional-key: Upload an additional public key associated with the server, or associate an existing one with the same fingerprint. Can be specified multiple times.
  • --hetzner-user-data: Cloud-init based data, passed inline as-is.
  • --hetzner-user-data-file: Cloud-init based data, read from passed file.
  • --hetzner-user-data-from-file: DEPRECATED, use --hetzner-user-data-file. Read --hetzner-user-data as file name and use contents as user-data.
  • --hetzner-volumes: Volume IDs or names which should be attached to the server
  • --hetzner-networks: Network IDs or names which should be attached to the server private network interface
  • --hetzner-use-private-network: Use private network
  • --hetzner-firewalls: Firewall IDs or names which should be applied on the server
  • --hetzner-server-label: key=value pairs of additional metadata to assign to the server.
  • --hetzner-key-label: key=value pairs of additional metadata to assign to SSH key (only applies if newly created).
  • --hetzner-placement-group: Add to a placement group by name or ID; a spread-group will be created on demand if it does not exist
  • --hetzner-auto-spread: Add to a docker-machine provided spread group (mutually exclusive with --hetzner-placement-group)
  • --hetzner-ssh-user: Change the default SSH-User
  • --hetzner-ssh-port: Change the default SSH-Port
  • --hetzner-primary-ipv4/6: Sets an existing primary IP (v4 or v6 respectively) for the server, as documented in Networking
  • --hetzner-wait-on-error: Amount of seconds to wait on server creation failure (0/no wait by default)
  • --hetzner-wait-on-polling: Amount of seconds to wait between requests when waiting for some state to change. (Default: 1 second)
  • --hetzner-wait-for-running-timeout: Max amount of seconds to wait until a machine is running. (Default: 0/no timeout)

Please beware, that for options referring to entities by name, such as server locations and types, the names used by the API may differ from the ones shown in the server creation UI. If server creation fails due to a failure to resolve such issues, try another variant of the name (e.g. lowercase, kebab-case). As of writing, server types use lowercase (i.e. cx21 instead of CX21) and locations use a three-letter abbreviation suffixed by 1 (i.e. fsn1 instead of Falkenstein).

Image selection

When --hetzner-image-id is passed, it will be used for lookup by ID as-is. No additional validation is performed, and it is mutually exclusive with other --hetzner-image*-flags.

When --hetzner-image is passed, lookup will happen either by name or by ID as per Hetzner-supplied logic. The lookup mechanism will filter by image architecture, which is usually inferred from the server type. One may explicitly specify it using --hetzner-image-arch in which case the user supplied value will take precedence.

While there is currently a default image as fallback, this behaviour will be removed in a future version. Explicitly specifying an operating system image is strongly recommended for new deployments, and will be mandatory in upcoming versions.

Existing SSH keys

When you specify the --hetzner-existing-key-path option, the driver will attempt to copy (specified file name) and (specified file name).pub to the machine's store path. They public key file's permissions will be set according to your current umask and the private key file will have 600 permissions.

When you additionally specify the --hetzner-existing-key-id option, the driver will not create an SSH key using the API but rather try to use the existing public key corresponding to the given id. Please note that during machine creation, the driver will attempt to get the key and compare it's fingerprint to the local public key's fingerprtint. Keep in mind that the both the local and the remote key must be accessible and have matching fingerprints, otherwise the machine will fail it's pre-creation checks.

Also note that the driver will attempt to delete the linked key during machine removal, unless --hetzner-existing-key-id was used during creation.

Environment variables and default values

CLI option Environment variable Default
--hetzner-api-token HETZNER_API_TOKEN
--hetzner-image HETZNER_IMAGE ubuntu-20.04 as fallback
--hetzner-image-arch HETZNER_IMAGE_ARCH (infer from server)
--hetzner-image-id HETZNER_IMAGE_ID
--hetzner-server-type HETZNER_TYPE cx11
--hetzner-server-location HETZNER_LOCATION (let Hetzner choose)
--hetzner-existing-key-path HETZNER_EXISTING_KEY_PATH (generate new keypair)
--hetzner-existing-key-id HETZNER_EXISTING_KEY_ID 0 (upload new key)
--hetzner-additional-key HETZNER_ADDITIONAL_KEYS
--hetzner-user-data HETZNER_USER_DATA
--hetzner-user-data-file HETZNER_USER_DATA_FILE
--hetzner-networks HETZNER_NETWORKS
--hetzner-firewalls HETZNER_FIREWALLS
--hetzner-volumes HETZNER_VOLUMES
--hetzner-use-private-network HETZNER_USE_PRIVATE_NETWORK false
--hetzner-disable-public-ipv4 HETZNER_DISABLE_PUBLIC_IPV4 false
--hetzner-disable-public-ipv6 HETZNER_DISABLE_PUBLIC_IPV6 false
--hetzner-disable-public HETZNER_DISABLE_PUBLIC false
--hetzner-server-label (inoperative) []
--hetzner-key-label (inoperative) []
--hetzner-placement-group HETZNER_PLACEMENT_GROUP
--hetzner-auto-spread HETZNER_AUTO_SPREAD false
--hetzner-ssh-user HETZNER_SSH_USER root
--hetzner-ssh-port HETZNER_SSH_PORT 22
--hetzner-primary-ipv4 HETZNER_PRIMARY_IPV4
--hetzner-primary-ipv6 HETZNER_PRIMARY_IPV6
--hetzner-wait-on-error HETZNER_WAIT_ON_ERROR 0
--hetzner-wait-on-polling HETZNER_WAIT_ON_POLLING 1
--hetzner-wait-for-running-timeout HETZNER_WAIT_FOR_RUNNING_TIMEOUT 0

Networking

Given --hetzner-primary-ipv4 or --hetzner-primary-ipv6, the driver attempts to set up machine creation with an existing primary IP as follows: If the passed argument parses to a valid IP address, the primary IP is resolved via address. Otherwise, it is resolved in the default Hetzner Cloud API way (i.e. via ID and name as a fallback).

No address family validation is performed, so when specifying an IP address it is the user's responsibility to pass the appropriate type. This also applies to any given preconditions regarding the state of the address being attached.

If no existing primary IPs are specified and public address creation is not disabled for a given address family, a new primary IP will be auto-generated by default. Primary IPs created in that fashion will exhibit whatever default behavior Hetzner assigns them at the given time, so users should take care what retention flags etc. are being set.

When disabling all public IPs, --hetzner-use-private-network must be given. --hetzner-disable-public will take care of that, and behaves as if --hetzner-disable-public-ipv4 --hetzner-disable-public-ipv6 --hetzner-use-private-network were given. Using --hetzner-use-private-network implicitly or explicitly requires at least one --hetzner-network to be given.

Building from source

Use an up-to-date version of Go to use Go Modules.

To use the driver, you can download the sources and build it locally:

# Enable Go Modules if you are not outside of your $GOPATH
$ export GO111MODULE=on

# Get sources and build the binary at ~/go/bin/docker-machine-driver-hetzner
$ go get github.com/jonasprogrammer/docker-machine-driver-hetzner

# Make the binary accessible to docker-machine
$ export GOPATH=$(go env GOPATH)
$ export GOBIN=$GOPATH/bin
$ export PATH="$PATH:$GOBIN"
$ cd $GOPATH/src/jonasprogrammer/docker-machine-driver-hetzner
$ go build -o docker-machine-driver-hetzner
$ cp docker-machine-driver-hetzner /usr/local/bin/docker-machine-driver-hetzner

Development

Fork this repository, yielding github.com/<yourAccount>/docker-machine-driver-hetzner.

# Get the sources of your fork and build it locally
$ go get github.com/<yourAccount>/docker-machine-driver-hetzner

# * This integrates your fork into the $GOPATH (typically pointing at ~/go)
# * Your sources are at $GOPATH/src/github.com/<yourAccount>/docker-machine-driver-hetzner
# * That folder is a local Git repository. You can pull, commit and push from there.
# * The binary will typically be at $GOPATH/bin/docker-machine-driver-hetzner
# * In the source directory $GOPATH/src/github.com/<yourAccount>/docker-machine-driver-hetzner
#   you may use go get to re-build the binary.
# * Note: when you build the driver from different repositories, e.g. from your fork
#   as well as github.com/jonasprogrammer/docker-machine-driver-hetzner,
#   the binary files generated by these builds are all called the same
#   and will hence override each other.

# Make the binary accessible to docker-machine
$ export GOPATH=$(go env GOPATH)
$ export GOBIN=$GOPATH/bin
$ export PATH="$PATH:$GOBIN"

# Make docker-machine output help including hetzner-specific options
$ docker-machine create --driver hetzner

Upcoming breaking changes

4.0.0

  • check log output for BREAKING-V6 (previously BREAKING-V5)
  • --hetzner-user-data-from-file will be fully deprecated and its flag description will only read 'DEPRECATED, legacy'; current fallback behaviour will be retained. --hetzner-flag-user-data-file should be used instead.
  • --hetzner-disable-public-4/--hetzner-disable-public-6 will be fully deprecated and its flag description will only read 'DEPRECATED, legacy'; current fallback behaviour will be retained. --hetzner-disable-public-ipv4/--hetzner-disable-public-ipv6 should be used instead.

5.0.0

  • major update due to #108 (hetznercloud/hcloud-go#263)
  • new hcloud-go v2 requiring int64 IDs is used for interaction with Hetzner cloud
  • old configs should be forward-compatible
  • newly created machines may now use 64-bit integers in all stored and transmitted data, potentially breaking existing tools supporting 32-bit only
    • this includes anything interacting with the flags CLI via RPC, as mcnflags lacks an int64 flag type, so StringFlag and parsing are used now
  • previous changes were moved one version (i.e. 5 -> 6, 6 -> 7)

6.0.0

  • moved from 5.0.0
  • --hetzner-user-data-from-file will be removed entirely, including its fallback behavior
  • --hetzner-disable-public-4/--hetzner-disable-public-6 ill be removed entirely, including their fallback behavior
  • not specifying --hetzner-image will generate a warning stating 'use of default image is DEPRECATED'

7.0.0

  • moved from 6.0.0
  • specifying --hetzner-image will be mandatory, and a default image will no longer be provided

docker-machine-driver-hetzner's People

Contributors

cardridge avatar cedricziel avatar fnkr avatar frankier avatar inakimalerba avatar jankoppe avatar jonasprogrammer avatar lkaemmerling avatar mhutter avatar monochromata avatar mookie- avatar mxschmitt avatar negashev avatar patschi avatar perlun avatar ptr1120 avatar ravenpride avatar simonostendorf avatar solidnerd avatar thorstenheck avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

docker-machine-driver-hetzner's Issues

Rancher not seeing errors during provisioning

Hi, i don't know if this is a problem in rancher or in the machine-driver:
Today i specified wrong node names in rancher (including "_").
I got this error message in the Rancher Logs:

2021/12/25 07:20:52 [ERROR] error syncing 'c-t6qzt/m-2n74l': handler node-controller: Error creating machine: Invalid hostname specified. Allowed hostname chars are: 0-9a-zA-Z . -, requeuing

But rancher did not stop but re-tried endlessly without giving any error message. It was just waiting forever in the UI.
(i was using Version 3.3.0 of the machine driver)

Now that i know, i will always look in the logs when it takes too long, but maybe it is worth looking into it?

[Question] Cluster autoscaling

Hi Jonas,
thanks for your work with this node driver, is has been working great for the last two weeks in our environment.
But we have been asking ourselves if there is any possibility to have autoscaling like the example with the autoscaler from the kubernetes repo.

https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/cloudprovider/hetzner/examples/cluster-autoscaler-run-on-master.yaml

On the example it sets the nodes type pools with the command --nodes=1:10:CPX11:FSN1:pool1 but I don't know if this would work with this node driver. Maybe I'm a little bit lost here though.

Best regards

CLI option to determine version of driver binary

Recent update led me to try identifying the specific version of the binary.
However, executing docker-machine-driver-hetzner -v or similar just resulted in a notice that this plugin binary is not meant to be executed directly.

It would be nice if the CLI options -v or --version would return the current version of the binary or at least if it would be included into the mentioned notice text.

Or maybe there is another way to determine the version of the plugin via docker-machine? docker-machine create --driver hetzner --help also did not include the version.

Error starting plugin binary

I get the following error using docker-machine v0.15.0: Error starting plugin binary: fork/exec /usr/local/bin/docker-machine-driver-hetzner: exec format error

Is there any known issues with these versions?

Error in driver during machine creation

Problem
Use docker-machine create with the driver to create a server in Hetzner, optionally specifying a server location from the Hetzner API.

Expected Behaviour
A ssh key is added to the account related with the api token. A machine is created. The machine can be seen from the Hetzner Console and used.

Actual Behaviour
A ssh key is added to the account related with the api token. An unknown error is reported by docker-machine driver. The ssh key is deleted from the account.

# docker-machine create --driver hetzner --hetzner-api-token=<token> --hetzner-server-location hel1 lala
Running pre-create checks...
Creating machine...
(lala) Creating SSH key...
(lala) Creating Hetzner server...
(lala)  -> Creating server lala[3146171] in create_server[28211794]
Error creating machine: Error in driver during machine creation: could not wait for action: Creating server failed because of an unknown error. (unknown_error)

Docker Version

# docker version
Client:
 Version:           18.09.7
 API version:       1.39
 Go version:        go1.10.1
 Git commit:        2d0083d
 Built:             Wed Jul  3 12:13:59 2019
 OS/Arch:           linux/amd64
 Experimental:      false

Server:
 Engine:
  Version:          18.09.7
  API version:      1.39 (minimum version 1.12)
  Go version:       go1.10.1
  Git commit:       2d0083d
  Built:            Mon Jul  1 19:31:12 2019
  OS/Arch:          linux/amd64
  Experimental:     false

Docker Machine

# docker-machine version
docker-machine version 0.16.0, build 702c267f

I've used this driver in the past, both with docker-machine and using Rancher 2.x, so I know it worked in the past. I've tested the aforementioned on an Ubuntu 18.04 and MacOS 10.14.6, both with the same error. Perhaps there are some breaking changes in the Hetzner API?

Error creating machine: Error running provisioning: Unable to verify the Docker daemon is listening

Hi all

I have been using this library for a couple of weeks now and did not face any issues.

Since this morning, I run into the following error:

ERROR: Error creating machine: Error running provisioning: Unable to verify the Docker daemon is listening: Maximum number of retries (10) exceeded  driver=hetzner name=runner-xxx-xxx operation=create

Here the full log:

listen_address not defined, metrics & debug endpoints disabled  builds=0
[session_server].listen_address not defined, session endpoints disabled  builds=0
Checking for jobs... received                       job=899405106 repo_url=https://gitlab.com/...git runner=u_RKHSRB
Creating CA: /root/.docker/machine/certs/ca.pem     driver=hetzner name=runner-xxx-xxx operation=create
Creating client certificate: /root/.docker/machine/certs/cert.pem  driver=hetzner name=runner-xxx-xxx operation=create
Running pre-create checks...                        driver=hetzner name=runner-xxx-xxx operation=create
Creating machine...                                 driver=hetzner name=runner-xxx-xxx operation=create
(runner-xxx-xxx)                                    Creating SSH key...  driver=hetzner name=runner-xxx-xxx operation=create
(runner-xxx-xxx)                                    SSH key not found in Hetzner. Uploading...  driver=hetzner name=runner-xxx-xxx operation=create
(runner-xxx-xxx)                                    Creating Hetzner server...  driver=hetzner name=runner-xxx-xxx operation=create
(runner-xxx-xxx)                                     -> Creating server runner-xxx-xxx[x] in create_server[121954711]  driver=hetzner name=runner-xxx-xxx operation=create
(runner-xxx-xxx)                                     -> Server runner-xxx-xxx[x]: Waiting to come up...  driver=hetzner name=runner-xxx-xxx operation=create
(runner-xxx-xxx)                                    Using public network ...  driver=hetzner name=runner-xxx-xxx operation=create
(runner-xxx-xxx)                                     -> Server runner-xxx-xxx[x] ready. Ip x.x.x.x  driver=hetzner name=runner-xxx-xxx operation=create
Waiting for machine to be running, this may take a few minutes...  driver=hetzner name=runner-xxx-xxx operation=create
Detecting operating system of created instance...   driver=hetzner name=runner-xxx-xxx operation=create
Waiting for SSH to be available...                  driver=hetzner name=runner-xxx-xxx operation=create
Detecting the provisioner...                        driver=hetzner name=runner-xxx-xxx operation=create
Provisioning with ubuntu(systemd)...                driver=hetzner name=runner-xxx-xxx operation=create
Installing Docker...                                driver=hetzner name=runner-xxx-xxx operation=create
Copying certs to the local machine directory...     driver=hetzner name=runner-xxx-xxx operation=create
Copying certs to the remote machine...              driver=hetzner name=runner-xxx-xxx operation=create
Setting Docker configuration on the remote daemon...  driver=hetzner name=runner-xxx-xxx operation=create
ERROR: Error creating machine: Error running provisioning: Unable to verify the Docker daemon is listening: Maximum number of retries (10) exceeded  driver=hetzner name=runner-xxx-xxx operation=create
WARNING: Machine creation failed, trying to provision  error=exit status 1 name=runner-xxx-xxx
Waiting for SSH to be available...                  name=runner-xxx-xxx operation=provision
Detecting the provisioner...                        name=runner-xxx-xxx operation=provision
Installing Docker...                                name=runner-xxx-xxx operation=provision
Copying certs to the local machine directory...     name=runner-xxx-xxx operation=provision
Copying certs to the remote machine...              name=runner-xxx-xxx operation=provision

Anyone has any clues what I could try?

Edit: Found this related issue: docker/machine#4858 (comment).

Set networks and serverLabels as public fields

Hi there,

A couple of issues in the terraform-rancher2-provider would be able to move forward if the following fields where marked as public so that they can be marshalled/unmarshalled:

If there aren't any reason for the other fields to be private I would also suggest exporting:

  • userData
  • volumes
  • firewalls
  • additionalKeys

Happy to submit a PR if you agree with the intent here.

Thanks,

Jun

Creating multiple machines with the same SSH key

Hello,

I'm trying to create multiple machines with the same SSH Key. The first machine is created successfully, but the creation fails for the next machines with the following error:

Error creating machine: Error in driver during machine creation: could not create ssh key: SSH key with the same fingerprint already exists (uniqueness_error)

How to reproduce

I have an already existent SSH keypair: /home/am/.ssh/id_rsa and /home/am/.ssh/id_rsa.pub.

I create the first machine with docker-machine create --driver hetzner --hetzner-api-token $MY_TOKEN --hetzner-existing-key-path /home/am/.ssh/id_rsa machine1. The machine is created successfully.

I try to create the second machine with docker-machine create --driver hetzner --hetzner-api-token $MY_TOKEN --hetzner-existing-key-path /home/am/.ssh/id_rsa machine2. The creation fails

Detailed log: machine.log

Issues with node creation

Setup: Rancher 2.4.5 with Hetzner Machine driver 1.x (cant remember the exact version)

I can't remember the exact flow, but somehow this is the story:

  • A node failed. Deleted it on Rancher. On reprovisioning the hostname was already taken *uniqueness_error
  • Hetzner had an issue with machines deployment in Nuremberg datacenter
  • I changed the machine driver to 3.0.0
  • Changed the template to use Falkenstein
  • Reprovisioning failed with SSH key name is already used (uniqueness_error)
  • Created complete new template
  • Created a second pool with new template
  • Getting Error setting machine configuration from flags provided: --hetzner-image and --hetzner-image-id are mutually exclusive; Timeout waiting for ssh key
  • Tried to change the template via API - regardless what I change via API it stays the same and shows completely different stuff then on UI ( UI Ubuntu 18.04 - API Ubuntu 16.04 and ID set)
  • Downgraded to https://github.com/JonasProgrammer/docker-machine-driver-hetzner/releases/download/2.1.0/docker-machine-driver-hetzner_2.1.0_linux_amd64.tar.gz
  • Same issues stay

Questions:

  • Is the different machine driver used at all?
  • How to fix the issues ? :-)

Thanks.

Provide binary as releases

Hi,
first of all, I would like to thank you for creating this project. 👍
It would be super cool, if you could provide the binary with the machine driver as releases, so that it can be downloaded directly. (maybe via travis-ci?)
That's because e.g. Rancher can add custom docker machine drivers via a download URL.
Other drivers for references are e.g. ecl or scaleway.
In the meanwhile (finished), I'm creating the UI part for the 100% compatibilty in Rancher here.
If you need any help for setting up travis-ci, I can help you. :)
Best regards
Max

External dns issue

Hi there,

We had a rancher single deploy 2.4.5 cluster on Hetzner all ubuntu 18.04 servers & using v 2.0.1 of this driver, & working fine!

We updated to ubuntu 20.04 & rancher 2.5.7 (also2.5.8) & docker-machine-driver-hetzner 3.2.0; with this setup external-dns is no able to update external DNS in cloudflare anymore!.

This same new setup (rancher 2.5.8/ubuntu 20.04 ), but with old docker-machine-driver-hetzner version 2.0.1 works!

Many Thanks !

Using ID to define hetzner image

Hi, many thanks for the driver!

I want to provision a new server with an snapshot image instead of a system image. You could create a custom image than (I tried CoreOS) and use it as the basis for other servers.

The problem: snapshot images are listed by the API, but don't have a name (it's null) and can't be used with docker-machine. Is it possible to use the ID of an image instead of just the name? Maybe some new option --hetzner-image-id xyz?

SSH Keys are not deleted during machine removal

Hey,
we recently moved our GitLab runner to Hetzner and are really happy with the result. Thanks a lot for implementing this driver!
Yesterday we noticed a big list of SSH Keys in the Hetzner cloud console. While this should hopefully not cause any problems, it would be nice to automatically clean the obsolete SSH keys from time to time.

I saw that the README contains the following sentence:

Also note that the driver will attempt to delete the linked key during machine removal, unless --hetzner-existing-key-id was used during creation.

Unfortunately, it looks like this is not the case for us. Is there any additional configuration we need to add?

We are using version 3.1.0 of the driver with the following options:

      "hetzner-api-token=TOKEN",
      "hetzner-image=ubuntu-20.04",
      "hetzner-server-type=cx21",
      "hetzner-server-location=fsn1",
      # docker-machine is not compatible with docker 20.10 yet
      # https://gitlab.com/gitlab-org/ci-cd/docker-machine/-/issues/41
      "engine-install-url=https://releases.rancher.com/install-docker/19.03.9.sh"

Thanks a lot in advance!

How to make it work on mac?

Before anything, thank you for your amazing work! This library may be so useful for some of us.

I would love to use it but in the compiled binaries i dont see any distribution for MAC, its probably one of them but i don't seem to know which one. How can i make it work for apple's ecosystem?

Thank you in advance guys!

[Proposal] Add argument/option to set hetzner cloud labels on servers

Hi,

I‘m using this great driver with rancher, to create k8s clusters, that are behind a load balancer. The load balancer finds the servers either by name or even better, by tags. To automatically have newly created instances assigned to the load balancer, I would need a way, to have those tags be created by the docker-machine driver, I propose the —hetzner-label option, that could be specified multiple times, like this

—hetzner-label “cluster=staging” —hetzner-label “tier=nvme”

thanks for the great work. This driver really made our k8s cluster deployments a lot easier.

Choose another default image

  • Currently, the default image does not work (in all cases): #8
  • Maybe use ubuntu-16.04 by default because it has been reported to work and is similar to Debian.
  • Also document the default values for the command-line options in README.md right in the line that contains the option, not after the list of options.

[Feature] Allow defining labels for auto-created SSH Keys

This driver will create new SSH keys in the cloud project. Currently it's not possible to define any labels for these keys though. This is possible for servers (#56).

I would like to be able to use e.g. the config option --hetzner-key-label to define the list of labels, similar to --hetzner-server-label.

If you want, I could work on this and contribute that option, a quick glance at the code suggests that it should not be too difficult.

Code reference:

keyopts := hcloud.SSHKeyCreateOpts{

Driver not available after Rancher Upgrade

Hi All,

i have updated my single Docker Rancher to v2.6.5 and kubernetes to v1.23.6, and installed the latest docker-machine-driver-hetzner v3.7.1. Since then I get the following error message when creating a new Worker Node:

2022/05/18 09:37:58 [INFO] Creating jail for c-pg68m
2022/05/18 09:37:58 [INFO] Provisioning node dev-worker3
2022/05/18 09:37:58 [INFO] Generating and uploading node config k8s-dev-worker3
2022/05/18 09:38:13 [ERROR] error syncing 'c-pg68m/m-n5b6m': handler node-controller: Driver "hetzner" not found. Do you have the plugin binary "docker-machine-driver-hetzner" accessible in your PATH?, requeuing

regards
Sascha

Provisioning fails with debian-9 image (the default image)

First of all thanks for the work you have done.

I tried to use it on macOS (Docker Machine version 0.13.0) but it fails when provisioning a cloud server:

docker-machine create   --driver hetzner   --hetzner-api-token=<token>   test
Running pre-create checks...
Creating machine...
(test) Creating SSH key...
(test) Creating Hetzner server...
(test)  -> Creating server test[503661] in create_server[81420]
(test)  -> Server test[503661]: Waiting to come up...
Waiting for machine to be running, this may take a few minutes...
Detecting operating system of created instance...
Waiting for SSH to be available...
Detecting the provisioner...
Provisioning with debian...
Error creating machine: Error running provisioning: ssh command error:
command : if ! type sudo; then apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y sudo; fi
err     : exit status 100
output  : bash: line 0: type: sudo: not found
Ign:1 http://mirror.hetzner.de/debian/packages stretch InRelease
Get:2 http://mirror.hetzner.de/debian/packages stretch-updates InRelease [91.0 kB]
Ign:3 http://deb.debian.org/debian stretch InRelease
Get:4 http://deb.debian.org/debian stretch-updates InRelease [91.0 kB]
Get:5 http://mirror.hetzner.de/debian/packages stretch-backports InRelease [91.8 kB]
Get:6 http://mirror.hetzner.de/debian/security stretch/updates InRelease [63.0 kB]
Get:7 http://security.debian.org stretch/updates InRelease [63.0 kB]
Hit:8 http://mirror.hetzner.de/debian/packages stretch Release
Get:9 http://deb.debian.org/debian stretch-backports InRelease [91.8 kB]
Hit:10 http://deb.debian.org/debian stretch Release
Get:11 http://mirror.hetzner.de/debian/packages stretch-updates/main amd64 Packages [7,688 B]
Get:12 http://mirror.hetzner.de/debian/packages stretch-updates/main Translation-en [5,096 B]
Ign:13 http://mirror.hetzner.de/debian/packages stretch-backports/main amd64 Packages
Ign:14 http://mirror.hetzner.de/debian/packages stretch-backports/main Translation-en
Ign:15 http://mirror.hetzner.de/debian/packages stretch-backports/contrib amd64 Packages
Ign:16 http://mirror.hetzner.de/debian/packages stretch-backports/contrib Translation-en
Ign:17 http://mirror.hetzner.de/debian/packages stretch-backports/non-free amd64 Packages
Ign:18 http://mirror.hetzner.de/debian/packages stretch-backports/non-free Translation-en
Get:13 http://mirror.hetzner.de/debian/packages stretch-backports/main amd64 Packages [260 kB]
Get:14 http://mirror.hetzner.de/debian/packages stretch-backports/main Translation-en [182 kB]
Get:15 http://mirror.hetzner.de/debian/packages stretch-backports/contrib amd64 Packages [5,752 B]
Get:16 http://mirror.hetzner.de/debian/packages stretch-backports/contrib Translation-en [4,336 B]
Get:17 http://mirror.hetzner.de/debian/packages stretch-backports/non-free amd64 Packages [17.8 kB]
Get:18 http://mirror.hetzner.de/debian/packages stretch-backports/non-free Translation-en [23.8 kB]
Get:19 http://mirror.hetzner.de/debian/security stretch/updates/main amd64 Packages [269 kB]
Get:20 http://mirror.hetzner.de/debian/security stretch/updates/main Translation-en [118 kB]
Get:21 http://mirror.hetzner.de/debian/security stretch/updates/contrib amd64 Packages [1,352 B]
Get:22 http://deb.debian.org/debian stretch-updates/main amd64 Packages [7,688 B]
Get:23 http://deb.debian.org/debian stretch-updates/main Translation-en [5,096 B]
Get:25 http://deb.debian.org/debian stretch-backports/main amd64 Packages [260 kB]
Get:26 http://deb.debian.org/debian stretch-backports/main Translation-en [182 kB]
Get:27 http://deb.debian.org/debian stretch-backports/contrib amd64 Packages [5,752 B]
Get:28 http://deb.debian.org/debian stretch-backports/contrib Translation-en [4,336 B]
Get:30 http://security.debian.org stretch/updates/main amd64 Packages [269 kB]
Get:31 http://security.debian.org stretch/updates/main Translation-en [118 kB]
Get:32 http://security.debian.org stretch/updates/contrib amd64 Packages [1,352 B]
Fetched 2,239 kB in 2s (866 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following NEW packages will be installed:
  sudo
0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 1,055 kB of archives.
After this operation, 3,108 kB of additional disk space will be used.
Get:1 http://deb.debian.org/debian stretch/main amd64 sudo amd64 1.8.19p1-2.1 [1,055 kB]
Fetched 1,055 kB in 0s (11.4 MB/s)
Selecting previously unselected package sudo.
(Reading database ... 27470 files and directories currently installed.)
Preparing to unpack .../sudo_1.8.19p1-2.1_amd64.deb ...
Unpacking sudo (1.8.19p1-2.1) ...
Setting up sudo (1.8.19p1-2.1) ...

Configuration file '/etc/sudoers'
 ==> File on system created by you or by a script.
 ==> File also in package provided by package maintainer.
   What would you like to do about it ?  Your options are:
    Y or I  : install the package maintainer's version
    N or O  : keep your currently-installed version
      D     : show the differences between the versions
      Z     : start a shell to examine the situation
 The default action is to keep your current version.
*** sudoers (Y/I/N/O/D/Z) [default=N] ? dpkg: error processing package sudo (--configure):
 end of file on stdin at conffile prompt
Processing triggers for systemd (232-25+deb9u1) ...
Processing triggers for man-db (2.7.6.1-2) ...
Errors were encountered while processing:
 sudo
E: Sub-process /usr/bin/dpkg returned an error code (1)

[suggestion] multiple networks

It would be good if you can assing multiple network to a machine and docker machine can use the first network from the list

Server not found after recreating docker machine from Hetzner snapshot

Hi,
I created machine snapshot using Hetzner cloud console. Then I deleted the machine and recreated it from snapshot. The IP did not change. Still I receive:

MacBook-Pro:platform slava$ docker-machine --debug ssh platform
Docker Machine Version:  0.16.2, build bd45ab13
Found binary path at /usr/local/bin/docker-machine-driver-hetzner
Launching plugin server for driver hetzner
Plugin server listening at address 127.0.0.1:49804
() Calling .GetVersion
Using API Version  1
() Calling .SetConfigRaw
() Calling .GetMachineName
(platforma) Calling .GetState
server not found

Could you please advise how to fix the issue? I can login the server and can verify that docker is running and all containers are started.

Nodes aren't started

I've provisioned a cluster with Rancher 2.5.8 and the latest node driver 3.3.1 and the servers were created in the Hetzner Cloud console, but not started. I waited for about 20 minutes, but nothing happened - Rancher patiently waited for the created nodes to become available. Once I started the servers manually from the Hetzner Cloud console, the cluster installation proceeded and everything seems to work now.
Perhaps there is some configuration option that servers are always created as inactive by default?

Rancher node driver issue

Hello,

When I provision a node on Rancher, I get this error

Error setting machine configuration from flags provided: --hetzner-image and --hetzner-image-id are mutually exclusive; Timeout waiting for ssh key
--

What you think is wrong here?

I set Download URL as https://github.com/JonasProgrammer/docker-machine-driver-hetzner/releases/download/2.0.1/docker-machine-driver-hetzner_2.0.1_linux_amd64.tar.gz and custom UI URL to https://storage.googleapis.com/hcloud-rancher-v2-ui-driver/component.js

Creating clusters fails

I'm having issues provisioning RKE clusters (always fails at installing docker),
[ERROR] error syncing 'c-wdlz9/m-h9dsx': handler node-controller: Error creating machine: Error installing Docker: , requeuing
I've tried ubuntu 18 and 20, debian, fedora with the same outcome.
I've also tried it on digital ocean and all works fine.

My note driver and template are

  active            = true
  builtin           = false
  name              = "Hetzner TF"
  ui_url            = "https://storage.googleapis.com/hcloud-rancher-v2-ui-driver/component.js"
  url               = "https://github.com/JonasProgrammer/docker-machine-driver-hetzner/releases/download/3.5.0/docker-machine-driver-hetzner_3.5.0_linux_amd64.tar.gz"
  whitelist_domains = ["storage.googleapis.com"]
}

resource "rancher2_node_template" "hc_node_template" {
  name      = "hc-node-template"
  driver_id = rancher2_node_driver.hetzner_node_driver.id
  hetzner_config {
    api_token       = var.hcloud_token
    image           = "ubuntu-18.04"
    server_location = "nbg1"
    server_type     = "cpx21"
    # cloudinit       = ""
    use_private_network = false
  }
}


And also not able to provision RKE2 clusters - since it asks for a cloud credential - which it never saves so cannot proceed.
Should I provide screenshots or a recording (is that an issue just on my end perhaps?

Trying to add cluster I get this
image

And after adding anything in there, it doesn't save and I get this
image

And the box says "Sorry, no matching options"

Error thrown during docker daemon configuration

When using the minimal option set (only hetzner api token) then I get this error:

Error creating machine: Error running provisioning: Unable to verify the Docker daemon is listening: Maximum number of retries (10) exceeded

For some reason the docker daemon is startet with tcp://0.0.0.0:2376 but not listed as listening interface for the netstat check.

Build / install section in README

Thanks for creating this driver! That's what I'm looking for! Alas, I'm not used to Go development. Could you add instructions on how to build / install it to the README? Thanks!

Using environment variables for setting Networks and Volumes

At the moment I'm working on a project that builds a docker image providing an auto-scaling gitlab-runner connected to docker-machine and your driver for Hetzner Cloud. The docker container pulls its settings from environment variables, so I set the variables HETZNER_VOLUMES and HETZNER_NETWORKS to configure bound volumes and connected private networks at Hetzner, but I could not get it working. The variables seem to be ignored.

Is there anything I can do to track the issue down?

Thank you in advance!

Cluster must have at least one etcd plane host

Hello!
I just installed your driver and tried to create a single-node cluster, but I always get an error during provision:
2021-02-25T18:51:29.44371647+01:00 stdout F 2021/02/25 17:51:29 [ERROR] cluster [c-8cdwj] provisioning: Failed to set up SSH tunneling for host [10.0.0.4]: Can't retrieve Docker Info: error during connect: Get "http://%!F(MISSING)var%!F(MISSING)run%!F(MISSING)docker.sock/v1.24/info": can not build dialer to [c-8cdwj:m-mdp99] 2021-02-25T18:51:29.481277514+01:00 stdout F 2021/02/25 17:51:29 [ERROR] cluster [c-8cdwj] provisioning: Removing host [10.0.0.4] from node lists 2021-02-25T18:51:29.523297586+01:00 stdout F 2021/02/25 17:51:29 [ERROR] cluster [c-8cdwj] provisioning: [state] can't fetch legacy cluster state from Kubernetes: Cluster must have at least one etcd plane host: failed to connect to the following etcd host(s) [10.0.0.4]

I´m using Rancher 2.5.5 and the node templates are configured with private network, the private network itself is reachable on the rancher hosts.

best regards

Machine status can not be checked using drivers.MustBeRunning: unexpected EOF

Hi,

first of all: Thank you for your work.

I am getting this error after the machines have been created and docker has already been installed via SSH:

2020/08/21 14:34:46 [INFO] [node-controller-rancher-machine] Installing Docker...
2020/08/21 14:35:21 [INFO] [node-controller-rancher-machine] Copying certs to the local machine directory...
2020/08/21 14:35:24 [INFO] [node-controller-rancher-machine] Copying certs to the remote machine...
2020/08/21 14:38:55 [INFO] [node-controller-rancher-machine] The default lines below are for a sh/bash shell, you can specify the shell you're using, with the --shell flag.
2020/08/21 14:38:55 [INFO] [node-controller-rancher-machine]
2020/08/21 14:38:55 [INFO] Generating and uploading node config master-1
2020/08/21 14:38:55 [ERROR] NodeController c-27sc8/m-njrrn [node-controller] failed with : Error creating machine: Error running provisioning: could not execute drivers.MustBeRunning: could not get server by ID: Get "https://api.hetzner.cloud/v1/servers/7281345": unexpected EOF
2020-08-21 14:39:03.661273 I | mvcc: store.index: compact 2857
2020-08-21 14:39:03.664539 I | mvcc: finished scheduled compaction at 2857 (took 1.6396ms)
Then the machines get destroyed and created again with the same error.

Here some words about my environment:

Rancher version v2.3.5 running with docker run [...] on MacOS.
Used Hetzner machine driver: docker-machine-driver-hetzner_2.1.0_linux_amd64.tar.gz
(I tried using the darwin driver as well but it did not install into Rancher)
Used OS on Hetzner machine: Ubuntu 18.04

I can easily access https://api.hetzner.cloud/v1/servers/7281345 in Postman

Rancher 2.5.1 fails to install driver

On Rancher 2.5.1, installation of the driver with the UI driver by mxschmitt fails with:

[INFO] Download https://github.com/JonasProgrammer/docker-machine-driver-hetzner/releases/download/2.1.0/docker-machine-driver-hetzner_2.1.0_linux_amd64.tar.gz
[ERROR] error syncing 'kd-rqwlc': handler mgmt-kontainer-driver-lifecycle: failed to find driver in archive. There must be a file of form kontainer-engine-driver-*, requeuing

This happens with versions 3.0.0 and 2.1.0 on rancher 2.5.1.

I therefore repackaged the .tar.gz, renaming the file to kontainer-engine-driver-hetzner to check if this was the error.

This downloads and installs the driver correctly, but then outputs:

This is a Docker Machine plugin binary.
Plugin binaries are not intended to be invoked directly.
Please use this plugin through the main 'docker-machine' binary.
(API version: 1)

Afterwards, there is no hetzner provider when using Clusters --> Create cluster.

If I can help with anything further, let me know :)

[Idea/Suggestion] Use private IP with rancher in different network

Hi,

looking at the code and behaviour of the driver I have some suggestions that would in my opinion make it a little bit more user friendly.

What would be the end result?
When deploying a new cluster user can attach private network and select that he wants to use that network for inter-cluster communication (for etcd, controlplane, network overlay etc.). This would mean that in cloud-init user could simply setup firewall so it would allow all traffic on 10.0.0.0/8 and only expose port 22 ,80, 443 and 6443 to the outside world.

When setting up the node rancher would still ssh to the node via public IP.

How?

Based on the docs for Debian/Ubuntu the first private network interface will be attached at ens10, second at ens11 etc. RHEL distributions will use eth1, eth2, ...

When user selects he wants to use private IP this IP should only be used for nodes in that cluster - ssh should still be done via public IP. This would require changing the getSSHHostname to always return public IP - I think, unfortunately I don't have any experience with Go so I could be wrong here.

This should enable rancher to ssh into the machine via public IP and etc/control plane inside the new cluster to use the private IP.

To enforce all internal traffic goes via internal IP in the new Kubernetes cluster (i think this is part of the UI plugin) the cloud.yaml config should
replace

network:
    plugin: "canal"

with:

network:
    plugin: "canal"
    canal_network_provider:
        iface: "ens10"   # Based on the distro and user input? 

Upgrades in place?

Hi,
Thanks for your efforts with docker-machine-driver-hetzner, it's been helpful to me for setting things up on Hetzner.

I was curious about upgrades. Almost 2 years ago we installed version 2.1.0 on a Rancher instance. These days it seems like 3.7.0 is the current release.

IIUC Rancher may support a way to upgrade 'node drivers' in place.
image

Or, I could add v3.7.0 as a new one.
I was wondering what I might expect if I upgrade the plugin in-place, and try to mutate something about an existing VM?
Are releases backwards compatible?

Thank you

Worker nodes stuck at "Waiting to register with Kubernetes"

I created a simple cluster with 1 main and 2 worker nodes. Unfortunately the worker nodes are stucking at "Waiting to register with Kubernetes". The output of the rancher-agent of one of the worker nodes is:

INFO: Arguments: --server https:// --token REDACTED --ca-checksum 3ac1221150508e7c3d116e8682b19be938cceb7247d8b46477010ff10b62cf82 --no-register --only-write-certs --node-name worker1
INFO: Environment: CATTLE_ADDRESS= CATTLE_AGENT_CONNECT=true CATTLE_INTERNAL_ADDRESS= CATTLE_NODE_NAME=worker1 CATTLE_SERVER=https:// CATTLE_TOKEN=REDACTED CATTLE_WRITE_CERT_ONLY=true
INFO: Using resolv.conf: nameserver 127.0.0.53 options edns0 trust-ad
WARN: Loopback address found in /etc/resolv.conf, please refer to the documentation how to configure your cluster to resolve DNS properly
INFO: https:///ping is accessible
INFO: Value from https:///v3/settings/cacerts is an x509 certificate
time="2021-05-17T10:29:28Z" level=info msg="Listening on /tmp/log.sock"
time="2021-05-17T10:29:28Z" level=info msg="Rancher agent version v2.5.8 is starting"
time="2021-05-17T10:29:28Z" level=info msg="Option customConfig=map[address: internalAddress: label:map[] roles:[] taints:[]]"
time="2021-05-17T10:29:28Z" level=info msg="Option etcd=false"
time="2021-05-17T10:29:28Z" level=info msg="Option controlPlane=false"
time="2021-05-17T10:29:28Z" level=info msg="Option worker=false"
time="2021-05-17T10:29:28Z" level=info msg="Option requestedHostname=worker1"
time="2021-05-17T10:29:29Z" level=info msg="Connecting to wss:///v3/connect with token t5ffpvcdkncnwzvdf7r7cftnzwgqxqpsc9k98g2qgzvvnjkdx2xjh8"
time="2021-05-17T10:29:29Z" level=info msg="Connecting to proxy" url="wss:///v3/connect"
time="2021-05-17T10:29:29Z" level=info msg="Starting plan monitor, checking every 120 seconds"
root@worker1:# docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
28fe6de726a8 rancher/rancher-agent:v2.5.8 "run.sh --server htt…" 49 minutes ago Up 48 minutes happy_jones
1c6ccbc45732 rancher/rke-tools:v0.1.74 "nginx-proxy CP_HOST…" 49 minutes ago Up 49 minutes nginx-proxy
2248c1096c23 rancher/hyperkube:v1.20.6-rancher1 "/opt/rke-tools/entr…" 49 minutes ago Up 49 minutes kubelet
57a3a4c34c83 rancher/hyperkube:v1.20.6-rancher1 "/opt/rke-tools/entr…" 49 minutes ago Up 49 minutes kube-proxy
0e81ba8b7ca4 rancher/rancher-agent:v2.5.8 "run.sh -- share-roo…" 49 minutes ago Exited (0) 48 minutes ago share-mnt
a36a0b57a07e rancher/rke-tools:v0.1.74 "/bin/bash" 49 minutes ago Created service-sidekick
4a34c7695dad rancher/rancher-agent:v2.5.8 "run.sh --server htt…" 52 minutes ago Up 52 minutes focused_raman
root@worker1:
# docker logs focused_raman
INFO: Arguments: --server https:// --token REDACTED --ca-checksum 3ac1221150508e7c3d116e8682b19be938cceb7247d8b46477010ff10b62cf82 -r -n m-8fq7t
INFO: Environment: CATTLE_ADDRESS= CATTLE_AGENT_CONNECT=true CATTLE_INTERNAL_ADDRESS= CATTLE_NODE_NAME=m-8fq7t CATTLE_SERVER=https:// CATTLE_TOKEN=REDACTED
INFO: Using resolv.conf: nameserver 127.0.0.53 options edns0 trust-ad
WARN: Loopback address found in /etc/resolv.conf, please refer to the documentation how to configure your cluster to resolve DNS properly
ERROR: https:///ping is not accessible (Empty reply from server)
INFO: Arguments: --server https:// --token REDACTED --ca-checksum 3ac1221150508e7c3d116e8682b19be938cceb7247d8b46477010ff10b62cf82 -r -n m-8fq7t
INFO: Environment: CATTLE_ADDRESS= CATTLE_AGENT_CONNECT=true CATTLE_INTERNAL_ADDRESS= CATTLE_NODE_NAME=m-8fq7t CATTLE_SERVER=https:// CATTLE_TOKEN=REDACTED
INFO: Using resolv.conf: nameserver 127.0.0.53 options edns0 trust-ad
WARN: Loopback address found in /etc/resolv.conf, please refer to the documentation how to configure your cluster to resolve DNS properly
INFO: https:///ping is accessible
INFO: Value from https:///v3/settings/cacerts is an x509 certificate
time="2021-05-17T10:26:23Z" level=info msg="Listening on /tmp/log.sock"
time="2021-05-17T10:26:23Z" level=info msg="Rancher agent version v2.5.8 is starting"
time="2021-05-17T10:26:23Z" level=info msg="Option controlPlane=false"
time="2021-05-17T10:26:23Z" level=info msg="Option worker=false"
time="2021-05-17T10:26:23Z" level=info msg="Option requestedHostname=m-8fq7t"
time="2021-05-17T10:26:23Z" level=info msg="Option customConfig=map[address: internalAddress: label:map[] roles:[] taints:[]]"
time="2021-05-17T10:26:23Z" level=info msg="Option etcd=false"
time="2021-05-17T10:26:23Z" level=info msg="Connecting to wss:///v3/connect with token t5ffpvcdkncnwzvdf7r7cftnzwgqxqpsc9k98g2qgzvvnjkdx2xjh8"
time="2021-05-17T10:26:23Z" level=info msg="Connecting to proxy" url="wss:///v3/connect"
time="2021-05-17T10:26:23Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:25Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:27Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:29Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:31Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:33Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:35Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:37Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:39Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:41Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:43Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:45Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:47Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:49Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:51Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:53Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:55Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:57Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:26:59Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:01Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:03Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:05Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:07Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:09Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:11Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:13Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:15Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:17Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:19Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:21Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:23Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:25Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:27Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:29Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:31Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:33Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:35Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:37Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:39Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:41Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:43Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:45Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:47Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:49Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:51Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:53Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:55Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:57Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:27:59Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:01Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:03Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:05Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:07Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:09Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:11Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:13Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:15Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:17Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:19Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:21Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:23Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:25Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:27Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:29Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:31Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:33Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:35Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:37Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:39Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:41Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:43Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:45Z" level=info msg="Waiting for node to register. Either cluster is not ready for registering or etcd and controlplane node have to be registered first"
time="2021-05-17T10:28:47Z" level=warning msg="Unable to read certificate kube-ca: open /etc/kubernetes/ssl/kube-ca.pem: no such file or directory"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling from rancher/rke-tools","id":"v0.1.74"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"839b45e0263a"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"c3e7563822e1"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"a44649997d87"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"76bb036e92bf"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"99b17e9381e2"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"4288b7e44b29"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"20fd3e40220a"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"06d47d19a46f"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"5ab8526a134c"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"e98300205c46"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"e61edd44f1aa"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"51fabcdcdcd0"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"6222b9343fae"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"e297f2bee945"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"1fbd48cfac1c"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"78678b1b67ae"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"76bb036e92bf"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"99b17e9381e2"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"4288b7e44b29"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"20fd3e40220a"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"06d47d19a46f"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"5ab8526a134c"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"e98300205c46"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"e61edd44f1aa"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"51fabcdcdcd0"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"6222b9343fae"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"e297f2bee945"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"1fbd48cfac1c"}"
time="2021-05-17T10:28:49Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"78678b1b67ae"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Downloading","progressDetail":{"current":29312,"total":2815332},"progress":"[\u003e ] 29.31kB/2.815MB","id":"839b45e0263a"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Downloading","progressDetail":{"current":600,"total":600},"progress":"[==================================================\u003e] 600B/600B","id":"a44649997d87"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"a44649997d87"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"a44649997d87"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Downloading","progressDetail":{"current":68890,"total":6673899},"progress":"[\u003e ] 68.89kB/6.674MB","id":"c3e7563822e1"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"839b45e0263a"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"839b45e0263a"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Extracting","progressDetail":{"current":32768,"total":2815332},"progress":"[\u003e ] 32.77kB/2.815MB","id":"839b45e0263a"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"c3e7563822e1"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"c3e7563822e1"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Extracting","progressDetail":{"current":196608,"total":2815332},"progress":"[===\u003e ] 196.6kB/2.815MB","id":"839b45e0263a"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Extracting","progressDetail":{"current":2719744,"total":2815332},"progress":"[================================================\u003e ] 2.72MB/2.815MB","id":"839b45e0263a"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Extracting","progressDetail":{"current":2815332,"total":2815332},"progress":"[==================================================\u003e] 2.815MB/2.815MB","id":"839b45e0263a"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Extracting","progressDetail":{"current":2815332,"total":2815332},"progress":"[==================================================\u003e] 2.815MB/2.815MB","id":"839b45e0263a"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"839b45e0263a"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Extracting","progressDetail":{"current":98304,"total":6673899},"progress":"[\u003e ] 98.3kB/6.674MB","id":"c3e7563822e1"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Downloading","progressDetail":{"current":609,"total":902},"progress":"[=================================\u003e ] 609B/902B","id":"76bb036e92bf"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Downloading","progressDetail":{"current":902,"total":902},"progress":"[==================================================\u003e] 902B/902B","id":"76bb036e92bf"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"76bb036e92bf"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"76bb036e92bf"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Extracting","progressDetail":{"current":2457600,"total":6673899},"progress":"[==================\u003e ] 2.458MB/6.674MB","id":"c3e7563822e1"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Downloading","progressDetail":{"current":609,"total":666},"progress":"[=============================================\u003e ] 609B/666B","id":"99b17e9381e2"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Downloading","progressDetail":{"current":666,"total":666},"progress":"[==================================================\u003e] 666B/666B","id":"99b17e9381e2"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"99b17e9381e2"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"99b17e9381e2"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Downloading","progressDetail":{"current":6040,"total":585186},"progress":"[\u003e ] 6.04kB/585.2kB","id":"4288b7e44b29"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Downloading","progressDetail":{"current":585186,"total":585186},"progress":"[==================================================\u003e] 585.2kB/585.2kB","id":"4288b7e44b29"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"4288b7e44b29"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"4288b7e44b29"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Extracting","progressDetail":{"current":4915200,"total":6673899},"progress":"[====================================\u003e ] 4.915MB/6.674MB","id":"c3e7563822e1"}"
time="2021-05-17T10:28:50Z" level=info msg="{"status":"Extracting","progressDetail":{"current":6488064,"total":6673899},"progress":"[================================================\u003e ] 6.488MB/6.674MB","id":"c3e7563822e1"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":6673899,"total":6673899},"progress":"[==================================================\u003e] 6.674MB/6.674MB","id":"c3e7563822e1"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":6673899,"total":6673899},"progress":"[==================================================\u003e] 6.674MB/6.674MB","id":"c3e7563822e1"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"c3e7563822e1"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":600,"total":600},"progress":"[==================================================\u003e] 600B/600B","id":"a44649997d87"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":600,"total":600},"progress":"[==================================================\u003e] 600B/600B","id":"a44649997d87"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"a44649997d87"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":902,"total":902},"progress":"[==================================================\u003e] 902B/902B","id":"76bb036e92bf"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":902,"total":902},"progress":"[==================================================\u003e] 902B/902B","id":"76bb036e92bf"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Downloading","progressDetail":{"current":277652,"total":26279391},"progress":"[\u003e ] 277.7kB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Downloading","progressDetail":{"current":160,"total":160},"progress":"[==================================================\u003e] 160B/160B","id":"06d47d19a46f"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"06d47d19a46f"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"06d47d19a46f"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"76bb036e92bf"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":666,"total":666},"progress":"[==================================================\u003e] 666B/666B","id":"99b17e9381e2"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":666,"total":666},"progress":"[==================================================\u003e] 666B/666B","id":"99b17e9381e2"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Downloading","progressDetail":{"current":162964,"total":16194659},"progress":"[\u003e ] 163kB/16.19MB","id":"5ab8526a134c"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Downloading","progressDetail":{"current":8468873,"total":26279391},"progress":"[================\u003e ] 8.469MB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"99b17e9381e2"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":32768,"total":585186},"progress":"[==\u003e ] 32.77kB/585.2kB","id":"4288b7e44b29"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Downloading","progressDetail":{"current":9636235,"total":16194659},"progress":"[=============================\u003e ] 9.636MB/16.19MB","id":"5ab8526a134c"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Downloading","progressDetail":{"current":19757449,"total":26279391},"progress":"[=====================================\u003e ] 19.76MB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"5ab8526a134c"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"5ab8526a134c"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":294912,"total":585186},"progress":"[=========================\u003e ] 294.9kB/585.2kB","id":"4288b7e44b29"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"20fd3e40220a"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"20fd3e40220a"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":585186,"total":585186},"progress":"[==================================================\u003e] 585.2kB/585.2kB","id":"4288b7e44b29"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":585186,"total":585186},"progress":"[==================================================\u003e] 585.2kB/585.2kB","id":"4288b7e44b29"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"4288b7e44b29"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":294912,"total":26279391},"progress":"[\u003e ] 294.9kB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":2654208,"total":26279391},"progress":"[=====\u003e ] 2.654MB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Downloading","progressDetail":{"current":18360,"total":1747723},"progress":"[\u003e ] 18.36kB/1.748MB","id":"e98300205c46"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"e98300205c46"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"e98300205c46"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":5013504,"total":26279391},"progress":"[=========\u003e ] 5.014MB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":7372800,"total":26279391},"progress":"[==============\u003e ] 7.373MB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Downloading","progressDetail":{"current":51080,"total":5101406},"progress":"[\u003e ] 51.08kB/5.101MB","id":"e61edd44f1aa"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Downloading","progressDetail":{"current":440,"total":440},"progress":"[==================================================\u003e] 440B/440B","id":"51fabcdcdcd0"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"51fabcdcdcd0"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"51fabcdcdcd0"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"e61edd44f1aa"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"e61edd44f1aa"}"
time="2021-05-17T10:28:51Z" level=info msg="{"status":"Extracting","progressDetail":{"current":9437184,"total":26279391},"progress":"[=================\u003e ] 9.437MB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Extracting","progressDetail":{"current":11796480,"total":26279391},"progress":"[======================\u003e ] 11.8MB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Downloading","progressDetail":{"current":273,"total":273},"progress":"[==================================================\u003e] 273B/273B","id":"6222b9343fae"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"6222b9343fae"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"6222b9343fae"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Extracting","progressDetail":{"current":14450688,"total":26279391},"progress":"[===========================\u003e ] 14.45MB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Extracting","progressDetail":{"current":16809984,"total":26279391},"progress":"[===============================\u003e ] 16.81MB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Downloading","progressDetail":{"current":609,"total":899},"progress":"[=================================\u003e ] 609B/899B","id":"e297f2bee945"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Downloading","progressDetail":{"current":899,"total":899},"progress":"[==================================================\u003e] 899B/899B","id":"e297f2bee945"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"e297f2bee945"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"e297f2bee945"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Extracting","progressDetail":{"current":19169280,"total":26279391},"progress":"[====================================\u003e ] 19.17MB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Downloading","progressDetail":{"current":608,"total":2660},"progress":"[===========\u003e ] 608B/2.66kB","id":"1fbd48cfac1c"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Downloading","progressDetail":{"current":2660,"total":2660},"progress":"[==================================================\u003e] 2.66kB/2.66kB","id":"1fbd48cfac1c"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"1fbd48cfac1c"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"1fbd48cfac1c"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Extracting","progressDetail":{"current":21528576,"total":26279391},"progress":"[========================================\u003e ] 21.53MB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Downloading","progressDetail":{"current":41476,"total":4081481},"progress":"[\u003e ] 41.48kB/4.081MB","id":"78678b1b67ae"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Extracting","progressDetail":{"current":24182784,"total":26279391},"progress":"[==============================================\u003e ] 24.18MB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Downloading","progressDetail":{"current":3979661,"total":4081481},"progress":"[================================================\u003e ] 3.98MB/4.081MB","id":"78678b1b67ae"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"78678b1b67ae"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"78678b1b67ae"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Extracting","progressDetail":{"current":26279391,"total":26279391},"progress":"[==================================================\u003e] 26.28MB/26.28MB","id":"20fd3e40220a"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"20fd3e40220a"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Extracting","progressDetail":{"current":160,"total":160},"progress":"[==================================================\u003e] 160B/160B","id":"06d47d19a46f"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Extracting","progressDetail":{"current":160,"total":160},"progress":"[==================================================\u003e] 160B/160B","id":"06d47d19a46f"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"06d47d19a46f"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Extracting","progressDetail":{"current":163840,"total":16194659},"progress":"[\u003e ] 163.8kB/16.19MB","id":"5ab8526a134c"}"
time="2021-05-17T10:28:52Z" level=info msg="{"status":"Extracting","progressDetail":{"current":2129920,"total":16194659},"progress":"[======\u003e ] 2.13MB/16.19MB","id":"5ab8526a134c"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Extracting","progressDetail":{"current":4423680,"total":16194659},"progress":"[=============\u003e ] 4.424MB/16.19MB","id":"5ab8526a134c"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Extracting","progressDetail":{"current":6717440,"total":16194659},"progress":"[====================\u003e ] 6.717MB/16.19MB","id":"5ab8526a134c"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Extracting","progressDetail":{"current":9011200,"total":16194659},"progress":"[===========================\u003e ] 9.011MB/16.19MB","id":"5ab8526a134c"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Extracting","progressDetail":{"current":11304960,"total":16194659},"progress":"[==================================\u003e ] 11.3MB/16.19MB","id":"5ab8526a134c"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Extracting","progressDetail":{"current":13598720,"total":16194659},"progress":"[=========================================\u003e ] 13.6MB/16.19MB","id":"5ab8526a134c"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Extracting","progressDetail":{"current":15892480,"total":16194659},"progress":"[=================================================\u003e ] 15.89MB/16.19MB","id":"5ab8526a134c"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Extracting","progressDetail":{"current":16194659,"total":16194659},"progress":"[==================================================\u003e] 16.19MB/16.19MB","id":"5ab8526a134c"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"5ab8526a134c"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Extracting","progressDetail":{"current":32768,"total":1747723},"progress":"[\u003e ] 32.77kB/1.748MB","id":"e98300205c46"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Extracting","progressDetail":{"current":1572864,"total":1747723},"progress":"[============================================\u003e ] 1.573MB/1.748MB","id":"e98300205c46"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Extracting","progressDetail":{"current":1747723,"total":1747723},"progress":"[==================================================\u003e] 1.748MB/1.748MB","id":"e98300205c46"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"e98300205c46"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Extracting","progressDetail":{"current":65536,"total":5101406},"progress":"[\u003e ] 65.54kB/5.101MB","id":"e61edd44f1aa"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Extracting","progressDetail":{"current":1048576,"total":5101406},"progress":"[==========\u003e ] 1.049MB/5.101MB","id":"e61edd44f1aa"}"
time="2021-05-17T10:28:53Z" level=info msg="{"status":"Extracting","progressDetail":{"current":3145728,"total":5101406},"progress":"[==============================\u003e ] 3.146MB/5.101MB","id":"e61edd44f1aa"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Extracting","progressDetail":{"current":5101406,"total":5101406},"progress":"[==================================================\u003e] 5.101MB/5.101MB","id":"e61edd44f1aa"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Extracting","progressDetail":{"current":5101406,"total":5101406},"progress":"[==================================================\u003e] 5.101MB/5.101MB","id":"e61edd44f1aa"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"e61edd44f1aa"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Extracting","progressDetail":{"current":440,"total":440},"progress":"[==================================================\u003e] 440B/440B","id":"51fabcdcdcd0"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Extracting","progressDetail":{"current":440,"total":440},"progress":"[==================================================\u003e] 440B/440B","id":"51fabcdcdcd0"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"51fabcdcdcd0"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Extracting","progressDetail":{"current":273,"total":273},"progress":"[==================================================\u003e] 273B/273B","id":"6222b9343fae"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Extracting","progressDetail":{"current":273,"total":273},"progress":"[==================================================\u003e] 273B/273B","id":"6222b9343fae"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"6222b9343fae"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Extracting","progressDetail":{"current":899,"total":899},"progress":"[==================================================\u003e] 899B/899B","id":"e297f2bee945"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Extracting","progressDetail":{"current":899,"total":899},"progress":"[==================================================\u003e] 899B/899B","id":"e297f2bee945"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"e297f2bee945"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Extracting","progressDetail":{"current":2660,"total":2660},"progress":"[==================================================\u003e] 2.66kB/2.66kB","id":"1fbd48cfac1c"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Extracting","progressDetail":{"current":2660,"total":2660},"progress":"[==================================================\u003e] 2.66kB/2.66kB","id":"1fbd48cfac1c"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"1fbd48cfac1c"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Extracting","progressDetail":{"current":65536,"total":4081481},"progress":"[\u003e ] 65.54kB/4.081MB","id":"78678b1b67ae"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Extracting","progressDetail":{"current":851968,"total":4081481},"progress":"[==========\u003e ] 852kB/4.081MB","id":"78678b1b67ae"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Extracting","progressDetail":{"current":3014656,"total":4081481},"progress":"[====================================\u003e ] 3.015MB/4.081MB","id":"78678b1b67ae"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Extracting","progressDetail":{"current":4081481,"total":4081481},"progress":"[==================================================\u003e] 4.081MB/4.081MB","id":"78678b1b67ae"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"78678b1b67ae"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Digest: sha256:<removed :-)>"}"
time="2021-05-17T10:28:54Z" level=info msg="{"status":"Status: Downloaded newer image for rancher/rke-tools:v0.1.74"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Pulling from rancher/hyperkube","id":"v1.20.6-rancher1"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"83ee3a23efb7"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"db98fc6f11f0"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"f611acd52c6c"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"7ba9d6025e87"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"c0240dd6c726"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"35e06504c365"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"698b0c555fc1"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"8f0d23c11855"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"7c4dd76301a5"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"5b383e9b69ef"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"97fb7d1f1623"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"9d46aba22d07"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Pulling fs layer","progressDetail":{},"id":"6addf28287a7"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"7ba9d6025e87"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"c0240dd6c726"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"35e06504c365"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"698b0c555fc1"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"8f0d23c11855"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"7c4dd76301a5"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"5b383e9b69ef"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"97fb7d1f1623"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"9d46aba22d07"}"
time="2021-05-17T10:28:56Z" level=info msg="{"status":"Waiting","progressDetail":{},"id":"6addf28287a7"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Downloading","progressDetail":{"current":610,"total":843},"progress":"[====================================\u003e ] 610B/843B","id":"db98fc6f11f0"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Downloading","progressDetail":{"current":843,"total":843},"progress":"[==================================================\u003e] 843B/843B","id":"db98fc6f11f0"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"db98fc6f11f0"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"db98fc6f11f0"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"f611acd52c6c"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Downloading","progressDetail":{"current":294036,"total":28565893},"progress":"[\u003e ] 294kB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Downloading","progressDetail":{"current":8518029,"total":28565893},"progress":"[==============\u003e ] 8.518MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Downloading","progressDetail":{"current":20195725,"total":28565893},"progress":"[===================================\u003e ] 20.2MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Downloading","progressDetail":{"current":28412301,"total":28565893},"progress":"[=================================================\u003e ] 28.41MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"83ee3a23efb7"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"83ee3a23efb7"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Downloading","progressDetail":{"current":611,"total":915},"progress":"[=================================\u003e ] 611B/915B","id":"7ba9d6025e87"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Downloading","progressDetail":{"current":915,"total":915},"progress":"[==================================================\u003e] 915B/915B","id":"7ba9d6025e87"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"7ba9d6025e87"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"7ba9d6025e87"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Extracting","progressDetail":{"current":294912,"total":28565893},"progress":"[\u003e ] 294.9kB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Downloading","progressDetail":{"current":608,"total":2327},"progress":"[=============\u003e ] 608B/2.327kB","id":"c0240dd6c726"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Downloading","progressDetail":{"current":2327,"total":2327},"progress":"[==================================================\u003e] 2.327kB/2.327kB","id":"c0240dd6c726"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"c0240dd6c726"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"c0240dd6c726"}"
time="2021-05-17T10:28:57Z" level=info msg="{"status":"Extracting","progressDetail":{"current":2949120,"total":28565893},"progress":"[=====\u003e ] 2.949MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Extracting","progressDetail":{"current":5308416,"total":28565893},"progress":"[=========\u003e ] 5.308MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Extracting","progressDetail":{"current":7667712,"total":28565893},"progress":"[=============\u003e ] 7.668MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Downloading","progressDetail":{"current":161,"total":161},"progress":"[==================================================\u003e] 161B/161B","id":"35e06504c365"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"35e06504c365"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"35e06504c365"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Extracting","progressDetail":{"current":9732096,"total":28565893},"progress":"[=================\u003e ] 9.732MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Downloading","progressDetail":{"current":208,"total":208},"progress":"[==================================================\u003e] 208B/208B","id":"698b0c555fc1"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"698b0c555fc1"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"698b0c555fc1"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Downloading","progressDetail":{"current":3302,"total":265349},"progress":"[\u003e ] 3.302kB/265.3kB","id":"8f0d23c11855"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Downloading","progressDetail":{"current":265349,"total":265349},"progress":"[==================================================\u003e] 265.3kB/265.3kB","id":"8f0d23c11855"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"8f0d23c11855"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"8f0d23c11855"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Extracting","progressDetail":{"current":11796480,"total":28565893},"progress":"[====================\u003e ] 11.8MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Extracting","progressDetail":{"current":14450688,"total":28565893},"progress":"[=========================\u003e ] 14.45MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Extracting","progressDetail":{"current":16809984,"total":28565893},"progress":"[=============================\u003e ] 16.81MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Downloading","progressDetail":{"current":3302,"total":265790},"progress":"[\u003e ] 3.302kB/265.8kB","id":"7c4dd76301a5"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Downloading","progressDetail":{"current":265790,"total":265790},"progress":"[==================================================\u003e] 265.8kB/265.8kB","id":"7c4dd76301a5"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"7c4dd76301a5"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"7c4dd76301a5"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Extracting","progressDetail":{"current":19464192,"total":28565893},"progress":"[==================================\u003e ] 19.46MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Downloading","progressDetail":{"current":530795,"total":254038846},"progress":"[\u003e ] 530.8kB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Extracting","progressDetail":{"current":21823488,"total":28565893},"progress":"[======================================\u003e ] 21.82MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Downloading","progressDetail":{"current":13916523,"total":254038846},"progress":"[==\u003e ] 13.92MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Downloading","progressDetail":{"current":608,"total":1670},"progress":"[==================\u003e ] 608B/1.67kB","id":"97fb7d1f1623"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Downloading","progressDetail":{"current":1670,"total":1670},"progress":"[==================================================\u003e] 1.67kB/1.67kB","id":"97fb7d1f1623"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"97fb7d1f1623"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"97fb7d1f1623"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Extracting","progressDetail":{"current":23887872,"total":28565893},"progress":"[=========================================\u003e ] 23.89MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Downloading","progressDetail":{"current":28895595,"total":254038846},"progress":"[=====\u003e ] 28.9MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:28:58Z" level=info msg="{"status":"Extracting","progressDetail":{"current":24477696,"total":28565893},"progress":"[==========================================\u003e ] 24.48MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":45513067,"total":254038846},"progress":"[========\u003e ] 45.51MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Extracting","progressDetail":{"current":26542080,"total":28565893},"progress":"[==============================================\u003e ] 26.54MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":58345835,"total":254038846},"progress":"[===========\u003e ] 58.35MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":387465,"total":37274940},"progress":"[\u003e ] 387.5kB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":69572971,"total":254038846},"progress":"[=============\u003e ] 69.57MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Extracting","progressDetail":{"current":27426816,"total":28565893},"progress":"[================================================\u003e ] 27.43MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":11073929,"total":37274940},"progress":"[==============\u003e ] 11.07MB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":78170475,"total":254038846},"progress":"[===============\u003e ] 78.17MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":17525129,"total":37274940},"progress":"[=======================\u003e ] 17.53MB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Extracting","progressDetail":{"current":28565893,"total":28565893},"progress":"[==================================================\u003e] 28.57MB/28.57MB","id":"83ee3a23efb7"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":87808363,"total":254038846},"progress":"[=================\u003e ] 87.81MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":527515,"total":122347995},"progress":"[\u003e ] 527.5kB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"83ee3a23efb7"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":28592521,"total":37274940},"progress":"[======================================\u003e ] 28.59MB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Extracting","progressDetail":{"current":843,"total":843},"progress":"[==================================================\u003e] 843B/843B","id":"db98fc6f11f0"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Extracting","progressDetail":{"current":843,"total":843},"progress":"[==================================================\u003e] 843B/843B","id":"db98fc6f11f0"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":96360811,"total":254038846},"progress":"[==================\u003e ] 96.36MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":3209579,"total":122347995},"progress":"[=\u003e ] 3.21MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"9d46aba22d07"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"9d46aba22d07"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"db98fc6f11f0"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Extracting","progressDetail":{"current":162,"total":162},"progress":"[==================================================\u003e] 162B/162B","id":"f611acd52c6c"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Extracting","progressDetail":{"current":162,"total":162},"progress":"[==================================================\u003e] 162B/162B","id":"f611acd52c6c"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":104941931,"total":254038846},"progress":"[====================\u003e ] 104.9MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":8059243,"total":122347995},"progress":"[===\u003e ] 8.059MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"f611acd52c6c"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Extracting","progressDetail":{"current":915,"total":915},"progress":"[==================================================\u003e] 915B/915B","id":"7ba9d6025e87"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Extracting","progressDetail":{"current":915,"total":915},"progress":"[==================================================\u003e] 915B/915B","id":"7ba9d6025e87"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":117270891,"total":254038846},"progress":"[=======================\u003e ] 117.3MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":16640363,"total":122347995},"progress":"[======\u003e ] 16.64MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"7ba9d6025e87"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Extracting","progressDetail":{"current":2327,"total":2327},"progress":"[==================================================\u003e] 2.327kB/2.327kB","id":"c0240dd6c726"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Extracting","progressDetail":{"current":2327,"total":2327},"progress":"[==================================================\u003e] 2.327kB/2.327kB","id":"c0240dd6c726"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":129554795,"total":254038846},"progress":"[=========================\u003e ] 129.6MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":24684907,"total":122347995},"progress":"[==========\u003e ] 24.68MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"c0240dd6c726"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Extracting","progressDetail":{"current":161,"total":161},"progress":"[==================================================\u003e] 161B/161B","id":"35e06504c365"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Extracting","progressDetail":{"current":161,"total":161},"progress":"[==================================================\u003e] 161B/161B","id":"35e06504c365"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":135399787,"total":254038846},"progress":"[==========================\u003e ] 135.4MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Downloading","progressDetail":{"current":34322795,"total":122347995},"progress":"[==============\u003e ] 34.32MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:28:59Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"35e06504c365"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Extracting","progressDetail":{"current":208,"total":208},"progress":"[==================================================\u003e] 208B/208B","id":"698b0c555fc1"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Extracting","progressDetail":{"current":208,"total":208},"progress":"[==================================================\u003e] 208B/208B","id":"698b0c555fc1"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":139123051,"total":254038846},"progress":"[===========================\u003e ] 139.1MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":45578603,"total":122347995},"progress":"[==================\u003e ] 45.58MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"698b0c555fc1"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Extracting","progressDetail":{"current":32768,"total":265349},"progress":"[======\u003e ] 32.77kB/265.3kB","id":"8f0d23c11855"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":148199787,"total":254038846},"progress":"[=============================\u003e ] 148.2MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":58952043,"total":122347995},"progress":"[========================\u003e ] 58.95MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Extracting","progressDetail":{"current":229376,"total":265349},"progress":"[===========================================\u003e ] 229.4kB/265.3kB","id":"8f0d23c11855"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Extracting","progressDetail":{"current":265349,"total":265349},"progress":"[==================================================\u003e] 265.3kB/265.3kB","id":"8f0d23c11855"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"8f0d23c11855"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":156727659,"total":254038846},"progress":"[==============================\u003e ] 156.7MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Extracting","progressDetail":{"current":32768,"total":265790},"progress":"[======\u003e ] 32.77kB/265.8kB","id":"7c4dd76301a5"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":65894763,"total":122347995},"progress":"[==========================\u003e ] 65.89MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":169523563,"total":254038846},"progress":"[=================================\u003e ] 169.5MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":76048747,"total":122347995},"progress":"[===============================\u003e ] 76.05MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Extracting","progressDetail":{"current":65536,"total":265790},"progress":"[============\u003e ] 65.54kB/265.8kB","id":"7c4dd76301a5"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Extracting","progressDetail":{"current":265790,"total":265790},"progress":"[==================================================\u003e] 265.8kB/265.8kB","id":"7c4dd76301a5"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Extracting","progressDetail":{"current":265790,"total":265790},"progress":"[==================================================\u003e] 265.8kB/265.8kB","id":"7c4dd76301a5"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"7c4dd76301a5"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":183392619,"total":254038846},"progress":"[====================================\u003e ] 183.4MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":86194539,"total":122347995},"progress":"[===================================\u003e ] 86.19MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":195701099,"total":254038846},"progress":"[======================================\u003e ] 195.7MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":102234475,"total":122347995},"progress":"[=========================================\u003e ] 102.2MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":203192683,"total":254038846},"progress":"[=======================================\u003e ] 203.2MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":110803307,"total":122347995},"progress":"[=============================================\u003e ] 110.8MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"6addf28287a7"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"6addf28287a7"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":210147691,"total":254038846},"progress":"[=========================================\u003e ] 210.1MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":219228523,"total":254038846},"progress":"[===========================================\u003e ] 219.2MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:00Z" level=info msg="{"status":"Downloading","progressDetail":{"current":228845931,"total":254038846},"progress":"[=============================================\u003e ] 228.8MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:01Z" level=info msg="{"status":"Downloading","progressDetail":{"current":237377899,"total":254038846},"progress":"[==============================================\u003e ] 237.4MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:01Z" level=info msg="{"status":"Downloading","progressDetail":{"current":243259755,"total":254038846},"progress":"[===============================================\u003e ] 243.3MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:01Z" level=info msg="{"status":"Downloading","progressDetail":{"current":244324715,"total":254038846},"progress":"[================================================\u003e ] 244.3MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:01Z" level=info msg="{"status":"Downloading","progressDetail":{"current":245385579,"total":254038846},"progress":"[================================================\u003e ] 245.4MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:01Z" level=info msg="{"status":"Downloading","progressDetail":{"current":250763627,"total":254038846},"progress":"[=================================================\u003e ] 250.8MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:01Z" level=info msg="{"status":"Verifying Checksum","progressDetail":{},"id":"5b383e9b69ef"}"
time="2021-05-17T10:29:01Z" level=info msg="{"status":"Download complete","progressDetail":{},"id":"5b383e9b69ef"}"
time="2021-05-17T10:29:01Z" level=info msg="{"status":"Extracting","progressDetail":{"current":557056,"total":254038846},"progress":"[\u003e ] 557.1kB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:01Z" level=info msg="{"status":"Extracting","progressDetail":{"current":3342336,"total":254038846},"progress":"[\u003e ] 3.342MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:02Z" level=info msg="{"status":"Extracting","progressDetail":{"current":5570560,"total":254038846},"progress":"[=\u003e ] 5.571MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:02Z" level=info msg="{"status":"Extracting","progressDetail":{"current":7798784,"total":254038846},"progress":"[=\u003e ] 7.799MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:02Z" level=info msg="{"status":"Extracting","progressDetail":{"current":10027008,"total":254038846},"progress":"[=\u003e ] 10.03MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:02Z" level=info msg="{"status":"Extracting","progressDetail":{"current":12255232,"total":254038846},"progress":"[==\u003e ] 12.26MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:02Z" level=info msg="{"status":"Extracting","progressDetail":{"current":13926400,"total":254038846},"progress":"[==\u003e ] 13.93MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:02Z" level=info msg="{"status":"Extracting","progressDetail":{"current":15597568,"total":254038846},"progress":"[===\u003e ] 15.6MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:02Z" level=info msg="{"status":"Extracting","progressDetail":{"current":17825792,"total":254038846},"progress":"[===\u003e ] 17.83MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:02Z" level=info msg="{"status":"Extracting","progressDetail":{"current":20054016,"total":254038846},"progress":"[===\u003e ] 20.05MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:02Z" level=info msg="{"status":"Extracting","progressDetail":{"current":22282240,"total":254038846},"progress":"[====\u003e ] 22.28MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:03Z" level=info msg="{"status":"Extracting","progressDetail":{"current":23953408,"total":254038846},"progress":"[====\u003e ] 23.95MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:03Z" level=info msg="{"status":"Extracting","progressDetail":{"current":25624576,"total":254038846},"progress":"[=====\u003e ] 25.62MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:03Z" level=info msg="{"status":"Extracting","progressDetail":{"current":28966912,"total":254038846},"progress":"[=====\u003e ] 28.97MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:03Z" level=info msg="{"status":"Extracting","progressDetail":{"current":30638080,"total":254038846},"progress":"[======\u003e ] 30.64MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:03Z" level=info msg="{"status":"Extracting","progressDetail":{"current":32866304,"total":254038846},"progress":"[======\u003e ] 32.87MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:03Z" level=info msg="{"status":"Extracting","progressDetail":{"current":34537472,"total":254038846},"progress":"[======\u003e ] 34.54MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:03Z" level=info msg="{"status":"Extracting","progressDetail":{"current":36208640,"total":254038846},"progress":"[=======\u003e ] 36.21MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:03Z" level=info msg="{"status":"Extracting","progressDetail":{"current":37879808,"total":254038846},"progress":"[=======\u003e ] 37.88MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:04Z" level=info msg="{"status":"Extracting","progressDetail":{"current":38993920,"total":254038846},"progress":"[=======\u003e ] 38.99MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:04Z" level=info msg="{"status":"Extracting","progressDetail":{"current":40665088,"total":254038846},"progress":"[========\u003e ] 40.67MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:04Z" level=info msg="{"status":"Extracting","progressDetail":{"current":41779200,"total":254038846},"progress":"[========\u003e ] 41.78MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:04Z" level=info msg="{"status":"Extracting","progressDetail":{"current":42893312,"total":254038846},"progress":"[========\u003e ] 42.89MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:04Z" level=info msg="{"status":"Extracting","progressDetail":{"current":44007424,"total":254038846},"progress":"[========\u003e ] 44.01MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:04Z" level=info msg="{"status":"Extracting","progressDetail":{"current":45121536,"total":254038846},"progress":"[========\u003e ] 45.12MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:04Z" level=info msg="{"status":"Extracting","progressDetail":{"current":46235648,"total":254038846},"progress":"[=========\u003e ] 46.24MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:04Z" level=info msg="{"status":"Extracting","progressDetail":{"current":47349760,"total":254038846},"progress":"[=========\u003e ] 47.35MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:05Z" level=info msg="{"status":"Extracting","progressDetail":{"current":48463872,"total":254038846},"progress":"[=========\u003e ] 48.46MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:05Z" level=info msg="{"status":"Extracting","progressDetail":{"current":49577984,"total":254038846},"progress":"[=========\u003e ] 49.58MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:05Z" level=info msg="{"status":"Extracting","progressDetail":{"current":50692096,"total":254038846},"progress":"[=========\u003e ] 50.69MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:05Z" level=info msg="{"status":"Extracting","progressDetail":{"current":51806208,"total":254038846},"progress":"[==========\u003e ] 51.81MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:05Z" level=info msg="{"status":"Extracting","progressDetail":{"current":52920320,"total":254038846},"progress":"[==========\u003e ] 52.92MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:05Z" level=info msg="{"status":"Extracting","progressDetail":{"current":54034432,"total":254038846},"progress":"[==========\u003e ] 54.03MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:05Z" level=info msg="{"status":"Extracting","progressDetail":{"current":55148544,"total":254038846},"progress":"[==========\u003e ] 55.15MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:06Z" level=info msg="{"status":"Extracting","progressDetail":{"current":56262656,"total":254038846},"progress":"[===========\u003e ] 56.26MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:06Z" level=info msg="{"status":"Extracting","progressDetail":{"current":57376768,"total":254038846},"progress":"[===========\u003e ] 57.38MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:06Z" level=info msg="{"status":"Extracting","progressDetail":{"current":58490880,"total":254038846},"progress":"[===========\u003e ] 58.49MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:06Z" level=info msg="{"status":"Extracting","progressDetail":{"current":59604992,"total":254038846},"progress":"[===========\u003e ] 59.6MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:06Z" level=info msg="{"status":"Extracting","progressDetail":{"current":60719104,"total":254038846},"progress":"[===========\u003e ] 60.72MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:06Z" level=info msg="{"status":"Extracting","progressDetail":{"current":61833216,"total":254038846},"progress":"[============\u003e ] 61.83MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:06Z" level=info msg="{"status":"Extracting","progressDetail":{"current":62947328,"total":254038846},"progress":"[============\u003e ] 62.95MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:06Z" level=info msg="{"status":"Extracting","progressDetail":{"current":64061440,"total":254038846},"progress":"[============\u003e ] 64.06MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:07Z" level=info msg="{"status":"Extracting","progressDetail":{"current":65175552,"total":254038846},"progress":"[============\u003e ] 65.18MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:07Z" level=info msg="{"status":"Extracting","progressDetail":{"current":66289664,"total":254038846},"progress":"[=============\u003e ] 66.29MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:07Z" level=info msg="{"status":"Extracting","progressDetail":{"current":67403776,"total":254038846},"progress":"[=============\u003e ] 67.4MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:07Z" level=info msg="{"status":"Extracting","progressDetail":{"current":68517888,"total":254038846},"progress":"[=============\u003e ] 68.52MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:07Z" level=info msg="{"status":"Extracting","progressDetail":{"current":69632000,"total":254038846},"progress":"[=============\u003e ] 69.63MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:07Z" level=info msg="{"status":"Extracting","progressDetail":{"current":70746112,"total":254038846},"progress":"[=============\u003e ] 70.75MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:07Z" level=info msg="{"status":"Extracting","progressDetail":{"current":71860224,"total":254038846},"progress":"[==============\u003e ] 71.86MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:08Z" level=info msg="{"status":"Extracting","progressDetail":{"current":72974336,"total":254038846},"progress":"[==============\u003e ] 72.97MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:08Z" level=info msg="{"status":"Extracting","progressDetail":{"current":74088448,"total":254038846},"progress":"[==============\u003e ] 74.09MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:08Z" level=info msg="{"status":"Extracting","progressDetail":{"current":75202560,"total":254038846},"progress":"[==============\u003e ] 75.2MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:08Z" level=info msg="{"status":"Extracting","progressDetail":{"current":76316672,"total":254038846},"progress":"[===============\u003e ] 76.32MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:08Z" level=info msg="{"status":"Extracting","progressDetail":{"current":77430784,"total":254038846},"progress":"[===============\u003e ] 77.43MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:08Z" level=info msg="{"status":"Extracting","progressDetail":{"current":78544896,"total":254038846},"progress":"[===============\u003e ] 78.54MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:08Z" level=info msg="{"status":"Extracting","progressDetail":{"current":79659008,"total":254038846},"progress":"[===============\u003e ] 79.66MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:08Z" level=info msg="{"status":"Extracting","progressDetail":{"current":80773120,"total":254038846},"progress":"[===============\u003e ] 80.77MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:09Z" level=info msg="{"status":"Extracting","progressDetail":{"current":81887232,"total":254038846},"progress":"[================\u003e ] 81.89MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:09Z" level=info msg="{"status":"Extracting","progressDetail":{"current":83001344,"total":254038846},"progress":"[================\u003e ] 83MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:09Z" level=info msg="{"status":"Extracting","progressDetail":{"current":84672512,"total":254038846},"progress":"[================\u003e ] 84.67MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:09Z" level=info msg="{"status":"Extracting","progressDetail":{"current":85786624,"total":254038846},"progress":"[================\u003e ] 85.79MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:09Z" level=info msg="{"status":"Extracting","progressDetail":{"current":87457792,"total":254038846},"progress":"[=================\u003e ] 87.46MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:09Z" level=info msg="{"status":"Extracting","progressDetail":{"current":89128960,"total":254038846},"progress":"[=================\u003e ] 89.13MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:09Z" level=info msg="{"status":"Extracting","progressDetail":{"current":90800128,"total":254038846},"progress":"[=================\u003e ] 90.8MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:09Z" level=info msg="{"status":"Extracting","progressDetail":{"current":92471296,"total":254038846},"progress":"[==================\u003e ] 92.47MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:10Z" level=info msg="{"status":"Extracting","progressDetail":{"current":93585408,"total":254038846},"progress":"[==================\u003e ] 93.59MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:10Z" level=info msg="{"status":"Extracting","progressDetail":{"current":95813632,"total":254038846},"progress":"[==================\u003e ] 95.81MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:10Z" level=info msg="{"status":"Extracting","progressDetail":{"current":97484800,"total":254038846},"progress":"[===================\u003e ] 97.48MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:10Z" level=info msg="{"status":"Extracting","progressDetail":{"current":98598912,"total":254038846},"progress":"[===================\u003e ] 98.6MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:10Z" level=info msg="{"status":"Extracting","progressDetail":{"current":100270080,"total":254038846},"progress":"[===================\u003e ] 100.3MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:10Z" level=info msg="{"status":"Extracting","progressDetail":{"current":102498304,"total":254038846},"progress":"[====================\u003e ] 102.5MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:10Z" level=info msg="{"status":"Extracting","progressDetail":{"current":104169472,"total":254038846},"progress":"[====================\u003e ] 104.2MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:10Z" level=info msg="{"status":"Extracting","progressDetail":{"current":105840640,"total":254038846},"progress":"[====================\u003e ] 105.8MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:11Z" level=info msg="{"status":"Extracting","progressDetail":{"current":107511808,"total":254038846},"progress":"[=====================\u003e ] 107.5MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:11Z" level=info msg="{"status":"Extracting","progressDetail":{"current":108068864,"total":254038846},"progress":"[=====================\u003e ] 108.1MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:11Z" level=info msg="{"status":"Extracting","progressDetail":{"current":108625920,"total":254038846},"progress":"[=====================\u003e ] 108.6MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:11Z" level=info msg="{"status":"Extracting","progressDetail":{"current":109740032,"total":254038846},"progress":"[=====================\u003e ] 109.7MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:11Z" level=info msg="{"status":"Extracting","progressDetail":{"current":111411200,"total":254038846},"progress":"[=====================\u003e ] 111.4MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:11Z" level=info msg="{"status":"Extracting","progressDetail":{"current":113082368,"total":254038846},"progress":"[======================\u003e ] 113.1MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:11Z" level=info msg="{"status":"Extracting","progressDetail":{"current":114753536,"total":254038846},"progress":"[======================\u003e ] 114.8MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:12Z" level=info msg="{"status":"Extracting","progressDetail":{"current":116981760,"total":254038846},"progress":"[=======================\u003e ] 117MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:12Z" level=info msg="{"status":"Extracting","progressDetail":{"current":118652928,"total":254038846},"progress":"[=======================\u003e ] 118.7MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:12Z" level=info msg="{"status":"Extracting","progressDetail":{"current":120324096,"total":254038846},"progress":"[=======================\u003e ] 120.3MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:12Z" level=info msg="{"status":"Extracting","progressDetail":{"current":121995264,"total":254038846},"progress":"[========================\u003e ] 122MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:12Z" level=info msg="{"status":"Extracting","progressDetail":{"current":123666432,"total":254038846},"progress":"[========================\u003e ] 123.7MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:12Z" level=info msg="{"status":"Extracting","progressDetail":{"current":125894656,"total":254038846},"progress":"[========================\u003e ] 125.9MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:12Z" level=info msg="{"status":"Extracting","progressDetail":{"current":128679936,"total":254038846},"progress":"[=========================\u003e ] 128.7MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:12Z" level=info msg="{"status":"Extracting","progressDetail":{"current":131465216,"total":254038846},"progress":"[=========================\u003e ] 131.5MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:13Z" level=info msg="{"status":"Extracting","progressDetail":{"current":134250496,"total":254038846},"progress":"[==========================\u003e ] 134.3MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:13Z" level=info msg="{"status":"Extracting","progressDetail":{"current":137035776,"total":254038846},"progress":"[==========================\u003e ] 137MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:13Z" level=info msg="{"status":"Extracting","progressDetail":{"current":139821056,"total":254038846},"progress":"[===========================\u003e ] 139.8MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:13Z" level=info msg="{"status":"Extracting","progressDetail":{"current":142606336,"total":254038846},"progress":"[============================\u003e ] 142.6MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:13Z" level=info msg="{"status":"Extracting","progressDetail":{"current":145391616,"total":254038846},"progress":"[============================\u003e ] 145.4MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:13Z" level=info msg="{"status":"Extracting","progressDetail":{"current":148176896,"total":254038846},"progress":"[=============================\u003e ] 148.2MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:13Z" level=info msg="{"status":"Extracting","progressDetail":{"current":150962176,"total":254038846},"progress":"[=============================\u003e ] 151MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:13Z" level=info msg="{"status":"Extracting","progressDetail":{"current":152076288,"total":254038846},"progress":"[=============================\u003e ] 152.1MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:13Z" level=info msg="{"status":"Extracting","progressDetail":{"current":154304512,"total":254038846},"progress":"[==============================\u003e ] 154.3MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:14Z" level=info msg="{"status":"Extracting","progressDetail":{"current":157089792,"total":254038846},"progress":"[==============================\u003e ] 157.1MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:14Z" level=info msg="{"status":"Extracting","progressDetail":{"current":159875072,"total":254038846},"progress":"[===============================\u003e ] 159.9MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:14Z" level=info msg="{"status":"Extracting","progressDetail":{"current":162660352,"total":254038846},"progress":"[================================\u003e ] 162.7MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:14Z" level=info msg="{"status":"Extracting","progressDetail":{"current":165445632,"total":254038846},"progress":"[================================\u003e ] 165.4MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:14Z" level=info msg="{"status":"Extracting","progressDetail":{"current":168230912,"total":254038846},"progress":"[=================================\u003e ] 168.2MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:14Z" level=info msg="{"status":"Extracting","progressDetail":{"current":171016192,"total":254038846},"progress":"[=================================\u003e ] 171MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:14Z" level=info msg="{"status":"Extracting","progressDetail":{"current":173801472,"total":254038846},"progress":"[==================================\u003e ] 173.8MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:14Z" level=info msg="{"status":"Extracting","progressDetail":{"current":176586752,"total":254038846},"progress":"[==================================\u003e ] 176.6MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:14Z" level=info msg="{"status":"Extracting","progressDetail":{"current":178814976,"total":254038846},"progress":"[===================================\u003e ] 178.8MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:15Z" level=info msg="{"status":"Extracting","progressDetail":{"current":181043200,"total":254038846},"progress":"[===================================\u003e ] 181MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:15Z" level=info msg="{"status":"Extracting","progressDetail":{"current":182714368,"total":254038846},"progress":"[===================================\u003e ] 182.7MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:15Z" level=info msg="{"status":"Extracting","progressDetail":{"current":184385536,"total":254038846},"progress":"[====================================\u003e ] 184.4MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:15Z" level=info msg="{"status":"Extracting","progressDetail":{"current":186613760,"total":254038846},"progress":"[====================================\u003e ] 186.6MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:15Z" level=info msg="{"status":"Extracting","progressDetail":{"current":188284928,"total":254038846},"progress":"[=====================================\u003e ] 188.3MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:15Z" level=info msg="{"status":"Extracting","progressDetail":{"current":190513152,"total":254038846},"progress":"[=====================================\u003e ] 190.5MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:15Z" level=info msg="{"status":"Extracting","progressDetail":{"current":193298432,"total":254038846},"progress":"[======================================\u003e ] 193.3MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:15Z" level=info msg="{"status":"Extracting","progressDetail":{"current":195526656,"total":254038846},"progress":"[======================================\u003e ] 195.5MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:15Z" level=info msg="{"status":"Extracting","progressDetail":{"current":198311936,"total":254038846},"progress":"[=======================================\u003e ] 198.3MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:16Z" level=info msg="{"status":"Extracting","progressDetail":{"current":200540160,"total":254038846},"progress":"[=======================================\u003e ] 200.5MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:16Z" level=info msg="{"status":"Extracting","progressDetail":{"current":203325440,"total":254038846},"progress":"[========================================\u003e ] 203.3MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:16Z" level=info msg="{"status":"Extracting","progressDetail":{"current":206110720,"total":254038846},"progress":"[========================================\u003e ] 206.1MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:16Z" level=info msg="{"status":"Extracting","progressDetail":{"current":208896000,"total":254038846},"progress":"[=========================================\u003e ] 208.9MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:16Z" level=info msg="{"status":"Extracting","progressDetail":{"current":212238336,"total":254038846},"progress":"[=========================================\u003e ] 212.2MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:16Z" level=info msg="{"status":"Extracting","progressDetail":{"current":215023616,"total":254038846},"progress":"[==========================================\u003e ] 215MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:16Z" level=info msg="{"status":"Extracting","progressDetail":{"current":218365952,"total":254038846},"progress":"[==========================================\u003e ] 218.4MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:16Z" level=info msg="{"status":"Extracting","progressDetail":{"current":221151232,"total":254038846},"progress":"[===========================================\u003e ] 221.2MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:16Z" level=info msg="{"status":"Extracting","progressDetail":{"current":223936512,"total":254038846},"progress":"[============================================\u003e ] 223.9MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:17Z" level=info msg="{"status":"Extracting","progressDetail":{"current":226721792,"total":254038846},"progress":"[============================================\u003e ] 226.7MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:17Z" level=info msg="{"status":"Extracting","progressDetail":{"current":228950016,"total":254038846},"progress":"[=============================================\u003e ] 229MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:17Z" level=info msg="{"status":"Extracting","progressDetail":{"current":231735296,"total":254038846},"progress":"[=============================================\u003e ] 231.7MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:17Z" level=info msg="{"status":"Extracting","progressDetail":{"current":234520576,"total":254038846},"progress":"[==============================================\u003e ] 234.5MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:17Z" level=info msg="{"status":"Extracting","progressDetail":{"current":236748800,"total":254038846},"progress":"[==============================================\u003e ] 236.7MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:17Z" level=info msg="{"status":"Extracting","progressDetail":{"current":238419968,"total":254038846},"progress":"[==============================================\u003e ] 238.4MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:17Z" level=info msg="{"status":"Extracting","progressDetail":{"current":240648192,"total":254038846},"progress":"[===============================================\u003e ] 240.6MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:17Z" level=info msg="{"status":"Extracting","progressDetail":{"current":241762304,"total":254038846},"progress":"[===============================================\u003e ] 241.8MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:18Z" level=info msg="{"status":"Extracting","progressDetail":{"current":243990528,"total":254038846},"progress":"[================================================\u003e ] 244MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:18Z" level=info msg="{"status":"Extracting","progressDetail":{"current":245661696,"total":254038846},"progress":"[================================================\u003e ] 245.7MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:18Z" level=info msg="{"status":"Extracting","progressDetail":{"current":247332864,"total":254038846},"progress":"[================================================\u003e ] 247.3MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:18Z" level=info msg="{"status":"Extracting","progressDetail":{"current":249004032,"total":254038846},"progress":"[=================================================\u003e ] 249MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:18Z" level=info msg="{"status":"Extracting","progressDetail":{"current":250675200,"total":254038846},"progress":"[=================================================\u003e ] 250.7MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:18Z" level=info msg="{"status":"Extracting","progressDetail":{"current":251789312,"total":254038846},"progress":"[=================================================\u003e ] 251.8MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:18Z" level=info msg="{"status":"Extracting","progressDetail":{"current":253460480,"total":254038846},"progress":"[=================================================\u003e ] 253.5MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:18Z" level=info msg="{"status":"Extracting","progressDetail":{"current":254038846,"total":254038846},"progress":"[==================================================\u003e] 254MB/254MB","id":"5b383e9b69ef"}"
time="2021-05-17T10:29:19Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"5b383e9b69ef"}"
time="2021-05-17T10:29:19Z" level=info msg="{"status":"Extracting","progressDetail":{"current":1670,"total":1670},"progress":"[==================================================\u003e] 1.67kB/1.67kB","id":"97fb7d1f1623"}"
time="2021-05-17T10:29:19Z" level=info msg="{"status":"Extracting","progressDetail":{"current":1670,"total":1670},"progress":"[==================================================\u003e] 1.67kB/1.67kB","id":"97fb7d1f1623"}"
time="2021-05-17T10:29:19Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"97fb7d1f1623"}"
time="2021-05-17T10:29:19Z" level=info msg="{"status":"Extracting","progressDetail":{"current":393216,"total":37274940},"progress":"[\u003e ] 393.2kB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:29:19Z" level=info msg="{"status":"Extracting","progressDetail":{"current":3538944,"total":37274940},"progress":"[====\u003e ] 3.539MB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:29:19Z" level=info msg="{"status":"Extracting","progressDetail":{"current":6684672,"total":37274940},"progress":"[========\u003e ] 6.685MB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:29:19Z" level=info msg="{"status":"Extracting","progressDetail":{"current":9043968,"total":37274940},"progress":"[============\u003e ] 9.044MB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:29:19Z" level=info msg="{"status":"Extracting","progressDetail":{"current":13369344,"total":37274940},"progress":"[=================\u003e ] 13.37MB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:29:19Z" level=info msg="{"status":"Extracting","progressDetail":{"current":16908288,"total":37274940},"progress":"[======================\u003e ] 16.91MB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:29:20Z" level=info msg="{"status":"Extracting","progressDetail":{"current":20447232,"total":37274940},"progress":"[===========================\u003e ] 20.45MB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:29:20Z" level=info msg="{"status":"Extracting","progressDetail":{"current":24379392,"total":37274940},"progress":"[================================\u003e ] 24.38MB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:29:20Z" level=info msg="{"status":"Extracting","progressDetail":{"current":28311552,"total":37274940},"progress":"[=====================================\u003e ] 28.31MB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:29:20Z" level=info msg="{"status":"Extracting","progressDetail":{"current":32243712,"total":37274940},"progress":"[===========================================\u003e ] 32.24MB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:29:20Z" level=info msg="{"status":"Extracting","progressDetail":{"current":35782656,"total":37274940},"progress":"[===============================================\u003e ] 35.78MB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:29:20Z" level=info msg="{"status":"Extracting","progressDetail":{"current":37274940,"total":37274940},"progress":"[==================================================\u003e] 37.27MB/37.27MB","id":"9d46aba22d07"}"
time="2021-05-17T10:29:20Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"9d46aba22d07"}"
time="2021-05-17T10:29:20Z" level=info msg="{"status":"Extracting","progressDetail":{"current":557056,"total":122347995},"progress":"[\u003e ] 557.1kB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:20Z" level=info msg="{"status":"Extracting","progressDetail":{"current":2785280,"total":122347995},"progress":"[=\u003e ] 2.785MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:20Z" level=info msg="{"status":"Extracting","progressDetail":{"current":5013504,"total":122347995},"progress":"[==\u003e ] 5.014MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:20Z" level=info msg="{"status":"Extracting","progressDetail":{"current":7798784,"total":122347995},"progress":"[===\u003e ] 7.799MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:21Z" level=info msg="{"status":"Extracting","progressDetail":{"current":9469952,"total":122347995},"progress":"[===\u003e ] 9.47MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:21Z" level=info msg="{"status":"Extracting","progressDetail":{"current":11698176,"total":122347995},"progress":"[====\u003e ] 11.7MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:21Z" level=info msg="{"status":"Extracting","progressDetail":{"current":13926400,"total":122347995},"progress":"[=====\u003e ] 13.93MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:21Z" level=info msg="{"status":"Extracting","progressDetail":{"current":16154624,"total":122347995},"progress":"[======\u003e ] 16.15MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:21Z" level=info msg="{"status":"Extracting","progressDetail":{"current":18382848,"total":122347995},"progress":"[=======\u003e ] 18.38MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:21Z" level=info msg="{"status":"Extracting","progressDetail":{"current":20611072,"total":122347995},"progress":"[========\u003e ] 20.61MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:21Z" level=info msg="{"status":"Extracting","progressDetail":{"current":23396352,"total":122347995},"progress":"[=========\u003e ] 23.4MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:21Z" level=info msg="{"status":"Extracting","progressDetail":{"current":26181632,"total":122347995},"progress":"[==========\u003e ] 26.18MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:21Z" level=info msg="{"status":"Extracting","progressDetail":{"current":28409856,"total":122347995},"progress":"[===========\u003e ] 28.41MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:22Z" level=info msg="{"status":"Extracting","progressDetail":{"current":31195136,"total":122347995},"progress":"[============\u003e ] 31.2MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:22Z" level=info msg="{"status":"Extracting","progressDetail":{"current":33423360,"total":122347995},"progress":"[=============\u003e ] 33.42MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:22Z" level=info msg="{"status":"Extracting","progressDetail":{"current":36208640,"total":122347995},"progress":"[==============\u003e ] 36.21MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:22Z" level=info msg="{"status":"Extracting","progressDetail":{"current":38436864,"total":122347995},"progress":"[===============\u003e ] 38.44MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:22Z" level=info msg="{"status":"Extracting","progressDetail":{"current":40665088,"total":122347995},"progress":"[================\u003e ] 40.67MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:22Z" level=info msg="{"status":"Extracting","progressDetail":{"current":42893312,"total":122347995},"progress":"[=================\u003e ] 42.89MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:22Z" level=info msg="{"status":"Extracting","progressDetail":{"current":45121536,"total":122347995},"progress":"[==================\u003e ] 45.12MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:22Z" level=info msg="{"status":"Extracting","progressDetail":{"current":47349760,"total":122347995},"progress":"[===================\u003e ] 47.35MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:22Z" level=info msg="{"status":"Extracting","progressDetail":{"current":49577984,"total":122347995},"progress":"[====================\u003e ] 49.58MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:23Z" level=info msg="{"status":"Extracting","progressDetail":{"current":52363264,"total":122347995},"progress":"[=====================\u003e ] 52.36MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:23Z" level=info msg="{"status":"Extracting","progressDetail":{"current":55148544,"total":122347995},"progress":"[======================\u003e ] 55.15MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:23Z" level=info msg="{"status":"Extracting","progressDetail":{"current":57376768,"total":122347995},"progress":"[=======================\u003e ] 57.38MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:23Z" level=info msg="{"status":"Extracting","progressDetail":{"current":60162048,"total":122347995},"progress":"[========================\u003e ] 60.16MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:23Z" level=info msg="{"status":"Extracting","progressDetail":{"current":62390272,"total":122347995},"progress":"[=========================\u003e ] 62.39MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:23Z" level=info msg="{"status":"Extracting","progressDetail":{"current":64618496,"total":122347995},"progress":"[==========================\u003e ] 64.62MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:23Z" level=info msg="{"status":"Extracting","progressDetail":{"current":67403776,"total":122347995},"progress":"[===========================\u003e ] 67.4MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:23Z" level=info msg="{"status":"Extracting","progressDetail":{"current":70189056,"total":122347995},"progress":"[============================\u003e ] 70.19MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:23Z" level=info msg="{"status":"Extracting","progressDetail":{"current":72417280,"total":122347995},"progress":"[=============================\u003e ] 72.42MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:24Z" level=info msg="{"status":"Extracting","progressDetail":{"current":75202560,"total":122347995},"progress":"[==============================\u003e ] 75.2MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:24Z" level=info msg="{"status":"Extracting","progressDetail":{"current":76873728,"total":122347995},"progress":"[===============================\u003e ] 76.87MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:24Z" level=info msg="{"status":"Extracting","progressDetail":{"current":79659008,"total":122347995},"progress":"[================================\u003e ] 79.66MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:24Z" level=info msg="{"status":"Extracting","progressDetail":{"current":82444288,"total":122347995},"progress":"[=================================\u003e ] 82.44MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:24Z" level=info msg="{"status":"Extracting","progressDetail":{"current":84672512,"total":122347995},"progress":"[==================================\u003e ] 84.67MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:24Z" level=info msg="{"status":"Extracting","progressDetail":{"current":86900736,"total":122347995},"progress":"[===================================\u003e ] 86.9MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:24Z" level=info msg="{"status":"Extracting","progressDetail":{"current":89128960,"total":122347995},"progress":"[====================================\u003e ] 89.13MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:24Z" level=info msg="{"status":"Extracting","progressDetail":{"current":91914240,"total":122347995},"progress":"[=====================================\u003e ] 91.91MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:24Z" level=info msg="{"status":"Extracting","progressDetail":{"current":94699520,"total":122347995},"progress":"[======================================\u003e ] 94.7MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:25Z" level=info msg="{"status":"Extracting","progressDetail":{"current":97484800,"total":122347995},"progress":"[=======================================\u003e ] 97.48MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:25Z" level=info msg="{"status":"Extracting","progressDetail":{"current":99713024,"total":122347995},"progress":"[========================================\u003e ] 99.71MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:25Z" level=info msg="{"status":"Extracting","progressDetail":{"current":101941248,"total":122347995},"progress":"[=========================================\u003e ] 101.9MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:25Z" level=info msg="{"status":"Extracting","progressDetail":{"current":104169472,"total":122347995},"progress":"[==========================================\u003e ] 104.2MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:25Z" level=info msg="{"status":"Extracting","progressDetail":{"current":106397696,"total":122347995},"progress":"[===========================================\u003e ] 106.4MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:25Z" level=info msg="{"status":"Extracting","progressDetail":{"current":108625920,"total":122347995},"progress":"[============================================\u003e ] 108.6MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:25Z" level=info msg="{"status":"Extracting","progressDetail":{"current":110854144,"total":122347995},"progress":"[=============================================\u003e ] 110.9MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:25Z" level=info msg="{"status":"Extracting","progressDetail":{"current":113082368,"total":122347995},"progress":"[==============================================\u003e ] 113.1MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:25Z" level=info msg="{"status":"Extracting","progressDetail":{"current":115310592,"total":122347995},"progress":"[===============================================\u003e ] 115.3MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:26Z" level=info msg="{"status":"Extracting","progressDetail":{"current":117538816,"total":122347995},"progress":"[================================================\u003e ] 117.5MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:26Z" level=info msg="{"status":"Extracting","progressDetail":{"current":119209984,"total":122347995},"progress":"[================================================\u003e ] 119.2MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:26Z" level=info msg="{"status":"Extracting","progressDetail":{"current":121438208,"total":122347995},"progress":"[=================================================\u003e ] 121.4MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:26Z" level=info msg="{"status":"Extracting","progressDetail":{"current":122347995,"total":122347995},"progress":"[==================================================\u003e] 122.3MB/122.3MB","id":"6addf28287a7"}"
time="2021-05-17T10:29:26Z" level=info msg="{"status":"Pull complete","progressDetail":{},"id":"6addf28287a7"}"
time="2021-05-17T10:29:26Z" level=info msg="{"status":"Digest: sha256:removed:-)"}"
time="2021-05-17T10:29:26Z" level=info msg="{"status":"Status: Downloaded newer image for rancher/hyperkube:v1.20.6-rancher1"}"
time="2021-05-17T10:29:28Z" level=info msg="Option customConfig=map[address: internalAddress: label:map[] roles:[] taints:[]]"
time="2021-05-17T10:29:28Z" level=info msg="Option etcd=false"
time="2021-05-17T10:29:28Z" level=info msg="Option controlPlane=false"
time="2021-05-17T10:29:28Z" level=info msg="Option worker=false"
time="2021-05-17T10:29:28Z" level=info msg="Option requestedHostname=m-8fq7t"
time="2021-05-17T10:29:28Z" level=info msg="Option worker=false"
time="2021-05-17T10:29:28Z" level=info msg="Option requestedHostname=m-8fq7t"
time="2021-05-17T10:29:28Z" level=info msg="Option customConfig=map[address: internalAddress: label:map[] roles:[] taints:[]]"
time="2021-05-17T10:29:28Z" level=info msg="Option etcd=false"
time="2021-05-17T10:29:28Z" level=info msg="Option controlPlane=false"
time="2021-05-17T10:29:28Z" level=info msg="Starting plan monitor, checking every 120 seconds"

The main and the worker nodes are all using Ubuntu 20.04. Any idea how I can fix this issue? Is it a bug? I'M using Rancher 2.5.8.

SSH Key for debugging?

Greetings,

first of all: Thanks a lot for sharing the code! The driver has been very useful 👍 🥇

I'm currently receiving errors and would like to SSH into the created machine to debug the errors further. Is it possible to add an additional SSH key to the machine? E.g. in hcloud-cli, it's possible to supply multiple ssh-key parameters:

./hcloud server create \
	--name test \
	--image ubuntu-20.04 \
	--type cx11 \
	--ssh-key "debugging" \
	--ssh-key "locally-generated-key"

While it's generally possible to add a fixed SSH key to the machine using hetzner-existing-key-path, it would be incredibly handy to be able to add multiple ssh keys and ssh-keys unknown to the local machine. Using the ssh-key-parameter, it's possible to add a preexistent SSH key only by it's name - without the need to inject the content of the SSH key into the server running the docker-machine-driver-hetzner in the first place.
Furthermore, while working in CI/CD environments, having to inject the SSH-key content into the machine (and, for security reasons, potentially passing it through docker-layers or similar) requires much more work than adjusting a CLI-argument.

Kind regards

Time between requests to prevent Hetzner Rate Limit

At first: Many thanks for this great docker machine driver.

We've been using it for a week in testing, without any issues. Today we started using it in production and ran into the rate limits of hetzner itself. It seems like if you once hit the rate limit, you'll never get out of that situation since the machine driver keeps on retrying all requests in an endless loop.

Would it be possible to implement a cool down time when 429 errors happened?

Unfortunately I am not a Go Programmer :/

terraform rke example

Hello there, and thank you for this repo!

I just wanted to drop by an installation example of this node-driver using terraform rke[1]

1: https://registry.terraform.io/providers/rancher/rancher2/latest/docs/resources/node_driver

resource "rancher2_node_driver" "hetzner_node_driver" {
  provider          = rancher2.admin
  active            = true
  builtin           = false
  name              = "Hetzner"
  ui_url            = "https://storage.googleapis.com/hcloud-rancher-v2-ui-driver/component.js"
  url               = "https://github.com/JonasProgrammer/docker-machine-driver-hetzner/releases/download/3.7.0/docker-machine-driver-hetzner_3.7.0_linux_amd64.tar.gz"
  whitelist_domains = ["storage.googleapis.com"]
}

Please don't hesitate to close this issue, thy.

Support for "PLACEMENT GROUPS"

Hello,

Hetzner has relelased a new functionality called "PLACEMENT GROUPS" and I believe that this functionality is very important for Cluster HA setups and stability. It would be great if machine driver adds support for it and even use it by default creating a placement group then attach the nodes to that group.

Thanks and regards,
Ali Nebi

Removing machines that have already been deleted leaves its SSH key

How to reproduce:

  1. Create a new machine named worker1 using docker-machine
  2. Remove VM worker1 via the Hetzner console (or cli)
  3. Remove machine using docker-machine
  4. Create a new machine named worker1 using docker-machine

Expected result: A new machine is created

Actual result:

Error creating machine: Error in driver during machine creation: could not create ssh key: SSH key name is already used (uniqueness_error)

[BUG] Server doesn't start automatically

Hello,

When I set networks by HETZNER_NETWORKS env variable, after the server created it doesn't start automatically.
I had to start it manually throught hetzner panel.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.