Test Report: Docker_Windows 18333

                    
                      35bb0a6fdb2e8bad0653ad48b3d817d653ac2a3a:2024-03-08:33467
                    
                

Test fail (4/347)

Order failed test Duration
55 TestCertExpiration 286.46
64 TestErrorSpam/setup 70.63
88 TestFunctional/serial/MinikubeKubectlCmdDirectly 6.45
95 TestFunctional/parallel/ConfigCmd 1.67
x
+
TestCertExpiration (286.46s)

                                                
                                                
=== RUN   TestCertExpiration
=== PAUSE TestCertExpiration

                                                
                                                

                                                
                                                
=== CONT  TestCertExpiration
cert_options_test.go:123: (dbg) Run:  out/minikube-windows-amd64.exe start -p cert-expiration-622500 --memory=2048 --cert-expiration=3m --driver=docker
E0308 04:10:41.196924    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
cert_options_test.go:123: (dbg) Non-zero exit: out/minikube-windows-amd64.exe start -p cert-expiration-622500 --memory=2048 --cert-expiration=3m --driver=docker: exit status 85 (1m37.0218751s)

                                                
                                                
-- stdout --
	* [cert-expiration-622500] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
	  - KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	  - MINIKUBE_FORCE_SYSTEMD=
	  - MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
	  - MINIKUBE_LOCATION=18333
	  - MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
	* Using the docker driver based on user configuration
	* Using Docker Desktop driver with root privileges
	* Starting "cert-expiration-622500" primary control-plane node in "cert-expiration-622500" cluster
	* Pulling base image v0.0.42-1708944392-18244 ...
	* Creating docker container (CPUs=2, Memory=2048MB) ...
	* Stopping node "cert-expiration-622500"  ...
	* Powering off "cert-expiration-622500" via SSH ...
	* Deleting "cert-expiration-622500" in docker ...
	
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:09:44.995745   14940 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	! StartHost failed, but will try again: creating host: create: provisioning: ssh command error:
	command : sudo diff -u /lib/systemd/system/docker.service /lib/systemd/system/docker.service.new || { sudo mv /lib/systemd/system/docker.service.new /lib/systemd/system/docker.service; sudo systemctl -f daemon-reload && sudo systemctl -f enable docker && sudo systemctl -f restart docker; }
	err     : Process exited with status 1
	output  : --- /lib/systemd/system/docker.service	2024-02-06 21:12:51.000000000 +0000
	+++ /lib/systemd/system/docker.service.new	2024-03-08 04:11:06.908319801 +0000
	@@ -1,46 +1,49 @@
	 [Unit]
	 Description=Docker Application Container Engine
	 Documentation=https://docs.docker.com
	-After=network-online.target docker.socket firewalld.service containerd.service time-set.target
	-Wants=network-online.target containerd.service
	+BindsTo=containerd.service
	+After=network-online.target firewalld.service containerd.service
	+Wants=network-online.target
	 Requires=docker.socket
	+StartLimitBurst=3
	+StartLimitIntervalSec=60
	 
	 [Service]
	 Type=notify
	-# the default is not to use systemd for cgroups because the delegate issues still
	-# exists and systemd currently does not support the cgroup feature set required
	-# for containers run by docker
	-ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
	-ExecReload=/bin/kill -s HUP $MAINPID
	-TimeoutStartSec=0
	-RestartSec=2
	-Restart=always
	+Restart=on-failure
	 
	-# Note that StartLimit* options were moved from "Service" to "Unit" in systemd 229.
	-# Both the old, and new location are accepted by systemd 229 and up, so using the old location
	-# to make them work for either version of systemd.
	-StartLimitBurst=3
	 
	-# Note that StartLimitInterval was renamed to StartLimitIntervalSec in systemd 230.
	-# Both the old, and new name are accepted by systemd 230 and up, so using the old name to make
	-# this option work for either version of systemd.
	-StartLimitInterval=60s
	+
	+# This file is a systemd drop-in unit that inherits from the base dockerd configuration.
	+# The base configuration already specifies an 'ExecStart=...' command. The first directive
	+# here is to clear out that command inherited from the base configuration. Without this,
	+# the command from the base configuration and the command specified here are treated as
	+# a sequence of commands, which is not the desired behavior, nor is it valid -- systemd
	+# will catch this invalid input and refuse to start the service with an error like:
	+#  Service has more than one ExecStart= setting, which is only allowed for Type=oneshot services.
	+
	+# NOTE: default-ulimit=nofile is set to an arbitrary number for consistency with other
	+# container runtimes. If left unlimited, it may result in OOM issues with MySQL.
	+ExecStart=
	+ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2376 -H unix:///var/run/docker.sock --default-ulimit=nofile=1048576:1048576 --tlsverify --tlscacert /etc/docker/ca.pem --tlscert /etc/docker/server.pem --tlskey /etc/docker/server-key.pem --label provider=docker --insecure-registry 10.96.0.0/12 
	+ExecReload=/bin/kill -s HUP $MAINPID
	 
	 # Having non-zero Limit*s causes performance problems due to accounting overhead
	 # in the kernel. We recommend using cgroups to do container-local accounting.
	+LimitNOFILE=infinity
	 LimitNPROC=infinity
	 LimitCORE=infinity
	 
	-# Comment TasksMax if your systemd version does not support it.
	-# Only systemd 226 and above support this option.
	+# Uncomment TasksMax if your systemd version supports it.
	+# Only systemd 226 and above support this version.
	 TasksMax=infinity
	+TimeoutStartSec=0
	 
	 # set delegate yes so that systemd does not reset the cgroups of docker containers
	 Delegate=yes
	 
	 # kill only the docker process, not all processes in the cgroup
	 KillMode=process
	-OOMScoreAdjust=-500
	 
	 [Install]
	 WantedBy=multi-user.target
	Synchronizing state of docker.service with SysV service script with /lib/systemd/systemd-sysv-install.
	Executing: /lib/systemd/systemd-sysv-install enable docker
	Job for docker.service failed because the control process exited with error code.
	See "systemctl status docker.service" and "journalctl -xeu docker.service" for details.
	
	* Failed to start docker container. Running "minikube delete -p cert-expiration-622500" may fix it: error loading existing host. Please try running [minikube delete], then run [minikube start] again: filestore "cert-expiration-622500": open C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\cert-expiration-622500\config.json: The system cannot find the file specified.
	X Exiting due to GUEST_NOT_FOUND: Failed to start host: error loading existing host. Please try running [minikube delete], then run [minikube start] again: filestore "cert-expiration-622500": open C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\cert-expiration-622500\config.json: The system cannot find the file specified.
	* Suggestion: minikube is missing files relating to your guest environment. This can be fixed by running 'minikube delete'
	* Related issue: https://github.com/kubernetes/minikube/issues/9130

                                                
                                                
** /stderr **
cert_options_test.go:125: failed to start minikube with args: "out/minikube-windows-amd64.exe start -p cert-expiration-622500 --memory=2048 --cert-expiration=3m --driver=docker" : exit status 85
cert_options_test.go:131: (dbg) Run:  out/minikube-windows-amd64.exe start -p cert-expiration-622500 --memory=2048 --cert-expiration=8760h --driver=docker
cert_options_test.go:131: (dbg) Non-zero exit: out/minikube-windows-amd64.exe start -p cert-expiration-622500 --memory=2048 --cert-expiration=8760h --driver=docker: exit status 85 (6.8258297s)

                                                
                                                
-- stdout --
	* [cert-expiration-622500] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
	  - KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	  - MINIKUBE_FORCE_SYSTEMD=
	  - MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
	  - MINIKUBE_LOCATION=18333
	  - MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
	* Using the docker driver based on existing profile
	* Starting "cert-expiration-622500" primary control-plane node in "cert-expiration-622500" cluster
	* Pulling base image v0.0.42-1708944392-18244 ...
	
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:14:22.041600   10308 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	E0308 04:14:22.347293   10308 start.go:812] api.Load failed for cert-expiration-622500: filestore "cert-expiration-622500": open C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\cert-expiration-622500\config.json: The system cannot find the file specified.
	E0308 04:14:22.348195   10308 start.go:812] api.Load failed for cert-expiration-622500: filestore "cert-expiration-622500": open C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\cert-expiration-622500\config.json: The system cannot find the file specified.
	! StartHost failed, but will try again: error loading existing host. Please try running [minikube delete], then run [minikube start] again: filestore "cert-expiration-622500": open C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\cert-expiration-622500\config.json: The system cannot find the file specified.
	* Failed to start docker container. Running "minikube delete -p cert-expiration-622500" may fix it: error loading existing host. Please try running [minikube delete], then run [minikube start] again: filestore "cert-expiration-622500": open C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\cert-expiration-622500\config.json: The system cannot find the file specified.
	X Exiting due to GUEST_NOT_FOUND: Failed to start host: error loading existing host. Please try running [minikube delete], then run [minikube start] again: filestore "cert-expiration-622500": open C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\cert-expiration-622500\config.json: The system cannot find the file specified.
	* Suggestion: minikube is missing files relating to your guest environment. This can be fixed by running 'minikube delete'
	* Related issue: https://github.com/kubernetes/minikube/issues/9130

                                                
                                                
** /stderr **
cert_options_test.go:133: failed to start minikube after cert expiration: "out/minikube-windows-amd64.exe start -p cert-expiration-622500 --memory=2048 --cert-expiration=8760h --driver=docker" : exit status 85
cert_options_test.go:136: minikube start output did not warn about expired certs: 
-- stdout --
	* [cert-expiration-622500] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
	  - KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	  - MINIKUBE_FORCE_SYSTEMD=
	  - MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
	  - MINIKUBE_LOCATION=18333
	  - MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
	* Using the docker driver based on existing profile
	* Starting "cert-expiration-622500" primary control-plane node in "cert-expiration-622500" cluster
	* Pulling base image v0.0.42-1708944392-18244 ...
	
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:14:22.041600   10308 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	E0308 04:14:22.347293   10308 start.go:812] api.Load failed for cert-expiration-622500: filestore "cert-expiration-622500": open C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\cert-expiration-622500\config.json: The system cannot find the file specified.
	E0308 04:14:22.348195   10308 start.go:812] api.Load failed for cert-expiration-622500: filestore "cert-expiration-622500": open C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\cert-expiration-622500\config.json: The system cannot find the file specified.
	! StartHost failed, but will try again: error loading existing host. Please try running [minikube delete], then run [minikube start] again: filestore "cert-expiration-622500": open C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\cert-expiration-622500\config.json: The system cannot find the file specified.
	* Failed to start docker container. Running "minikube delete -p cert-expiration-622500" may fix it: error loading existing host. Please try running [minikube delete], then run [minikube start] again: filestore "cert-expiration-622500": open C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\cert-expiration-622500\config.json: The system cannot find the file specified.
	X Exiting due to GUEST_NOT_FOUND: Failed to start host: error loading existing host. Please try running [minikube delete], then run [minikube start] again: filestore "cert-expiration-622500": open C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\cert-expiration-622500\config.json: The system cannot find the file specified.
	* Suggestion: minikube is missing files relating to your guest environment. This can be fixed by running 'minikube delete'
	* Related issue: https://github.com/kubernetes/minikube/issues/9130

                                                
                                                
** /stderr **
cert_options_test.go:138: *** TestCertExpiration FAILED at 2024-03-08 04:14:28.7476468 +0000 UTC m=+4657.149228001
helpers_test.go:222: -----------------------post-mortem--------------------------------
helpers_test.go:230: ======>  post-mortem[TestCertExpiration]: docker inspect <======
helpers_test.go:231: (dbg) Run:  docker inspect cert-expiration-622500
helpers_test.go:235: (dbg) docker inspect cert-expiration-622500:

                                                
                                                
-- stdout --
	[
	    {
	        "CreatedAt": "2024-03-08T04:09:48Z",
	        "Driver": "local",
	        "Labels": {
	            "created_by.minikube.sigs.k8s.io": "true",
	            "name.minikube.sigs.k8s.io": "cert-expiration-622500"
	        },
	        "Mountpoint": "/var/lib/docker/volumes/cert-expiration-622500/_data",
	        "Name": "cert-expiration-622500",
	        "Options": null,
	        "Scope": "local"
	    }
	]

                                                
                                                
-- /stdout --
helpers_test.go:239: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Host}} -p cert-expiration-622500 -n cert-expiration-622500
helpers_test.go:239: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.Host}} -p cert-expiration-622500 -n cert-expiration-622500: exit status 7 (253.3896ms)

                                                
                                                
-- stdout --
	Nonexistent

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:14:29.099868    4852 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	E0308 04:14:29.198885    4852 status.go:249] status error: host: load: filestore "cert-expiration-622500": open C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\cert-expiration-622500\config.json: The system cannot find the file specified.

                                                
                                                
** /stderr **
helpers_test.go:239: status error: exit status 7 (may be ok)
helpers_test.go:241: "cert-expiration-622500" host is not running, skipping log retrieval (state="Nonexistent")
helpers_test.go:175: Cleaning up "cert-expiration-622500" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p cert-expiration-622500
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p cert-expiration-622500: (2.1283091s)
--- FAIL: TestCertExpiration (286.46s)

                                                
                                    
x
+
TestErrorSpam/setup (70.63s)

                                                
                                                
=== RUN   TestErrorSpam/setup
error_spam_test.go:81: (dbg) Run:  out/minikube-windows-amd64.exe start -p nospam-587900 -n=1 --memory=2250 --wait=false --log_dir=C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 --driver=docker
error_spam_test.go:81: (dbg) Done: out/minikube-windows-amd64.exe start -p nospam-587900 -n=1 --memory=2250 --wait=false --log_dir=C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 --driver=docker: (1m10.6334108s)
error_spam_test.go:96: unexpected stderr: "W0308 03:08:09.667026    7068 main.go:291] Unable to resolve the current Docker CLI context \"default\": context \"default\": context not found: open C:\\Users\\jenkins.minikube4\\.docker\\contexts\\meta\\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\\meta.json: The system cannot find the path specified."
error_spam_test.go:110: minikube stdout:
* [nospam-587900] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
- KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
- MINIKUBE_FORCE_SYSTEMD=
- MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
- MINIKUBE_LOCATION=18333
- MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
* Using the docker driver based on user configuration
* Using Docker Desktop driver with root privileges
* Starting "nospam-587900" primary control-plane node in "nospam-587900" cluster
* Pulling base image v0.0.42-1708944392-18244 ...
* Creating docker container (CPUs=2, Memory=2250MB) ...
* Preparing Kubernetes v1.28.4 on Docker 25.0.3 ...
- Generating certificates and keys ...
- Booting up control plane ...
- Configuring RBAC rules ...
* Configuring bridge CNI (Container Networking Interface) ...
* Verifying Kubernetes components...
- Using image gcr.io/k8s-minikube/storage-provisioner:v5
* Enabled addons: storage-provisioner, default-storageclass
* Done! kubectl is now configured to use "nospam-587900" cluster and "default" namespace by default
error_spam_test.go:111: minikube stderr:
W0308 03:08:09.667026    7068 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
--- FAIL: TestErrorSpam/setup (70.63s)

                                                
                                    
x
+
TestFunctional/serial/MinikubeKubectlCmdDirectly (6.45s)

                                                
                                                
=== RUN   TestFunctional/serial/MinikubeKubectlCmdDirectly
functional_test.go:731: link out/minikube-windows-amd64.exe out\kubectl.exe: Cannot create a file when that file already exists.
helpers_test.go:222: -----------------------post-mortem--------------------------------
helpers_test.go:230: ======>  post-mortem[TestFunctional/serial/MinikubeKubectlCmdDirectly]: docker inspect <======
helpers_test.go:231: (dbg) Run:  docker inspect functional-131400
helpers_test.go:235: (dbg) docker inspect functional-131400:

                                                
                                                
-- stdout --
	[
	    {
	        "Id": "cb7240d14b1d4ac3ab98469d7d7bcd5091041be2ae12df96652004cae9e9a74b",
	        "Created": "2024-03-08T03:10:31.341359009Z",
	        "Path": "/usr/local/bin/entrypoint",
	        "Args": [
	            "/sbin/init"
	        ],
	        "State": {
	            "Status": "running",
	            "Running": true,
	            "Paused": false,
	            "Restarting": false,
	            "OOMKilled": false,
	            "Dead": false,
	            "Pid": 24782,
	            "ExitCode": 0,
	            "Error": "",
	            "StartedAt": "2024-03-08T03:10:31.98073556Z",
	            "FinishedAt": "0001-01-01T00:00:00Z"
	        },
	        "Image": "sha256:a5b872dc86053f77fb58d93168e89c4b0fa5961a7ed628d630f6cd6decd7bca0",
	        "ResolvConfPath": "/var/lib/docker/containers/cb7240d14b1d4ac3ab98469d7d7bcd5091041be2ae12df96652004cae9e9a74b/resolv.conf",
	        "HostnamePath": "/var/lib/docker/containers/cb7240d14b1d4ac3ab98469d7d7bcd5091041be2ae12df96652004cae9e9a74b/hostname",
	        "HostsPath": "/var/lib/docker/containers/cb7240d14b1d4ac3ab98469d7d7bcd5091041be2ae12df96652004cae9e9a74b/hosts",
	        "LogPath": "/var/lib/docker/containers/cb7240d14b1d4ac3ab98469d7d7bcd5091041be2ae12df96652004cae9e9a74b/cb7240d14b1d4ac3ab98469d7d7bcd5091041be2ae12df96652004cae9e9a74b-json.log",
	        "Name": "/functional-131400",
	        "RestartCount": 0,
	        "Driver": "overlay2",
	        "Platform": "linux",
	        "MountLabel": "",
	        "ProcessLabel": "",
	        "AppArmorProfile": "",
	        "ExecIDs": null,
	        "HostConfig": {
	            "Binds": [
	                "/lib/modules:/lib/modules:ro",
	                "functional-131400:/var"
	            ],
	            "ContainerIDFile": "",
	            "LogConfig": {
	                "Type": "json-file",
	                "Config": {}
	            },
	            "NetworkMode": "functional-131400",
	            "PortBindings": {
	                "22/tcp": [
	                    {
	                        "HostIp": "127.0.0.1",
	                        "HostPort": "0"
	                    }
	                ],
	                "2376/tcp": [
	                    {
	                        "HostIp": "127.0.0.1",
	                        "HostPort": "0"
	                    }
	                ],
	                "32443/tcp": [
	                    {
	                        "HostIp": "127.0.0.1",
	                        "HostPort": "0"
	                    }
	                ],
	                "5000/tcp": [
	                    {
	                        "HostIp": "127.0.0.1",
	                        "HostPort": "0"
	                    }
	                ],
	                "8441/tcp": [
	                    {
	                        "HostIp": "127.0.0.1",
	                        "HostPort": "0"
	                    }
	                ]
	            },
	            "RestartPolicy": {
	                "Name": "no",
	                "MaximumRetryCount": 0
	            },
	            "AutoRemove": false,
	            "VolumeDriver": "",
	            "VolumesFrom": null,
	            "ConsoleSize": [
	                0,
	                0
	            ],
	            "CapAdd": null,
	            "CapDrop": null,
	            "CgroupnsMode": "host",
	            "Dns": [],
	            "DnsOptions": [],
	            "DnsSearch": [],
	            "ExtraHosts": null,
	            "GroupAdd": null,
	            "IpcMode": "private",
	            "Cgroup": "",
	            "Links": null,
	            "OomScoreAdj": 0,
	            "PidMode": "",
	            "Privileged": true,
	            "PublishAllPorts": false,
	            "ReadonlyRootfs": false,
	            "SecurityOpt": [
	                "seccomp=unconfined",
	                "apparmor=unconfined",
	                "label=disable"
	            ],
	            "Tmpfs": {
	                "/run": "",
	                "/tmp": ""
	            },
	            "UTSMode": "",
	            "UsernsMode": "",
	            "ShmSize": 67108864,
	            "Runtime": "runc",
	            "Isolation": "",
	            "CpuShares": 0,
	            "Memory": 4194304000,
	            "NanoCpus": 2000000000,
	            "CgroupParent": "",
	            "BlkioWeight": 0,
	            "BlkioWeightDevice": [],
	            "BlkioDeviceReadBps": [],
	            "BlkioDeviceWriteBps": [],
	            "BlkioDeviceReadIOps": [],
	            "BlkioDeviceWriteIOps": [],
	            "CpuPeriod": 0,
	            "CpuQuota": 0,
	            "CpuRealtimePeriod": 0,
	            "CpuRealtimeRuntime": 0,
	            "CpusetCpus": "",
	            "CpusetMems": "",
	            "Devices": [],
	            "DeviceCgroupRules": null,
	            "DeviceRequests": null,
	            "MemoryReservation": 0,
	            "MemorySwap": 4194304000,
	            "MemorySwappiness": null,
	            "OomKillDisable": false,
	            "PidsLimit": null,
	            "Ulimits": [],
	            "CpuCount": 0,
	            "CpuPercent": 0,
	            "IOMaximumIOps": 0,
	            "IOMaximumBandwidth": 0,
	            "MaskedPaths": null,
	            "ReadonlyPaths": null
	        },
	        "GraphDriver": {
	            "Data": {
	                "LowerDir": "/var/lib/docker/overlay2/f9ff5babe30f2595686440fe5c15dd8b71f167a9c277e921db958c93a22fdf36-init/diff:/var/lib/docker/overlay2/4539ebd221969e7d041c9e912e5a347a8ee855b66a0e5845fa245eca49021f33/diff",
	                "MergedDir": "/var/lib/docker/overlay2/f9ff5babe30f2595686440fe5c15dd8b71f167a9c277e921db958c93a22fdf36/merged",
	                "UpperDir": "/var/lib/docker/overlay2/f9ff5babe30f2595686440fe5c15dd8b71f167a9c277e921db958c93a22fdf36/diff",
	                "WorkDir": "/var/lib/docker/overlay2/f9ff5babe30f2595686440fe5c15dd8b71f167a9c277e921db958c93a22fdf36/work"
	            },
	            "Name": "overlay2"
	        },
	        "Mounts": [
	            {
	                "Type": "bind",
	                "Source": "/lib/modules",
	                "Destination": "/lib/modules",
	                "Mode": "ro",
	                "RW": false,
	                "Propagation": "rprivate"
	            },
	            {
	                "Type": "volume",
	                "Name": "functional-131400",
	                "Source": "/var/lib/docker/volumes/functional-131400/_data",
	                "Destination": "/var",
	                "Driver": "local",
	                "Mode": "z",
	                "RW": true,
	                "Propagation": ""
	            }
	        ],
	        "Config": {
	            "Hostname": "functional-131400",
	            "Domainname": "",
	            "User": "",
	            "AttachStdin": false,
	            "AttachStdout": false,
	            "AttachStderr": false,
	            "ExposedPorts": {
	                "22/tcp": {},
	                "2376/tcp": {},
	                "32443/tcp": {},
	                "5000/tcp": {},
	                "8441/tcp": {}
	            },
	            "Tty": true,
	            "OpenStdin": false,
	            "StdinOnce": false,
	            "Env": [
	                "container=docker",
	                "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
	            ],
	            "Cmd": null,
	            "Image": "gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08",
	            "Volumes": null,
	            "WorkingDir": "/",
	            "Entrypoint": [
	                "/usr/local/bin/entrypoint",
	                "/sbin/init"
	            ],
	            "OnBuild": null,
	            "Labels": {
	                "created_by.minikube.sigs.k8s.io": "true",
	                "mode.minikube.sigs.k8s.io": "functional-131400",
	                "name.minikube.sigs.k8s.io": "functional-131400",
	                "role.minikube.sigs.k8s.io": ""
	            },
	            "StopSignal": "SIGRTMIN+3"
	        },
	        "NetworkSettings": {
	            "Bridge": "",
	            "SandboxID": "78224d867c0a611195de8a4a2f7a77bab6ab46c74b08183d7d62a90c7c404b88",
	            "SandboxKey": "/var/run/docker/netns/78224d867c0a",
	            "Ports": {
	                "22/tcp": [
	                    {
	                        "HostIp": "127.0.0.1",
	                        "HostPort": "63407"
	                    }
	                ],
	                "2376/tcp": [
	                    {
	                        "HostIp": "127.0.0.1",
	                        "HostPort": "63408"
	                    }
	                ],
	                "32443/tcp": [
	                    {
	                        "HostIp": "127.0.0.1",
	                        "HostPort": "63409"
	                    }
	                ],
	                "5000/tcp": [
	                    {
	                        "HostIp": "127.0.0.1",
	                        "HostPort": "63410"
	                    }
	                ],
	                "8441/tcp": [
	                    {
	                        "HostIp": "127.0.0.1",
	                        "HostPort": "63411"
	                    }
	                ]
	            },
	            "HairpinMode": false,
	            "LinkLocalIPv6Address": "",
	            "LinkLocalIPv6PrefixLen": 0,
	            "SecondaryIPAddresses": null,
	            "SecondaryIPv6Addresses": null,
	            "EndpointID": "",
	            "Gateway": "",
	            "GlobalIPv6Address": "",
	            "GlobalIPv6PrefixLen": 0,
	            "IPAddress": "",
	            "IPPrefixLen": 0,
	            "IPv6Gateway": "",
	            "MacAddress": "",
	            "Networks": {
	                "functional-131400": {
	                    "IPAMConfig": {
	                        "IPv4Address": "192.168.49.2"
	                    },
	                    "Links": null,
	                    "Aliases": [
	                        "cb7240d14b1d",
	                        "functional-131400"
	                    ],
	                    "MacAddress": "02:42:c0:a8:31:02",
	                    "NetworkID": "3c60c5e9ddc1d1b08ff57cc0e5120c883f02a36f99ec37e78792afbb2c4e3150",
	                    "EndpointID": "90d1c00958c6a96a9944a868f73603dd3f0fe4dbbf39746ed39938cad5b8ad28",
	                    "Gateway": "192.168.49.1",
	                    "IPAddress": "192.168.49.2",
	                    "IPPrefixLen": 24,
	                    "IPv6Gateway": "",
	                    "GlobalIPv6Address": "",
	                    "GlobalIPv6PrefixLen": 0,
	                    "DriverOpts": null,
	                    "DNSNames": [
	                        "functional-131400",
	                        "cb7240d14b1d"
	                    ]
	                }
	            }
	        }
	    }
	]

                                                
                                                
-- /stdout --
helpers_test.go:239: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Host}} -p functional-131400 -n functional-131400
helpers_test.go:239: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.Host}} -p functional-131400 -n functional-131400: (1.2812778s)
helpers_test.go:244: <<< TestFunctional/serial/MinikubeKubectlCmdDirectly FAILED: start of post-mortem logs <<<
helpers_test.go:245: ======>  post-mortem[TestFunctional/serial/MinikubeKubectlCmdDirectly]: minikube logs <======
helpers_test.go:247: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 logs -n 25
helpers_test.go:247: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 logs -n 25: (2.6224757s)
helpers_test.go:252: TestFunctional/serial/MinikubeKubectlCmdDirectly logs: 
-- stdout --
	
	==> Audit <==
	|---------|-------------------------------------------------------------|-------------------|-------------------|---------|---------------------|---------------------|
	| Command |                            Args                             |      Profile      |       User        | Version |     Start Time      |      End Time       |
	|---------|-------------------------------------------------------------|-------------------|-------------------|---------|---------------------|---------------------|
	| pause   | nospam-587900 --log_dir                                     | nospam-587900     | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:09 UTC | 08 Mar 24 03:09 UTC |
	|         | C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 |                   |                   |         |                     |                     |
	|         | pause                                                       |                   |                   |         |                     |                     |
	| unpause | nospam-587900 --log_dir                                     | nospam-587900     | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:09 UTC | 08 Mar 24 03:09 UTC |
	|         | C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 |                   |                   |         |                     |                     |
	|         | unpause                                                     |                   |                   |         |                     |                     |
	| unpause | nospam-587900 --log_dir                                     | nospam-587900     | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:09 UTC | 08 Mar 24 03:09 UTC |
	|         | C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 |                   |                   |         |                     |                     |
	|         | unpause                                                     |                   |                   |         |                     |                     |
	| unpause | nospam-587900 --log_dir                                     | nospam-587900     | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:09 UTC | 08 Mar 24 03:09 UTC |
	|         | C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 |                   |                   |         |                     |                     |
	|         | unpause                                                     |                   |                   |         |                     |                     |
	| stop    | nospam-587900 --log_dir                                     | nospam-587900     | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:09 UTC | 08 Mar 24 03:09 UTC |
	|         | C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 |                   |                   |         |                     |                     |
	|         | stop                                                        |                   |                   |         |                     |                     |
	| stop    | nospam-587900 --log_dir                                     | nospam-587900     | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:09 UTC | 08 Mar 24 03:09 UTC |
	|         | C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 |                   |                   |         |                     |                     |
	|         | stop                                                        |                   |                   |         |                     |                     |
	| stop    | nospam-587900 --log_dir                                     | nospam-587900     | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:09 UTC | 08 Mar 24 03:09 UTC |
	|         | C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 |                   |                   |         |                     |                     |
	|         | stop                                                        |                   |                   |         |                     |                     |
	| delete  | -p nospam-587900                                            | nospam-587900     | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:09 UTC | 08 Mar 24 03:09 UTC |
	| start   | -p functional-131400                                        | functional-131400 | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:09 UTC | 08 Mar 24 03:11 UTC |
	|         | --memory=4000                                               |                   |                   |         |                     |                     |
	|         | --apiserver-port=8441                                       |                   |                   |         |                     |                     |
	|         | --wait=all --driver=docker                                  |                   |                   |         |                     |                     |
	| start   | -p functional-131400                                        | functional-131400 | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:11 UTC | 08 Mar 24 03:12 UTC |
	|         | --alsologtostderr -v=8                                      |                   |                   |         |                     |                     |
	| cache   | functional-131400 cache add                                 | functional-131400 | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC | 08 Mar 24 03:12 UTC |
	|         | registry.k8s.io/pause:3.1                                   |                   |                   |         |                     |                     |
	| cache   | functional-131400 cache add                                 | functional-131400 | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC | 08 Mar 24 03:12 UTC |
	|         | registry.k8s.io/pause:3.3                                   |                   |                   |         |                     |                     |
	| cache   | functional-131400 cache add                                 | functional-131400 | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC | 08 Mar 24 03:12 UTC |
	|         | registry.k8s.io/pause:latest                                |                   |                   |         |                     |                     |
	| cache   | functional-131400 cache add                                 | functional-131400 | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC | 08 Mar 24 03:12 UTC |
	|         | minikube-local-cache-test:functional-131400                 |                   |                   |         |                     |                     |
	| cache   | functional-131400 cache delete                              | functional-131400 | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC | 08 Mar 24 03:12 UTC |
	|         | minikube-local-cache-test:functional-131400                 |                   |                   |         |                     |                     |
	| cache   | delete                                                      | minikube          | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC | 08 Mar 24 03:12 UTC |
	|         | registry.k8s.io/pause:3.3                                   |                   |                   |         |                     |                     |
	| cache   | list                                                        | minikube          | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC | 08 Mar 24 03:12 UTC |
	| ssh     | functional-131400 ssh sudo                                  | functional-131400 | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC | 08 Mar 24 03:12 UTC |
	|         | crictl images                                               |                   |                   |         |                     |                     |
	| ssh     | functional-131400                                           | functional-131400 | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC | 08 Mar 24 03:12 UTC |
	|         | ssh sudo docker rmi                                         |                   |                   |         |                     |                     |
	|         | registry.k8s.io/pause:latest                                |                   |                   |         |                     |                     |
	| ssh     | functional-131400 ssh                                       | functional-131400 | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC |                     |
	|         | sudo crictl inspecti                                        |                   |                   |         |                     |                     |
	|         | registry.k8s.io/pause:latest                                |                   |                   |         |                     |                     |
	| cache   | functional-131400 cache reload                              | functional-131400 | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC | 08 Mar 24 03:12 UTC |
	| ssh     | functional-131400 ssh                                       | functional-131400 | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC | 08 Mar 24 03:12 UTC |
	|         | sudo crictl inspecti                                        |                   |                   |         |                     |                     |
	|         | registry.k8s.io/pause:latest                                |                   |                   |         |                     |                     |
	| cache   | delete                                                      | minikube          | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC | 08 Mar 24 03:12 UTC |
	|         | registry.k8s.io/pause:3.1                                   |                   |                   |         |                     |                     |
	| cache   | delete                                                      | minikube          | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC | 08 Mar 24 03:12 UTC |
	|         | registry.k8s.io/pause:latest                                |                   |                   |         |                     |                     |
	| kubectl | functional-131400 kubectl --                                | functional-131400 | minikube4\jenkins | v1.32.0 | 08 Mar 24 03:12 UTC | 08 Mar 24 03:12 UTC |
	|         | --context functional-131400                                 |                   |                   |         |                     |                     |
	|         | get pods                                                    |                   |                   |         |                     |                     |
	|---------|-------------------------------------------------------------|-------------------|-------------------|---------|---------------------|---------------------|
	
	
	==> Last Start <==
	Log file created at: 2024/03/08 03:11:25
	Running on machine: minikube4
	Binary: Built with gc go1.22.0 for windows/amd64
	Log line format: [IWEF]mmdd hh:mm:ss.uuuuuu threadid file:line] msg
	I0308 03:11:25.675326    9128 out.go:291] Setting OutFile to fd 724 ...
	I0308 03:11:25.676159    9128 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 03:11:25.676680    9128 out.go:304] Setting ErrFile to fd 884...
	I0308 03:11:25.676680    9128 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 03:11:25.701475    9128 out.go:298] Setting JSON to false
	I0308 03:11:25.704936    9128 start.go:129] hostinfo: {"hostname":"minikube4","uptime":8623,"bootTime":1709858862,"procs":206,"os":"windows","platform":"Microsoft Windows 10 Enterprise N","platformFamily":"Standalone Workstation","platformVersion":"10.0.19045.4046 Build 19045.4046","kernelVersion":"10.0.19045.4046 Build 19045.4046","kernelArch":"x86_64","virtualizationSystem":"","virtualizationRole":"","hostId":"df6bfb5f-73f2-4acb-9365-df7854ecbb28"}
	W0308 03:11:25.705464    9128 start.go:137] gopshost.Virtualization returned error: not implemented yet
	I0308 03:11:25.709284    9128 out.go:177] * [functional-131400] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
	I0308 03:11:25.711243    9128 notify.go:220] Checking for updates...
	I0308 03:11:25.712242    9128 out.go:177]   - KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	I0308 03:11:25.715511    9128 out.go:177]   - MINIKUBE_FORCE_SYSTEMD=
	I0308 03:11:25.717620    9128 out.go:177]   - MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
	I0308 03:11:25.719731    9128 out.go:177]   - MINIKUBE_LOCATION=18333
	I0308 03:11:25.721913    9128 out.go:177]   - MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
	I0308 03:11:25.724797    9128 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
	I0308 03:11:25.724797    9128 driver.go:392] Setting default libvirt URI to qemu:///system
	I0308 03:11:26.008918    9128 docker.go:122] docker version: linux-25.0.3:Docker Desktop 4.27.2 (137060)
	I0308 03:11:26.017300    9128 cli_runner.go:164] Run: docker system info --format "{{json .}}"
	I0308 03:11:26.367995    9128 info.go:266] docker info: {ID:c92f2ba1-df38-4a47-85e3-68e1162cada5 Containers:1 ContainersRunning:1 ContainersPaused:0 ContainersStopped:0 Images:1 Driver:overlay2 DriverStatus:[[Backing Filesystem extfs] [Supports d_type true] [Using metacopy false] [Native Overlay Diff true] [userxattr false]] SystemStatus:<nil> Plugins:{Volume:[local] Network:[bridge host ipvlan macvlan null overlay] Authorization:<nil> Log:[awslogs fluentd gcplogs gelf journald json-file local splunk syslog]} MemoryLimit:true SwapLimit:true KernelMemory:false KernelMemoryTCP:true CPUCfsPeriod:true CPUCfsQuota:true CPUShares:true CPUSet:true PidsLimit:true IPv4Forwarding:true BridgeNfIptables:true BridgeNfIP6Tables:true Debug:false NFd:60 OomKillDisable:true NGoroutines:82 SystemTime:2024-03-08 03:11:26.326345095 +0000 UTC LoggingDriver:json-file CgroupDriver:cgroupfs NEventsListener:10 KernelVersion:5.15.133.1-microsoft-standard-WSL2 OperatingSystem:Docker Desktop OSType:linux Architecture:x86_64 Ind
exServerAddress:https://index.docker.io/v1/ RegistryConfig:{AllowNondistributableArtifactsCIDRs:[] AllowNondistributableArtifactsHostnames:[] InsecureRegistryCIDRs:[127.0.0.0/8] IndexConfigs:{DockerIo:{Name:docker.io Mirrors:[] Secure:true Official:true}} Mirrors:[]} NCPU:16 MemTotal:33657516032 GenericResources:<nil> DockerRootDir:/var/lib/docker HTTPProxy:http.docker.internal:3128 HTTPSProxy:http.docker.internal:3128 NoProxy:hubproxy.docker.internal Name:docker-desktop Labels:[] ExperimentalBuild:false ServerVersion:25.0.3 ClusterStore: ClusterAdvertise: Runtimes:{Runc:{Path:runc}} DefaultRuntime:runc Swarm:{NodeID: NodeAddr: LocalNodeState:inactive ControlAvailable:false Error: RemoteManagers:<nil>} LiveRestoreEnabled:false Isolation: InitBinary:docker-init ContainerdCommit:{ID:ae07eda36dd25f8a1b98dfbf587313b99c0190bb Expected:ae07eda36dd25f8a1b98dfbf587313b99c0190bb} RuncCommit:{ID:v1.1.12-0-g51d5e94 Expected:v1.1.12-0-g51d5e94} InitCommit:{ID:de40ad0 Expected:de40ad0} SecurityOptions:[name=seccomp,profil
e=unconfined] ProductLicense: Warnings:[WARNING: No blkio throttle.read_bps_device support WARNING: No blkio throttle.write_bps_device support WARNING: No blkio throttle.read_iops_device support WARNING: No blkio throttle.write_iops_device support WARNING: daemon is not using the default seccomp profile] ServerErrors:[] ClientInfo:{Debug:false Plugins:[map[Name:buildx Path:C:\Program Files\Docker\cli-plugins\docker-buildx.exe SchemaVersion:0.1.0 ShortDescription:Docker Buildx Vendor:Docker Inc. Version:v0.12.1-desktop.4] map[Name:compose Path:C:\Program Files\Docker\cli-plugins\docker-compose.exe SchemaVersion:0.1.0 ShortDescription:Docker Compose Vendor:Docker Inc. Version:v2.24.5-desktop.1] map[Name:debug Path:C:\Program Files\Docker\cli-plugins\docker-debug.exe SchemaVersion:0.1.0 ShortDescription:Get a shell into any image or container. Vendor:Docker Inc. Version:0.0.24] map[Name:dev Path:C:\Program Files\Docker\cli-plugins\docker-dev.exe SchemaVersion:0.1.0 ShortDescription:Docker Dev Environments Vendor
:Docker Inc. Version:v0.1.0] map[Name:extension Path:C:\Program Files\Docker\cli-plugins\docker-extension.exe SchemaVersion:0.1.0 ShortDescription:Manages Docker extensions Vendor:Docker Inc. Version:v0.2.21] map[Name:feedback Path:C:\Program Files\Docker\cli-plugins\docker-feedback.exe SchemaVersion:0.1.0 ShortDescription:Provide feedback, right in your terminal! Vendor:Docker Inc. Version:v1.0.4] map[Name:init Path:C:\Program Files\Docker\cli-plugins\docker-init.exe SchemaVersion:0.1.0 ShortDescription:Creates Docker-related starter files for your project Vendor:Docker Inc. Version:v1.0.0] map[Name:sbom Path:C:\Program Files\Docker\cli-plugins\docker-sbom.exe SchemaVersion:0.1.0 ShortDescription:View the packaged-based Software Bill Of Materials (SBOM) for an image URL:https://github.com/docker/sbom-cli-plugin Vendor:Anchore Inc. Version:0.6.0] map[Name:scan Path:C:\Program Files\Docker\cli-plugins\docker-scan.exe SchemaVersion:0.1.0 ShortDescription:Docker Scan Vendor:Docker Inc. Version:v0.26.0] map[Name:
scout Path:C:\Program Files\Docker\cli-plugins\docker-scout.exe SchemaVersion:0.1.0 ShortDescription:Docker Scout Vendor:Docker Inc. Version:v1.4.1]] Warnings:<nil>}}
	I0308 03:11:26.370785    9128 out.go:177] * Using the docker driver based on existing profile
	I0308 03:11:26.373443    9128 start.go:297] selected driver: docker
	I0308 03:11:26.373443    9128 start.go:901] validating driver "docker" against &{Name:functional-131400 KeepContext:false EmbedCerts:false MinikubeISO: KicBaseImage:gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 Memory:4000 CPUs:2 DiskSize:20000 Driver:docker HyperkitVpnKitSock: HyperkitVSockPorts:[] DockerEnv:[] ContainerVolumeMounts:[] InsecureRegistry:[] RegistryMirror:[] HostOnlyCIDR:192.168.59.1/24 HypervVirtualSwitch: HypervUseExternalSwitch:false HypervExternalAdapter: KVMNetwork:default KVMQemuURI:qemu:///system KVMGPU:false KVMHidden:false KVMNUMACount:1 APIServerPort:8441 DockerOpt:[] DisableDriverMounts:false NFSShare:[] NFSSharesRoot:/nfsshares UUID: NoVTXCheck:false DNSProxy:false HostDNSResolver:true HostOnlyNicType:virtio NatNicType:virtio SSHIPAddress: SSHUser:root SSHKey: SSHPort:22 KubernetesConfig:{KubernetesVersion:v1.28.4 ClusterName:functional-131400 Namespace:default APIServerHAVIP: APIServerNa
me:minikubeCA APIServerNames:[] APIServerIPs:[] DNSDomain:cluster.local ContainerRuntime:docker CRISocket: NetworkPlugin:cni FeatureGates: ServiceCIDR:10.96.0.0/12 ImageRepository: LoadBalancerStartIP: LoadBalancerEndIP: CustomIngressCert: RegistryAliases: ExtraOptions:[] ShouldLoadCachedImages:true EnableDefaultCNI:false CNI:} Nodes:[{Name: IP:192.168.49.2 Port:8441 KubernetesVersion:v1.28.4 ContainerRuntime:docker ControlPlane:true Worker:true}] Addons:map[default-storageclass:true storage-provisioner:true] CustomAddonImages:map[] CustomAddonRegistries:map[] VerifyComponents:map[apiserver:true apps_running:true default_sa:true extra:true kubelet:true node_ready:true system_pods:true] StartHostTimeout:6m0s ScheduledStop:<nil> ExposedPorts:[] ListenAddress: Network: Subnet: MultiNodeRequested:false ExtraDisks:0 CertExpiration:26280h0m0s Mount:false MountString:C:\Users\jenkins.minikube4:/minikube-host Mount9PVersion:9p2000.L MountGID:docker MountIP: MountMSize:262144 MountOptions:[] MountPort:0 MountType:9p M
ountUID:docker BinaryMirror: DisableOptimizations:false DisableMetrics:false CustomQemuFirmwarePath: SocketVMnetClientPath: SocketVMnetPath: StaticIP: SSHAuthSock: SSHAgentPID:0 GPUs: AutoPauseInterval:1m0s}
	I0308 03:11:26.373443    9128 start.go:912] status for docker: {Installed:true Healthy:true Running:false NeedsImprovement:false Error:<nil> Reason: Fix: Doc: Version:}
	I0308 03:11:26.392060    9128 cli_runner.go:164] Run: docker system info --format "{{json .}}"
	I0308 03:11:26.742740    9128 info.go:266] docker info: {ID:c92f2ba1-df38-4a47-85e3-68e1162cada5 Containers:1 ContainersRunning:1 ContainersPaused:0 ContainersStopped:0 Images:1 Driver:overlay2 DriverStatus:[[Backing Filesystem extfs] [Supports d_type true] [Using metacopy false] [Native Overlay Diff true] [userxattr false]] SystemStatus:<nil> Plugins:{Volume:[local] Network:[bridge host ipvlan macvlan null overlay] Authorization:<nil> Log:[awslogs fluentd gcplogs gelf journald json-file local splunk syslog]} MemoryLimit:true SwapLimit:true KernelMemory:false KernelMemoryTCP:true CPUCfsPeriod:true CPUCfsQuota:true CPUShares:true CPUSet:true PidsLimit:true IPv4Forwarding:true BridgeNfIptables:true BridgeNfIP6Tables:true Debug:false NFd:60 OomKillDisable:true NGoroutines:82 SystemTime:2024-03-08 03:11:26.702624756 +0000 UTC LoggingDriver:json-file CgroupDriver:cgroupfs NEventsListener:10 KernelVersion:5.15.133.1-microsoft-standard-WSL2 OperatingSystem:Docker Desktop OSType:linux Architecture:x86_64 Ind
exServerAddress:https://index.docker.io/v1/ RegistryConfig:{AllowNondistributableArtifactsCIDRs:[] AllowNondistributableArtifactsHostnames:[] InsecureRegistryCIDRs:[127.0.0.0/8] IndexConfigs:{DockerIo:{Name:docker.io Mirrors:[] Secure:true Official:true}} Mirrors:[]} NCPU:16 MemTotal:33657516032 GenericResources:<nil> DockerRootDir:/var/lib/docker HTTPProxy:http.docker.internal:3128 HTTPSProxy:http.docker.internal:3128 NoProxy:hubproxy.docker.internal Name:docker-desktop Labels:[] ExperimentalBuild:false ServerVersion:25.0.3 ClusterStore: ClusterAdvertise: Runtimes:{Runc:{Path:runc}} DefaultRuntime:runc Swarm:{NodeID: NodeAddr: LocalNodeState:inactive ControlAvailable:false Error: RemoteManagers:<nil>} LiveRestoreEnabled:false Isolation: InitBinary:docker-init ContainerdCommit:{ID:ae07eda36dd25f8a1b98dfbf587313b99c0190bb Expected:ae07eda36dd25f8a1b98dfbf587313b99c0190bb} RuncCommit:{ID:v1.1.12-0-g51d5e94 Expected:v1.1.12-0-g51d5e94} InitCommit:{ID:de40ad0 Expected:de40ad0} SecurityOptions:[name=seccomp,profil
e=unconfined] ProductLicense: Warnings:[WARNING: No blkio throttle.read_bps_device support WARNING: No blkio throttle.write_bps_device support WARNING: No blkio throttle.read_iops_device support WARNING: No blkio throttle.write_iops_device support WARNING: daemon is not using the default seccomp profile] ServerErrors:[] ClientInfo:{Debug:false Plugins:[map[Name:buildx Path:C:\Program Files\Docker\cli-plugins\docker-buildx.exe SchemaVersion:0.1.0 ShortDescription:Docker Buildx Vendor:Docker Inc. Version:v0.12.1-desktop.4] map[Name:compose Path:C:\Program Files\Docker\cli-plugins\docker-compose.exe SchemaVersion:0.1.0 ShortDescription:Docker Compose Vendor:Docker Inc. Version:v2.24.5-desktop.1] map[Name:debug Path:C:\Program Files\Docker\cli-plugins\docker-debug.exe SchemaVersion:0.1.0 ShortDescription:Get a shell into any image or container. Vendor:Docker Inc. Version:0.0.24] map[Name:dev Path:C:\Program Files\Docker\cli-plugins\docker-dev.exe SchemaVersion:0.1.0 ShortDescription:Docker Dev Environments Vendor
:Docker Inc. Version:v0.1.0] map[Name:extension Path:C:\Program Files\Docker\cli-plugins\docker-extension.exe SchemaVersion:0.1.0 ShortDescription:Manages Docker extensions Vendor:Docker Inc. Version:v0.2.21] map[Name:feedback Path:C:\Program Files\Docker\cli-plugins\docker-feedback.exe SchemaVersion:0.1.0 ShortDescription:Provide feedback, right in your terminal! Vendor:Docker Inc. Version:v1.0.4] map[Name:init Path:C:\Program Files\Docker\cli-plugins\docker-init.exe SchemaVersion:0.1.0 ShortDescription:Creates Docker-related starter files for your project Vendor:Docker Inc. Version:v1.0.0] map[Name:sbom Path:C:\Program Files\Docker\cli-plugins\docker-sbom.exe SchemaVersion:0.1.0 ShortDescription:View the packaged-based Software Bill Of Materials (SBOM) for an image URL:https://github.com/docker/sbom-cli-plugin Vendor:Anchore Inc. Version:0.6.0] map[Name:scan Path:C:\Program Files\Docker\cli-plugins\docker-scan.exe SchemaVersion:0.1.0 ShortDescription:Docker Scan Vendor:Docker Inc. Version:v0.26.0] map[Name:
scout Path:C:\Program Files\Docker\cli-plugins\docker-scout.exe SchemaVersion:0.1.0 ShortDescription:Docker Scout Vendor:Docker Inc. Version:v1.4.1]] Warnings:<nil>}}
	I0308 03:11:26.845703    9128 cni.go:84] Creating CNI manager for ""
	I0308 03:11:26.845703    9128 cni.go:158] "docker" driver + "docker" container runtime found on kubernetes v1.24+, recommending bridge
	I0308 03:11:26.845703    9128 start.go:340] cluster config:
	{Name:functional-131400 KeepContext:false EmbedCerts:false MinikubeISO: KicBaseImage:gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 Memory:4000 CPUs:2 DiskSize:20000 Driver:docker HyperkitVpnKitSock: HyperkitVSockPorts:[] DockerEnv:[] ContainerVolumeMounts:[] InsecureRegistry:[] RegistryMirror:[] HostOnlyCIDR:192.168.59.1/24 HypervVirtualSwitch: HypervUseExternalSwitch:false HypervExternalAdapter: KVMNetwork:default KVMQemuURI:qemu:///system KVMGPU:false KVMHidden:false KVMNUMACount:1 APIServerPort:8441 DockerOpt:[] DisableDriverMounts:false NFSShare:[] NFSSharesRoot:/nfsshares UUID: NoVTXCheck:false DNSProxy:false HostDNSResolver:true HostOnlyNicType:virtio NatNicType:virtio SSHIPAddress: SSHUser:root SSHKey: SSHPort:22 KubernetesConfig:{KubernetesVersion:v1.28.4 ClusterName:functional-131400 Namespace:default APIServerHAVIP: APIServerName:minikubeCA APIServerNames:[] APIServerIPs:[] DNSDomain:cluster.local Containe
rRuntime:docker CRISocket: NetworkPlugin:cni FeatureGates: ServiceCIDR:10.96.0.0/12 ImageRepository: LoadBalancerStartIP: LoadBalancerEndIP: CustomIngressCert: RegistryAliases: ExtraOptions:[] ShouldLoadCachedImages:true EnableDefaultCNI:false CNI:} Nodes:[{Name: IP:192.168.49.2 Port:8441 KubernetesVersion:v1.28.4 ContainerRuntime:docker ControlPlane:true Worker:true}] Addons:map[default-storageclass:true storage-provisioner:true] CustomAddonImages:map[] CustomAddonRegistries:map[] VerifyComponents:map[apiserver:true apps_running:true default_sa:true extra:true kubelet:true node_ready:true system_pods:true] StartHostTimeout:6m0s ScheduledStop:<nil> ExposedPorts:[] ListenAddress: Network: Subnet: MultiNodeRequested:false ExtraDisks:0 CertExpiration:26280h0m0s Mount:false MountString:C:\Users\jenkins.minikube4:/minikube-host Mount9PVersion:9p2000.L MountGID:docker MountIP: MountMSize:262144 MountOptions:[] MountPort:0 MountType:9p MountUID:docker BinaryMirror: DisableOptimizations:false DisableMetrics:false Cus
tomQemuFirmwarePath: SocketVMnetClientPath: SocketVMnetPath: StaticIP: SSHAuthSock: SSHAgentPID:0 GPUs: AutoPauseInterval:1m0s}
	I0308 03:11:26.849788    9128 out.go:177] * Starting "functional-131400" primary control-plane node in "functional-131400" cluster
	I0308 03:11:26.852053    9128 cache.go:121] Beginning downloading kic base image for docker with docker
	I0308 03:11:26.855312    9128 out.go:177] * Pulling base image v0.0.42-1708944392-18244 ...
	I0308 03:11:26.857033    9128 preload.go:132] Checking if preload exists for k8s version v1.28.4 and runtime docker
	I0308 03:11:26.857820    9128 image.go:79] Checking for gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 in local docker daemon
	I0308 03:11:26.857820    9128 preload.go:147] Found local preload: C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\preloaded-tarball\preloaded-images-k8s-v18-v1.28.4-docker-overlay2-amd64.tar.lz4
	I0308 03:11:26.857820    9128 cache.go:56] Caching tarball of preloaded images
	I0308 03:11:26.858348    9128 preload.go:173] Found C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\preloaded-tarball\preloaded-images-k8s-v18-v1.28.4-docker-overlay2-amd64.tar.lz4 in cache, skipping download
	I0308 03:11:26.858515    9128 cache.go:59] Finished verifying existence of preloaded tar for v1.28.4 on docker
	I0308 03:11:26.858639    9128 profile.go:142] Saving config to C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\config.json ...
	I0308 03:11:27.040963    9128 image.go:83] Found gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 in local docker daemon, skipping pull
	I0308 03:11:27.040963    9128 cache.go:144] gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 exists in daemon, skipping load
	I0308 03:11:27.040963    9128 cache.go:194] Successfully downloaded all kic artifacts
	I0308 03:11:27.040963    9128 start.go:360] acquireMachinesLock for functional-131400: {Name:mkd7a74901edab13b601b415e52511e4b1af54e8 Clock:{} Delay:500ms Timeout:10m0s Cancel:<nil>}
	I0308 03:11:27.041521    9128 start.go:364] duration metric: took 558.3µs to acquireMachinesLock for "functional-131400"
	I0308 03:11:27.041731    9128 start.go:96] Skipping create...Using existing machine configuration
	I0308 03:11:27.041731    9128 fix.go:54] fixHost starting: 
	I0308 03:11:27.059636    9128 cli_runner.go:164] Run: docker container inspect functional-131400 --format={{.State.Status}}
	I0308 03:11:27.225094    9128 fix.go:112] recreateIfNeeded on functional-131400: state=Running err=<nil>
	W0308 03:11:27.225094    9128 fix.go:138] unexpected machine state, will restart: <nil>
	I0308 03:11:27.229000    9128 out.go:177] * Updating the running docker "functional-131400" container ...
	I0308 03:11:27.234724    9128 machine.go:94] provisionDockerMachine start ...
	I0308 03:11:27.242303    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:27.418253    9128 main.go:141] libmachine: Using SSH client type: native
	I0308 03:11:27.418989    9128 main.go:141] libmachine: &{{{<nil> 0 [] [] []} docker [0x9a9d80] 0x9ac960 <nil>  [] 0s} 127.0.0.1 63407 <nil> <nil>}
	I0308 03:11:27.419058    9128 main.go:141] libmachine: About to run SSH command:
	hostname
	I0308 03:11:27.603299    9128 main.go:141] libmachine: SSH cmd err, output: <nil>: functional-131400
	
	I0308 03:11:27.603299    9128 ubuntu.go:169] provisioning hostname "functional-131400"
	I0308 03:11:27.613856    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:27.812441    9128 main.go:141] libmachine: Using SSH client type: native
	I0308 03:11:27.812441    9128 main.go:141] libmachine: &{{{<nil> 0 [] [] []} docker [0x9a9d80] 0x9ac960 <nil>  [] 0s} 127.0.0.1 63407 <nil> <nil>}
	I0308 03:11:27.812441    9128 main.go:141] libmachine: About to run SSH command:
	sudo hostname functional-131400 && echo "functional-131400" | sudo tee /etc/hostname
	I0308 03:11:28.031625    9128 main.go:141] libmachine: SSH cmd err, output: <nil>: functional-131400
	
	I0308 03:11:28.042671    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:28.224403    9128 main.go:141] libmachine: Using SSH client type: native
	I0308 03:11:28.224974    9128 main.go:141] libmachine: &{{{<nil> 0 [] [] []} docker [0x9a9d80] 0x9ac960 <nil>  [] 0s} 127.0.0.1 63407 <nil> <nil>}
	I0308 03:11:28.224974    9128 main.go:141] libmachine: About to run SSH command:
	
			if ! grep -xq '.*\sfunctional-131400' /etc/hosts; then
				if grep -xq '127.0.1.1\s.*' /etc/hosts; then
					sudo sed -i 's/^127.0.1.1\s.*/127.0.1.1 functional-131400/g' /etc/hosts;
				else 
					echo '127.0.1.1 functional-131400' | sudo tee -a /etc/hosts; 
				fi
			fi
	I0308 03:11:28.395455    9128 main.go:141] libmachine: SSH cmd err, output: <nil>: 
	I0308 03:11:28.395455    9128 ubuntu.go:175] set auth options {CertDir:C:\Users\jenkins.minikube4\minikube-integration\.minikube CaCertPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\ca.pem CaPrivateKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\ca-key.pem CaCertRemotePath:/etc/docker/ca.pem ServerCertPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\server.pem ServerKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\server-key.pem ClientKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\key.pem ServerCertRemotePath:/etc/docker/server.pem ServerKeyRemotePath:/etc/docker/server-key.pem ClientCertPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\cert.pem ServerCertSANs:[] StorePath:C:\Users\jenkins.minikube4\minikube-integration\.minikube}
	I0308 03:11:28.395455    9128 ubuntu.go:177] setting up certificates
	I0308 03:11:28.395455    9128 provision.go:84] configureAuth start
	I0308 03:11:28.404080    9128 cli_runner.go:164] Run: docker container inspect -f "{{range .NetworkSettings.Networks}}{{.IPAddress}},{{.GlobalIPv6Address}}{{end}}" functional-131400
	I0308 03:11:28.562028    9128 provision.go:143] copyHostCerts
	I0308 03:11:28.562028    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\ca.pem -> C:\Users\jenkins.minikube4\minikube-integration\.minikube/ca.pem
	I0308 03:11:28.562028    9128 exec_runner.go:144] found C:\Users\jenkins.minikube4\minikube-integration\.minikube/ca.pem, removing ...
	I0308 03:11:28.562028    9128 exec_runner.go:203] rm: C:\Users\jenkins.minikube4\minikube-integration\.minikube\ca.pem
	I0308 03:11:28.562976    9128 exec_runner.go:151] cp: C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\ca.pem --> C:\Users\jenkins.minikube4\minikube-integration\.minikube/ca.pem (1078 bytes)
	I0308 03:11:28.563775    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\cert.pem -> C:\Users\jenkins.minikube4\minikube-integration\.minikube/cert.pem
	I0308 03:11:28.563775    9128 exec_runner.go:144] found C:\Users\jenkins.minikube4\minikube-integration\.minikube/cert.pem, removing ...
	I0308 03:11:28.563775    9128 exec_runner.go:203] rm: C:\Users\jenkins.minikube4\minikube-integration\.minikube\cert.pem
	I0308 03:11:28.564504    9128 exec_runner.go:151] cp: C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\cert.pem --> C:\Users\jenkins.minikube4\minikube-integration\.minikube/cert.pem (1123 bytes)
	I0308 03:11:28.564899    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\key.pem -> C:\Users\jenkins.minikube4\minikube-integration\.minikube/key.pem
	I0308 03:11:28.565599    9128 exec_runner.go:144] found C:\Users\jenkins.minikube4\minikube-integration\.minikube/key.pem, removing ...
	I0308 03:11:28.565656    9128 exec_runner.go:203] rm: C:\Users\jenkins.minikube4\minikube-integration\.minikube\key.pem
	I0308 03:11:28.565977    9128 exec_runner.go:151] cp: C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\key.pem --> C:\Users\jenkins.minikube4\minikube-integration\.minikube/key.pem (1679 bytes)
	I0308 03:11:28.566786    9128 provision.go:117] generating server cert: C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\server.pem ca-key=C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\ca.pem private-key=C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\ca-key.pem org=jenkins.functional-131400 san=[127.0.0.1 192.168.49.2 functional-131400 localhost minikube]
	I0308 03:11:28.755084    9128 provision.go:177] copyRemoteCerts
	I0308 03:11:28.776010    9128 ssh_runner.go:195] Run: sudo mkdir -p /etc/docker /etc/docker /etc/docker
	I0308 03:11:28.783560    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:28.953164    9128 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:63407 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\functional-131400\id_rsa Username:docker}
	I0308 03:11:29.071352    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\ca.pem -> /etc/docker/ca.pem
	I0308 03:11:29.071352    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\ca.pem --> /etc/docker/ca.pem (1078 bytes)
	I0308 03:11:29.112776    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\server.pem -> /etc/docker/server.pem
	I0308 03:11:29.112776    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\server.pem --> /etc/docker/server.pem (1220 bytes)
	I0308 03:11:29.153081    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\server-key.pem -> /etc/docker/server-key.pem
	I0308 03:11:29.153202    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\server-key.pem --> /etc/docker/server-key.pem (1679 bytes)
	I0308 03:11:29.198886    9128 provision.go:87] duration metric: took 803.3935ms to configureAuth
	I0308 03:11:29.199883    9128 ubuntu.go:193] setting minikube options for container-runtime
	I0308 03:11:29.199883    9128 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
	I0308 03:11:29.209560    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:29.378535    9128 main.go:141] libmachine: Using SSH client type: native
	I0308 03:11:29.379107    9128 main.go:141] libmachine: &{{{<nil> 0 [] [] []} docker [0x9a9d80] 0x9ac960 <nil>  [] 0s} 127.0.0.1 63407 <nil> <nil>}
	I0308 03:11:29.379234    9128 main.go:141] libmachine: About to run SSH command:
	df --output=fstype / | tail -n 1
	I0308 03:11:29.565922    9128 main.go:141] libmachine: SSH cmd err, output: <nil>: overlay
	
	I0308 03:11:29.565992    9128 ubuntu.go:71] root file system type: overlay
	I0308 03:11:29.566048    9128 provision.go:314] Updating docker unit: /lib/systemd/system/docker.service ...
	I0308 03:11:29.575740    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:29.753074    9128 main.go:141] libmachine: Using SSH client type: native
	I0308 03:11:29.753074    9128 main.go:141] libmachine: &{{{<nil> 0 [] [] []} docker [0x9a9d80] 0x9ac960 <nil>  [] 0s} 127.0.0.1 63407 <nil> <nil>}
	I0308 03:11:29.753074    9128 main.go:141] libmachine: About to run SSH command:
	sudo mkdir -p /lib/systemd/system && printf %!s(MISSING) "[Unit]
	Description=Docker Application Container Engine
	Documentation=https://docs.docker.com
	BindsTo=containerd.service
	After=network-online.target firewalld.service containerd.service
	Wants=network-online.target
	Requires=docker.socket
	StartLimitBurst=3
	StartLimitIntervalSec=60
	
	[Service]
	Type=notify
	Restart=on-failure
	
	
	
	# This file is a systemd drop-in unit that inherits from the base dockerd configuration.
	# The base configuration already specifies an 'ExecStart=...' command. The first directive
	# here is to clear out that command inherited from the base configuration. Without this,
	# the command from the base configuration and the command specified here are treated as
	# a sequence of commands, which is not the desired behavior, nor is it valid -- systemd
	# will catch this invalid input and refuse to start the service with an error like:
	#  Service has more than one ExecStart= setting, which is only allowed for Type=oneshot services.
	
	# NOTE: default-ulimit=nofile is set to an arbitrary number for consistency with other
	# container runtimes. If left unlimited, it may result in OOM issues with MySQL.
	ExecStart=
	ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2376 -H unix:///var/run/docker.sock --default-ulimit=nofile=1048576:1048576 --tlsverify --tlscacert /etc/docker/ca.pem --tlscert /etc/docker/server.pem --tlskey /etc/docker/server-key.pem --label provider=docker --insecure-registry 10.96.0.0/12 
	ExecReload=/bin/kill -s HUP \$MAINPID
	
	# Having non-zero Limit*s causes performance problems due to accounting overhead
	# in the kernel. We recommend using cgroups to do container-local accounting.
	LimitNOFILE=infinity
	LimitNPROC=infinity
	LimitCORE=infinity
	
	# Uncomment TasksMax if your systemd version supports it.
	# Only systemd 226 and above support this version.
	TasksMax=infinity
	TimeoutStartSec=0
	
	# set delegate yes so that systemd does not reset the cgroups of docker containers
	Delegate=yes
	
	# kill only the docker process, not all processes in the cgroup
	KillMode=process
	
	[Install]
	WantedBy=multi-user.target
	" | sudo tee /lib/systemd/system/docker.service.new
	I0308 03:11:29.954574    9128 main.go:141] libmachine: SSH cmd err, output: <nil>: [Unit]
	Description=Docker Application Container Engine
	Documentation=https://docs.docker.com
	BindsTo=containerd.service
	After=network-online.target firewalld.service containerd.service
	Wants=network-online.target
	Requires=docker.socket
	StartLimitBurst=3
	StartLimitIntervalSec=60
	
	[Service]
	Type=notify
	Restart=on-failure
	
	
	
	# This file is a systemd drop-in unit that inherits from the base dockerd configuration.
	# The base configuration already specifies an 'ExecStart=...' command. The first directive
	# here is to clear out that command inherited from the base configuration. Without this,
	# the command from the base configuration and the command specified here are treated as
	# a sequence of commands, which is not the desired behavior, nor is it valid -- systemd
	# will catch this invalid input and refuse to start the service with an error like:
	#  Service has more than one ExecStart= setting, which is only allowed for Type=oneshot services.
	
	# NOTE: default-ulimit=nofile is set to an arbitrary number for consistency with other
	# container runtimes. If left unlimited, it may result in OOM issues with MySQL.
	ExecStart=
	ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2376 -H unix:///var/run/docker.sock --default-ulimit=nofile=1048576:1048576 --tlsverify --tlscacert /etc/docker/ca.pem --tlscert /etc/docker/server.pem --tlskey /etc/docker/server-key.pem --label provider=docker --insecure-registry 10.96.0.0/12 
	ExecReload=/bin/kill -s HUP $MAINPID
	
	# Having non-zero Limit*s causes performance problems due to accounting overhead
	# in the kernel. We recommend using cgroups to do container-local accounting.
	LimitNOFILE=infinity
	LimitNPROC=infinity
	LimitCORE=infinity
	
	# Uncomment TasksMax if your systemd version supports it.
	# Only systemd 226 and above support this version.
	TasksMax=infinity
	TimeoutStartSec=0
	
	# set delegate yes so that systemd does not reset the cgroups of docker containers
	Delegate=yes
	
	# kill only the docker process, not all processes in the cgroup
	KillMode=process
	
	[Install]
	WantedBy=multi-user.target
	
	I0308 03:11:29.963706    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:30.140963    9128 main.go:141] libmachine: Using SSH client type: native
	I0308 03:11:30.141489    9128 main.go:141] libmachine: &{{{<nil> 0 [] [] []} docker [0x9a9d80] 0x9ac960 <nil>  [] 0s} 127.0.0.1 63407 <nil> <nil>}
	I0308 03:11:30.141519    9128 main.go:141] libmachine: About to run SSH command:
	sudo diff -u /lib/systemd/system/docker.service /lib/systemd/system/docker.service.new || { sudo mv /lib/systemd/system/docker.service.new /lib/systemd/system/docker.service; sudo systemctl -f daemon-reload && sudo systemctl -f enable docker && sudo systemctl -f restart docker; }
	I0308 03:11:30.322758    9128 main.go:141] libmachine: SSH cmd err, output: <nil>: 
	I0308 03:11:30.322758    9128 machine.go:97] duration metric: took 3.0878924s to provisionDockerMachine
	I0308 03:11:30.322758    9128 start.go:293] postStartSetup for "functional-131400" (driver="docker")
	I0308 03:11:30.322758    9128 start.go:322] creating required directories: [/etc/kubernetes/addons /etc/kubernetes/manifests /var/tmp/minikube /var/lib/minikube /var/lib/minikube/certs /var/lib/minikube/images /var/lib/minikube/binaries /tmp/gvisor /usr/share/ca-certificates /etc/ssl/certs]
	I0308 03:11:30.335612    9128 ssh_runner.go:195] Run: sudo mkdir -p /etc/kubernetes/addons /etc/kubernetes/manifests /var/tmp/minikube /var/lib/minikube /var/lib/minikube/certs /var/lib/minikube/images /var/lib/minikube/binaries /tmp/gvisor /usr/share/ca-certificates /etc/ssl/certs
	I0308 03:11:30.344964    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:30.510436    9128 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:63407 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\functional-131400\id_rsa Username:docker}
	I0308 03:11:30.654226    9128 ssh_runner.go:195] Run: cat /etc/os-release
	I0308 03:11:30.666249    9128 command_runner.go:130] > PRETTY_NAME="Ubuntu 22.04.3 LTS"
	I0308 03:11:30.666249    9128 command_runner.go:130] > NAME="Ubuntu"
	I0308 03:11:30.666249    9128 command_runner.go:130] > VERSION_ID="22.04"
	I0308 03:11:30.666249    9128 command_runner.go:130] > VERSION="22.04.3 LTS (Jammy Jellyfish)"
	I0308 03:11:30.666249    9128 command_runner.go:130] > VERSION_CODENAME=jammy
	I0308 03:11:30.666249    9128 command_runner.go:130] > ID=ubuntu
	I0308 03:11:30.666249    9128 command_runner.go:130] > ID_LIKE=debian
	I0308 03:11:30.666249    9128 command_runner.go:130] > HOME_URL="https://www.ubuntu.com/"
	I0308 03:11:30.666249    9128 command_runner.go:130] > SUPPORT_URL="https://help.ubuntu.com/"
	I0308 03:11:30.666249    9128 command_runner.go:130] > BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
	I0308 03:11:30.666249    9128 command_runner.go:130] > PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
	I0308 03:11:30.666249    9128 command_runner.go:130] > UBUNTU_CODENAME=jammy
	I0308 03:11:30.666249    9128 main.go:141] libmachine: Couldn't set key VERSION_CODENAME, no corresponding struct field found
	I0308 03:11:30.666249    9128 main.go:141] libmachine: Couldn't set key PRIVACY_POLICY_URL, no corresponding struct field found
	I0308 03:11:30.666249    9128 main.go:141] libmachine: Couldn't set key UBUNTU_CODENAME, no corresponding struct field found
	I0308 03:11:30.666249    9128 info.go:137] Remote host: Ubuntu 22.04.3 LTS
	I0308 03:11:30.666249    9128 filesync.go:126] Scanning C:\Users\jenkins.minikube4\minikube-integration\.minikube\addons for local assets ...
	I0308 03:11:30.667128    9128 filesync.go:126] Scanning C:\Users\jenkins.minikube4\minikube-integration\.minikube\files for local assets ...
	I0308 03:11:30.667978    9128 filesync.go:149] local asset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\files\etc\ssl\certs\67282.pem -> 67282.pem in /etc/ssl/certs
	I0308 03:11:30.667978    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\files\etc\ssl\certs\67282.pem -> /etc/ssl/certs/67282.pem
	I0308 03:11:30.667978    9128 filesync.go:149] local asset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\files\etc\test\nested\copy\6728\hosts -> hosts in /etc/test/nested/copy/6728
	I0308 03:11:30.669003    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\files\etc\test\nested\copy\6728\hosts -> /etc/test/nested/copy/6728/hosts
	I0308 03:11:30.681176    9128 ssh_runner.go:195] Run: sudo mkdir -p /etc/ssl/certs /etc/test/nested/copy/6728
	I0308 03:11:30.698691    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\files\etc\ssl\certs\67282.pem --> /etc/ssl/certs/67282.pem (1708 bytes)
	I0308 03:11:30.736480    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\files\etc\test\nested\copy\6728\hosts --> /etc/test/nested/copy/6728/hosts (40 bytes)
	I0308 03:11:30.784940    9128 start.go:296] duration metric: took 461.6141ms for postStartSetup
	I0308 03:11:30.796071    9128 ssh_runner.go:195] Run: sh -c "df -h /var | awk 'NR==2{print $5}'"
	I0308 03:11:30.804067    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:30.975627    9128 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:63407 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\functional-131400\id_rsa Username:docker}
	I0308 03:11:31.096306    9128 command_runner.go:130] > 5%!
	(MISSING)I0308 03:11:31.107694    9128 ssh_runner.go:195] Run: sh -c "df -BG /var | awk 'NR==2{print $4}'"
	I0308 03:11:31.122193    9128 command_runner.go:130] > 229G
	I0308 03:11:31.122193    9128 fix.go:56] duration metric: took 4.0802757s for fixHost
	I0308 03:11:31.122193    9128 start.go:83] releasing machines lock for "functional-131400", held for 4.0804854s
	I0308 03:11:31.132073    9128 cli_runner.go:164] Run: docker container inspect -f "{{range .NetworkSettings.Networks}}{{.IPAddress}},{{.GlobalIPv6Address}}{{end}}" functional-131400
	I0308 03:11:31.291434    9128 ssh_runner.go:195] Run: curl -sS -m 2 https://registry.k8s.io/
	I0308 03:11:31.300323    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:31.300913    9128 ssh_runner.go:195] Run: cat /version.json
	I0308 03:11:31.308947    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:31.461248    9128 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:63407 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\functional-131400\id_rsa Username:docker}
	I0308 03:11:31.476248    9128 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:63407 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\functional-131400\id_rsa Username:docker}
	I0308 03:11:31.719093    9128 command_runner.go:130] > <a href="https://github.com/kubernetes/registry.k8s.io">Temporary Redirect</a>.
	I0308 03:11:31.719093    9128 command_runner.go:130] > {"iso_version": "v1.32.1-1708020063-17936", "kicbase_version": "v0.0.42-1708944392-18244", "minikube_version": "v1.32.0", "commit": "720d09bdc48bd298443860ffedca89b22332df12"}
	I0308 03:11:31.731281    9128 ssh_runner.go:195] Run: systemctl --version
	I0308 03:11:31.744382    9128 command_runner.go:130] > systemd 249 (249.11-0ubuntu3.12)
	I0308 03:11:31.744426    9128 command_runner.go:130] > +PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified
	I0308 03:11:31.755982    9128 ssh_runner.go:195] Run: sh -c "stat /etc/cni/net.d/*loopback.conf*"
	I0308 03:11:31.772189    9128 command_runner.go:130] >   File: /etc/cni/net.d/200-loopback.conf
	I0308 03:11:31.772770    9128 command_runner.go:130] >   Size: 54        	Blocks: 8          IO Block: 4096   regular file
	I0308 03:11:31.772770    9128 command_runner.go:130] > Device: d9h/217d	Inode: 12820       Links: 1
	I0308 03:11:31.772841    9128 command_runner.go:130] > Access: (0644/-rw-r--r--)  Uid: (    0/    root)   Gid: (    0/    root)
	I0308 03:11:31.772841    9128 command_runner.go:130] > Access: 2024-03-08 02:58:48.759852433 +0000
	I0308 03:11:31.772898    9128 command_runner.go:130] > Modify: 2023-06-14 14:44:50.000000000 +0000
	I0308 03:11:31.772947    9128 command_runner.go:130] > Change: 2024-03-08 02:58:18.107134954 +0000
	I0308 03:11:31.773010    9128 command_runner.go:130] >  Birth: 2024-03-08 02:58:18.107134954 +0000
	I0308 03:11:31.789076    9128 ssh_runner.go:195] Run: sudo find \etc\cni\net.d -maxdepth 1 -type f -name *loopback.conf* -not -name *.mk_disabled -exec sh -c "grep -q loopback {} && ( grep -q name {} || sudo sed -i '/"type": "loopback"/i \ \ \ \ "name": "loopback",' {} ) && sudo sed -i 's|"cniVersion": ".*"|"cniVersion": "1.0.0"|g' {}" ;
	I0308 03:11:31.805920    9128 command_runner.go:130] ! find: '\\etc\\cni\\net.d': No such file or directory
	W0308 03:11:31.808023    9128 start.go:438] unable to name loopback interface in configureRuntimes: unable to patch loopback cni config "/etc/cni/net.d/*loopback.conf*": sudo find \etc\cni\net.d -maxdepth 1 -type f -name *loopback.conf* -not -name *.mk_disabled -exec sh -c "grep -q loopback {} && ( grep -q name {} || sudo sed -i '/"type": "loopback"/i \ \ \ \ "name": "loopback",' {} ) && sudo sed -i 's|"cniVersion": ".*"|"cniVersion": "1.0.0"|g' {}" ;: Process exited with status 1
	stdout:
	
	stderr:
	find: '\\etc\\cni\\net.d': No such file or directory
	I0308 03:11:31.823710    9128 ssh_runner.go:195] Run: sudo find /etc/cni/net.d -maxdepth 1 -type f ( ( -name *bridge* -or -name *podman* ) -and -not -name *.mk_disabled ) -printf "%!p(MISSING), " -exec sh -c "sudo mv {} {}.mk_disabled" ;
	I0308 03:11:31.844458    9128 cni.go:259] no active bridge cni configs found in "/etc/cni/net.d" - nothing to disable
	I0308 03:11:31.844458    9128 start.go:494] detecting cgroup driver to use...
	I0308 03:11:31.844458    9128 detect.go:196] detected "cgroupfs" cgroup driver on host os
	I0308 03:11:31.844458    9128 ssh_runner.go:195] Run: /bin/bash -c "sudo mkdir -p /etc && printf %!s(MISSING) "runtime-endpoint: unix:///run/containerd/containerd.sock
	" | sudo tee /etc/crictl.yaml"
	I0308 03:11:31.875634    9128 command_runner.go:130] > runtime-endpoint: unix:///run/containerd/containerd.sock
	I0308 03:11:31.887609    9128 ssh_runner.go:195] Run: sh -c "sudo sed -i -r 's|^( *)sandbox_image = .*$|\1sandbox_image = "registry.k8s.io/pause:3.9"|' /etc/containerd/config.toml"
	I0308 03:11:31.924914    9128 ssh_runner.go:195] Run: sh -c "sudo sed -i -r 's|^( *)restrict_oom_score_adj = .*$|\1restrict_oom_score_adj = false|' /etc/containerd/config.toml"
	I0308 03:11:31.948143    9128 containerd.go:146] configuring containerd to use "cgroupfs" as cgroup driver...
	I0308 03:11:31.959314    9128 ssh_runner.go:195] Run: sh -c "sudo sed -i -r 's|^( *)SystemdCgroup = .*$|\1SystemdCgroup = false|g' /etc/containerd/config.toml"
	I0308 03:11:31.993349    9128 ssh_runner.go:195] Run: sh -c "sudo sed -i 's|"io.containerd.runtime.v1.linux"|"io.containerd.runc.v2"|g' /etc/containerd/config.toml"
	I0308 03:11:32.028693    9128 ssh_runner.go:195] Run: sh -c "sudo sed -i '/systemd_cgroup/d' /etc/containerd/config.toml"
	I0308 03:11:32.065725    9128 ssh_runner.go:195] Run: sh -c "sudo sed -i 's|"io.containerd.runc.v1"|"io.containerd.runc.v2"|g' /etc/containerd/config.toml"
	I0308 03:11:32.099186    9128 ssh_runner.go:195] Run: sh -c "sudo rm -rf /etc/cni/net.mk"
	I0308 03:11:32.134410    9128 ssh_runner.go:195] Run: sh -c "sudo sed -i -r 's|^( *)conf_dir = .*$|\1conf_dir = "/etc/cni/net.d"|g' /etc/containerd/config.toml"
	I0308 03:11:32.168722    9128 ssh_runner.go:195] Run: sudo sysctl net.bridge.bridge-nf-call-iptables
	I0308 03:11:32.188289    9128 command_runner.go:130] > net.bridge.bridge-nf-call-iptables = 1
	I0308 03:11:32.201738    9128 ssh_runner.go:195] Run: sudo sh -c "echo 1 > /proc/sys/net/ipv4/ip_forward"
	I0308 03:11:32.231694    9128 ssh_runner.go:195] Run: sudo systemctl daemon-reload
	I0308 03:11:32.425130    9128 ssh_runner.go:195] Run: sudo systemctl restart containerd
	I0308 03:11:42.915847    9128 ssh_runner.go:235] Completed: sudo systemctl restart containerd: (10.4896922s)
	I0308 03:11:42.915971    9128 start.go:494] detecting cgroup driver to use...
	I0308 03:11:42.916015    9128 detect.go:196] detected "cgroupfs" cgroup driver on host os
	I0308 03:11:42.929601    9128 ssh_runner.go:195] Run: sudo systemctl cat docker.service
	I0308 03:11:42.954350    9128 command_runner.go:130] > # /lib/systemd/system/docker.service
	I0308 03:11:42.954350    9128 command_runner.go:130] > [Unit]
	I0308 03:11:42.954350    9128 command_runner.go:130] > Description=Docker Application Container Engine
	I0308 03:11:42.954350    9128 command_runner.go:130] > Documentation=https://docs.docker.com
	I0308 03:11:42.954350    9128 command_runner.go:130] > BindsTo=containerd.service
	I0308 03:11:42.954350    9128 command_runner.go:130] > After=network-online.target firewalld.service containerd.service
	I0308 03:11:42.954350    9128 command_runner.go:130] > Wants=network-online.target
	I0308 03:11:42.954350    9128 command_runner.go:130] > Requires=docker.socket
	I0308 03:11:42.954350    9128 command_runner.go:130] > StartLimitBurst=3
	I0308 03:11:42.954350    9128 command_runner.go:130] > StartLimitIntervalSec=60
	I0308 03:11:42.954350    9128 command_runner.go:130] > [Service]
	I0308 03:11:42.954350    9128 command_runner.go:130] > Type=notify
	I0308 03:11:42.954350    9128 command_runner.go:130] > Restart=on-failure
	I0308 03:11:42.954350    9128 command_runner.go:130] > # This file is a systemd drop-in unit that inherits from the base dockerd configuration.
	I0308 03:11:42.954350    9128 command_runner.go:130] > # The base configuration already specifies an 'ExecStart=...' command. The first directive
	I0308 03:11:42.954350    9128 command_runner.go:130] > # here is to clear out that command inherited from the base configuration. Without this,
	I0308 03:11:42.954350    9128 command_runner.go:130] > # the command from the base configuration and the command specified here are treated as
	I0308 03:11:42.954350    9128 command_runner.go:130] > # a sequence of commands, which is not the desired behavior, nor is it valid -- systemd
	I0308 03:11:42.954350    9128 command_runner.go:130] > # will catch this invalid input and refuse to start the service with an error like:
	I0308 03:11:42.954350    9128 command_runner.go:130] > #  Service has more than one ExecStart= setting, which is only allowed for Type=oneshot services.
	I0308 03:11:42.954350    9128 command_runner.go:130] > # NOTE: default-ulimit=nofile is set to an arbitrary number for consistency with other
	I0308 03:11:42.954350    9128 command_runner.go:130] > # container runtimes. If left unlimited, it may result in OOM issues with MySQL.
	I0308 03:11:42.954350    9128 command_runner.go:130] > ExecStart=
	I0308 03:11:42.954350    9128 command_runner.go:130] > ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2376 -H unix:///var/run/docker.sock --default-ulimit=nofile=1048576:1048576 --tlsverify --tlscacert /etc/docker/ca.pem --tlscert /etc/docker/server.pem --tlskey /etc/docker/server-key.pem --label provider=docker --insecure-registry 10.96.0.0/12 
	I0308 03:11:42.955781    9128 command_runner.go:130] > ExecReload=/bin/kill -s HUP $MAINPID
	I0308 03:11:42.955781    9128 command_runner.go:130] > # Having non-zero Limit*s causes performance problems due to accounting overhead
	I0308 03:11:42.955781    9128 command_runner.go:130] > # in the kernel. We recommend using cgroups to do container-local accounting.
	I0308 03:11:42.955781    9128 command_runner.go:130] > LimitNOFILE=infinity
	I0308 03:11:42.955844    9128 command_runner.go:130] > LimitNPROC=infinity
	I0308 03:11:42.955844    9128 command_runner.go:130] > LimitCORE=infinity
	I0308 03:11:42.955844    9128 command_runner.go:130] > # Uncomment TasksMax if your systemd version supports it.
	I0308 03:11:42.955844    9128 command_runner.go:130] > # Only systemd 226 and above support this version.
	I0308 03:11:42.955886    9128 command_runner.go:130] > TasksMax=infinity
	I0308 03:11:42.955886    9128 command_runner.go:130] > TimeoutStartSec=0
	I0308 03:11:42.955927    9128 command_runner.go:130] > # set delegate yes so that systemd does not reset the cgroups of docker containers
	I0308 03:11:42.955927    9128 command_runner.go:130] > Delegate=yes
	I0308 03:11:42.955927    9128 command_runner.go:130] > # kill only the docker process, not all processes in the cgroup
	I0308 03:11:42.955977    9128 command_runner.go:130] > KillMode=process
	I0308 03:11:42.955977    9128 command_runner.go:130] > [Install]
	I0308 03:11:42.956014    9128 command_runner.go:130] > WantedBy=multi-user.target
	I0308 03:11:42.956091    9128 cruntime.go:279] skipping containerd shutdown because we are bound to it
	I0308 03:11:42.971236    9128 ssh_runner.go:195] Run: sudo systemctl is-active --quiet service crio
	I0308 03:11:42.992887    9128 ssh_runner.go:195] Run: /bin/bash -c "sudo mkdir -p /etc && printf %!s(MISSING) "runtime-endpoint: unix:///var/run/cri-dockerd.sock
	" | sudo tee /etc/crictl.yaml"
	I0308 03:11:43.027072    9128 command_runner.go:130] > runtime-endpoint: unix:///var/run/cri-dockerd.sock
	I0308 03:11:43.041555    9128 ssh_runner.go:195] Run: which cri-dockerd
	I0308 03:11:43.051156    9128 command_runner.go:130] > /usr/bin/cri-dockerd
	I0308 03:11:43.062454    9128 ssh_runner.go:195] Run: sudo mkdir -p /etc/systemd/system/cri-docker.service.d
	I0308 03:11:43.082486    9128 ssh_runner.go:362] scp memory --> /etc/systemd/system/cri-docker.service.d/10-cni.conf (189 bytes)
	I0308 03:11:43.128445    9128 ssh_runner.go:195] Run: sudo systemctl unmask docker.service
	I0308 03:11:43.350708    9128 ssh_runner.go:195] Run: sudo systemctl enable docker.socket
	I0308 03:11:43.530568    9128 docker.go:574] configuring docker to use "cgroupfs" as cgroup driver...
	I0308 03:11:43.530568    9128 ssh_runner.go:362] scp memory --> /etc/docker/daemon.json (130 bytes)
	I0308 03:11:43.576055    9128 ssh_runner.go:195] Run: sudo systemctl daemon-reload
	I0308 03:11:43.734897    9128 ssh_runner.go:195] Run: sudo systemctl restart docker
	I0308 03:11:44.390815    9128 ssh_runner.go:195] Run: sudo systemctl is-active --quiet service cri-docker.socket
	I0308 03:11:44.437973    9128 ssh_runner.go:195] Run: sudo systemctl stop cri-docker.socket
	I0308 03:11:44.476848    9128 ssh_runner.go:195] Run: sudo systemctl is-active --quiet service cri-docker.service
	I0308 03:11:44.513056    9128 ssh_runner.go:195] Run: sudo systemctl unmask cri-docker.socket
	I0308 03:11:44.668463    9128 ssh_runner.go:195] Run: sudo systemctl enable cri-docker.socket
	I0308 03:11:44.817317    9128 ssh_runner.go:195] Run: sudo systemctl daemon-reload
	I0308 03:11:44.983169    9128 ssh_runner.go:195] Run: sudo systemctl restart cri-docker.socket
	I0308 03:11:45.023560    9128 ssh_runner.go:195] Run: sudo systemctl is-active --quiet service cri-docker.service
	I0308 03:11:45.058582    9128 ssh_runner.go:195] Run: sudo systemctl daemon-reload
	I0308 03:11:45.201585    9128 ssh_runner.go:195] Run: sudo systemctl restart cri-docker.service
	I0308 03:11:45.346015    9128 start.go:541] Will wait 60s for socket path /var/run/cri-dockerd.sock
	I0308 03:11:45.360062    9128 ssh_runner.go:195] Run: stat /var/run/cri-dockerd.sock
	I0308 03:11:45.374102    9128 command_runner.go:130] >   File: /var/run/cri-dockerd.sock
	I0308 03:11:45.374102    9128 command_runner.go:130] >   Size: 0         	Blocks: 0          IO Block: 4096   socket
	I0308 03:11:45.374632    9128 command_runner.go:130] > Device: e3h/227d	Inode: 722         Links: 1
	I0308 03:11:45.374632    9128 command_runner.go:130] > Access: (0660/srw-rw----)  Uid: (    0/    root)   Gid: (  999/  docker)
	I0308 03:11:45.374632    9128 command_runner.go:130] > Access: 2024-03-08 03:11:45.207879814 +0000
	I0308 03:11:45.374632    9128 command_runner.go:130] > Modify: 2024-03-08 03:11:45.207879814 +0000
	I0308 03:11:45.374632    9128 command_runner.go:130] > Change: 2024-03-08 03:11:45.217880405 +0000
	I0308 03:11:45.374632    9128 command_runner.go:130] >  Birth: -
	I0308 03:11:45.374714    9128 start.go:562] Will wait 60s for crictl version
	I0308 03:11:45.387085    9128 ssh_runner.go:195] Run: which crictl
	I0308 03:11:45.403250    9128 command_runner.go:130] > /usr/bin/crictl
	I0308 03:11:45.415124    9128 ssh_runner.go:195] Run: sudo /usr/bin/crictl version
	I0308 03:11:45.503880    9128 command_runner.go:130] > Version:  0.1.0
	I0308 03:11:45.503880    9128 command_runner.go:130] > RuntimeName:  docker
	I0308 03:11:45.503880    9128 command_runner.go:130] > RuntimeVersion:  25.0.3
	I0308 03:11:45.503880    9128 command_runner.go:130] > RuntimeApiVersion:  v1
	I0308 03:11:45.503880    9128 start.go:578] Version:  0.1.0
	RuntimeName:  docker
	RuntimeVersion:  25.0.3
	RuntimeApiVersion:  v1
	I0308 03:11:45.513928    9128 ssh_runner.go:195] Run: docker version --format {{.Server.Version}}
	I0308 03:11:45.563291    9128 command_runner.go:130] > 25.0.3
	I0308 03:11:45.572403    9128 ssh_runner.go:195] Run: docker version --format {{.Server.Version}}
	I0308 03:11:45.620691    9128 command_runner.go:130] > 25.0.3
	I0308 03:11:45.623761    9128 out.go:204] * Preparing Kubernetes v1.28.4 on Docker 25.0.3 ...
	I0308 03:11:45.633535    9128 cli_runner.go:164] Run: docker exec -t functional-131400 dig +short host.docker.internal
	I0308 03:11:45.902675    9128 network.go:96] got host ip for mount in container by digging dns: 192.168.65.254
	I0308 03:11:45.916600    9128 ssh_runner.go:195] Run: grep 192.168.65.254	host.minikube.internal$ /etc/hosts
	I0308 03:11:45.929610    9128 command_runner.go:130] > 192.168.65.254	host.minikube.internal
	I0308 03:11:45.938927    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "8441/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:46.089846    9128 kubeadm.go:877] updating cluster {Name:functional-131400 KeepContext:false EmbedCerts:false MinikubeISO: KicBaseImage:gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 Memory:4000 CPUs:2 DiskSize:20000 Driver:docker HyperkitVpnKitSock: HyperkitVSockPorts:[] DockerEnv:[] ContainerVolumeMounts:[] InsecureRegistry:[] RegistryMirror:[] HostOnlyCIDR:192.168.59.1/24 HypervVirtualSwitch: HypervUseExternalSwitch:false HypervExternalAdapter: KVMNetwork:default KVMQemuURI:qemu:///system KVMGPU:false KVMHidden:false KVMNUMACount:1 APIServerPort:8441 DockerOpt:[] DisableDriverMounts:false NFSShare:[] NFSSharesRoot:/nfsshares UUID: NoVTXCheck:false DNSProxy:false HostDNSResolver:true HostOnlyNicType:virtio NatNicType:virtio SSHIPAddress: SSHUser:root SSHKey: SSHPort:22 KubernetesConfig:{KubernetesVersion:v1.28.4 ClusterName:functional-131400 Namespace:default APIServerHAVIP: APIServerName:minikubeCA API
ServerNames:[] APIServerIPs:[] DNSDomain:cluster.local ContainerRuntime:docker CRISocket: NetworkPlugin:cni FeatureGates: ServiceCIDR:10.96.0.0/12 ImageRepository: LoadBalancerStartIP: LoadBalancerEndIP: CustomIngressCert: RegistryAliases: ExtraOptions:[] ShouldLoadCachedImages:true EnableDefaultCNI:false CNI:} Nodes:[{Name: IP:192.168.49.2 Port:8441 KubernetesVersion:v1.28.4 ContainerRuntime:docker ControlPlane:true Worker:true}] Addons:map[default-storageclass:true storage-provisioner:true] CustomAddonImages:map[] CustomAddonRegistries:map[] VerifyComponents:map[apiserver:true apps_running:true default_sa:true extra:true kubelet:true node_ready:true system_pods:true] StartHostTimeout:6m0s ScheduledStop:<nil> ExposedPorts:[] ListenAddress: Network: Subnet: MultiNodeRequested:false ExtraDisks:0 CertExpiration:26280h0m0s Mount:false MountString:C:\Users\jenkins.minikube4:/minikube-host Mount9PVersion:9p2000.L MountGID:docker MountIP: MountMSize:262144 MountOptions:[] MountPort:0 MountType:9p MountUID:docker Bi
naryMirror: DisableOptimizations:false DisableMetrics:false CustomQemuFirmwarePath: SocketVMnetClientPath: SocketVMnetPath: StaticIP: SSHAuthSock: SSHAgentPID:0 GPUs: AutoPauseInterval:1m0s} ...
	I0308 03:11:46.090418    9128 preload.go:132] Checking if preload exists for k8s version v1.28.4 and runtime docker
	I0308 03:11:46.101001    9128 ssh_runner.go:195] Run: docker images --format {{.Repository}}:{{.Tag}}
	I0308 03:11:46.146035    9128 command_runner.go:130] > registry.k8s.io/kube-apiserver:v1.28.4
	I0308 03:11:46.146035    9128 command_runner.go:130] > registry.k8s.io/kube-proxy:v1.28.4
	I0308 03:11:46.146035    9128 command_runner.go:130] > registry.k8s.io/kube-controller-manager:v1.28.4
	I0308 03:11:46.146035    9128 command_runner.go:130] > registry.k8s.io/kube-scheduler:v1.28.4
	I0308 03:11:46.146035    9128 command_runner.go:130] > registry.k8s.io/etcd:3.5.9-0
	I0308 03:11:46.146035    9128 command_runner.go:130] > registry.k8s.io/coredns/coredns:v1.10.1
	I0308 03:11:46.146035    9128 command_runner.go:130] > registry.k8s.io/pause:3.9
	I0308 03:11:46.146035    9128 command_runner.go:130] > gcr.io/k8s-minikube/storage-provisioner:v5
	I0308 03:11:46.146035    9128 docker.go:685] Got preloaded images: -- stdout --
	registry.k8s.io/kube-apiserver:v1.28.4
	registry.k8s.io/kube-proxy:v1.28.4
	registry.k8s.io/kube-controller-manager:v1.28.4
	registry.k8s.io/kube-scheduler:v1.28.4
	registry.k8s.io/etcd:3.5.9-0
	registry.k8s.io/coredns/coredns:v1.10.1
	registry.k8s.io/pause:3.9
	gcr.io/k8s-minikube/storage-provisioner:v5
	
	-- /stdout --
	I0308 03:11:46.146035    9128 docker.go:615] Images already preloaded, skipping extraction
	I0308 03:11:46.155679    9128 ssh_runner.go:195] Run: docker images --format {{.Repository}}:{{.Tag}}
	I0308 03:11:46.197032    9128 command_runner.go:130] > registry.k8s.io/kube-apiserver:v1.28.4
	I0308 03:11:46.197032    9128 command_runner.go:130] > registry.k8s.io/kube-proxy:v1.28.4
	I0308 03:11:46.197032    9128 command_runner.go:130] > registry.k8s.io/kube-controller-manager:v1.28.4
	I0308 03:11:46.197571    9128 command_runner.go:130] > registry.k8s.io/kube-scheduler:v1.28.4
	I0308 03:11:46.197571    9128 command_runner.go:130] > registry.k8s.io/etcd:3.5.9-0
	I0308 03:11:46.197571    9128 command_runner.go:130] > registry.k8s.io/coredns/coredns:v1.10.1
	I0308 03:11:46.197571    9128 command_runner.go:130] > registry.k8s.io/pause:3.9
	I0308 03:11:46.197672    9128 command_runner.go:130] > gcr.io/k8s-minikube/storage-provisioner:v5
	I0308 03:11:46.197816    9128 docker.go:685] Got preloaded images: -- stdout --
	registry.k8s.io/kube-apiserver:v1.28.4
	registry.k8s.io/kube-proxy:v1.28.4
	registry.k8s.io/kube-controller-manager:v1.28.4
	registry.k8s.io/kube-scheduler:v1.28.4
	registry.k8s.io/etcd:3.5.9-0
	registry.k8s.io/coredns/coredns:v1.10.1
	registry.k8s.io/pause:3.9
	gcr.io/k8s-minikube/storage-provisioner:v5
	
	-- /stdout --
	I0308 03:11:46.197857    9128 cache_images.go:84] Images are preloaded, skipping loading
	I0308 03:11:46.197999    9128 kubeadm.go:928] updating node { 192.168.49.2 8441 v1.28.4 docker true true} ...
	I0308 03:11:46.198453    9128 kubeadm.go:940] kubelet [Unit]
	Wants=docker.socket
	
	[Service]
	ExecStart=
	ExecStart=/var/lib/minikube/binaries/v1.28.4/kubelet --bootstrap-kubeconfig=/etc/kubernetes/bootstrap-kubelet.conf --config=/var/lib/kubelet/config.yaml --hostname-override=functional-131400 --kubeconfig=/etc/kubernetes/kubelet.conf --node-ip=192.168.49.2
	
	[Install]
	 config:
	{KubernetesVersion:v1.28.4 ClusterName:functional-131400 Namespace:default APIServerHAVIP: APIServerName:minikubeCA APIServerNames:[] APIServerIPs:[] DNSDomain:cluster.local ContainerRuntime:docker CRISocket: NetworkPlugin:cni FeatureGates: ServiceCIDR:10.96.0.0/12 ImageRepository: LoadBalancerStartIP: LoadBalancerEndIP: CustomIngressCert: RegistryAliases: ExtraOptions:[] ShouldLoadCachedImages:true EnableDefaultCNI:false CNI:}
	I0308 03:11:46.210750    9128 ssh_runner.go:195] Run: docker info --format {{.CgroupDriver}}
	I0308 03:11:46.308881    9128 command_runner.go:130] > cgroupfs
	I0308 03:11:46.309078    9128 cni.go:84] Creating CNI manager for ""
	I0308 03:11:46.309124    9128 cni.go:158] "docker" driver + "docker" container runtime found on kubernetes v1.24+, recommending bridge
	I0308 03:11:46.309177    9128 kubeadm.go:84] Using pod CIDR: 10.244.0.0/16
	I0308 03:11:46.309177    9128 kubeadm.go:181] kubeadm options: {CertDir:/var/lib/minikube/certs ServiceCIDR:10.96.0.0/12 PodSubnet:10.244.0.0/16 AdvertiseAddress:192.168.49.2 APIServerPort:8441 KubernetesVersion:v1.28.4 EtcdDataDir:/var/lib/minikube/etcd EtcdExtraArgs:map[] ClusterName:functional-131400 NodeName:functional-131400 DNSDomain:cluster.local CRISocket:/var/run/cri-dockerd.sock ImageRepository: ComponentOptions:[{Component:apiServer ExtraArgs:map[enable-admission-plugins:NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,DefaultTolerationSeconds,NodeRestriction,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,ResourceQuota] Pairs:map[certSANs:["127.0.0.1", "localhost", "192.168.49.2"]]} {Component:controllerManager ExtraArgs:map[allocate-node-cidrs:true leader-elect:false] Pairs:map[]} {Component:scheduler ExtraArgs:map[leader-elect:false] Pairs:map[]}] FeatureArgs:map[] NodeIP:192.168.49.2 CgroupDriver:cgroupfs ClientCAFile:/var/lib/minikube/certs/ca.crt StaticPodPath:/e
tc/kubernetes/manifests ControlPlaneAddress:control-plane.minikube.internal KubeProxyOptions:map[] ResolvConfSearchRegression:false KubeletConfigOpts:map[containerRuntimeEndpoint:unix:///var/run/cri-dockerd.sock hairpinMode:hairpin-veth runtimeRequestTimeout:15m] PrependCriSocketUnix:true}
	I0308 03:11:46.309500    9128 kubeadm.go:187] kubeadm config:
	apiVersion: kubeadm.k8s.io/v1beta3
	kind: InitConfiguration
	localAPIEndpoint:
	  advertiseAddress: 192.168.49.2
	  bindPort: 8441
	bootstrapTokens:
	  - groups:
	      - system:bootstrappers:kubeadm:default-node-token
	    ttl: 24h0m0s
	    usages:
	      - signing
	      - authentication
	nodeRegistration:
	  criSocket: unix:///var/run/cri-dockerd.sock
	  name: "functional-131400"
	  kubeletExtraArgs:
	    node-ip: 192.168.49.2
	  taints: []
	---
	apiVersion: kubeadm.k8s.io/v1beta3
	kind: ClusterConfiguration
	apiServer:
	  certSANs: ["127.0.0.1", "localhost", "192.168.49.2"]
	  extraArgs:
	    enable-admission-plugins: "NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,DefaultTolerationSeconds,NodeRestriction,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,ResourceQuota"
	controllerManager:
	  extraArgs:
	    allocate-node-cidrs: "true"
	    leader-elect: "false"
	scheduler:
	  extraArgs:
	    leader-elect: "false"
	certificatesDir: /var/lib/minikube/certs
	clusterName: mk
	controlPlaneEndpoint: control-plane.minikube.internal:8441
	etcd:
	  local:
	    dataDir: /var/lib/minikube/etcd
	    extraArgs:
	      proxy-refresh-interval: "70000"
	kubernetesVersion: v1.28.4
	networking:
	  dnsDomain: cluster.local
	  podSubnet: "10.244.0.0/16"
	  serviceSubnet: 10.96.0.0/12
	---
	apiVersion: kubelet.config.k8s.io/v1beta1
	kind: KubeletConfiguration
	authentication:
	  x509:
	    clientCAFile: /var/lib/minikube/certs/ca.crt
	cgroupDriver: cgroupfs
	containerRuntimeEndpoint: unix:///var/run/cri-dockerd.sock
	hairpinMode: hairpin-veth
	runtimeRequestTimeout: 15m
	clusterDomain: "cluster.local"
	# disable disk resource management by default
	imageGCHighThresholdPercent: 100
	evictionHard:
	  nodefs.available: "0%!"(MISSING)
	  nodefs.inodesFree: "0%!"(MISSING)
	  imagefs.available: "0%!"(MISSING)
	failSwapOn: false
	staticPodPath: /etc/kubernetes/manifests
	---
	apiVersion: kubeproxy.config.k8s.io/v1alpha1
	kind: KubeProxyConfiguration
	clusterCIDR: "10.244.0.0/16"
	metricsBindAddress: 0.0.0.0:10249
	conntrack:
	  maxPerCore: 0
	# Skip setting "net.netfilter.nf_conntrack_tcp_timeout_established"
	  tcpEstablishedTimeout: 0s
	# Skip setting "net.netfilter.nf_conntrack_tcp_timeout_close"
	  tcpCloseWaitTimeout: 0s
	
	I0308 03:11:46.321383    9128 ssh_runner.go:195] Run: sudo ls /var/lib/minikube/binaries/v1.28.4
	I0308 03:11:46.340406    9128 command_runner.go:130] > kubeadm
	I0308 03:11:46.340406    9128 command_runner.go:130] > kubectl
	I0308 03:11:46.340837    9128 command_runner.go:130] > kubelet
	I0308 03:11:46.340837    9128 binaries.go:44] Found k8s binaries, skipping transfer
	I0308 03:11:46.354676    9128 ssh_runner.go:195] Run: sudo mkdir -p /etc/systemd/system/kubelet.service.d /lib/systemd/system /var/tmp/minikube
	I0308 03:11:46.374732    9128 ssh_runner.go:362] scp memory --> /etc/systemd/system/kubelet.service.d/10-kubeadm.conf (316 bytes)
	I0308 03:11:46.406334    9128 ssh_runner.go:362] scp memory --> /lib/systemd/system/kubelet.service (352 bytes)
	I0308 03:11:46.437137    9128 ssh_runner.go:362] scp memory --> /var/tmp/minikube/kubeadm.yaml.new (2159 bytes)
	I0308 03:11:46.478578    9128 ssh_runner.go:195] Run: grep 192.168.49.2	control-plane.minikube.internal$ /etc/hosts
	I0308 03:11:46.489149    9128 command_runner.go:130] > 192.168.49.2	control-plane.minikube.internal
	I0308 03:11:46.504142    9128 ssh_runner.go:195] Run: sudo systemctl daemon-reload
	I0308 03:11:46.667406    9128 ssh_runner.go:195] Run: sudo systemctl start kubelet
	I0308 03:11:46.693598    9128 certs.go:68] Setting up C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400 for IP: 192.168.49.2
	I0308 03:11:46.693598    9128 certs.go:194] generating shared ca certs ...
	I0308 03:11:46.693598    9128 certs.go:226] acquiring lock for ca certs: {Name:mk92285f7546e1a5b3c3b23dab6135aa5a99cd14 Clock:{} Delay:500ms Timeout:1m0s Cancel:<nil>}
	I0308 03:11:46.694215    9128 certs.go:235] skipping valid "minikubeCA" ca cert: C:\Users\jenkins.minikube4\minikube-integration\.minikube\ca.key
	I0308 03:11:46.694444    9128 certs.go:235] skipping valid "proxyClientCA" ca cert: C:\Users\jenkins.minikube4\minikube-integration\.minikube\proxy-client-ca.key
	I0308 03:11:46.694672    9128 certs.go:256] generating profile certs ...
	I0308 03:11:46.695252    9128 certs.go:359] skipping valid signed profile cert regeneration for "minikube-user": C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.key
	I0308 03:11:46.695702    9128 certs.go:359] skipping valid signed profile cert regeneration for "minikube": C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\apiserver.key.eb0f45d6
	I0308 03:11:46.696023    9128 certs.go:359] skipping valid signed profile cert regeneration for "aggregator": C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\proxy-client.key
	I0308 03:11:46.696023    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\ca.crt -> /var/lib/minikube/certs/ca.crt
	I0308 03:11:46.696125    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\ca.key -> /var/lib/minikube/certs/ca.key
	I0308 03:11:46.696233    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\proxy-client-ca.crt -> /var/lib/minikube/certs/proxy-client-ca.crt
	I0308 03:11:46.696452    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\proxy-client-ca.key -> /var/lib/minikube/certs/proxy-client-ca.key
	I0308 03:11:46.696556    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\apiserver.crt -> /var/lib/minikube/certs/apiserver.crt
	I0308 03:11:46.696776    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\apiserver.key -> /var/lib/minikube/certs/apiserver.key
	I0308 03:11:46.696960    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\proxy-client.crt -> /var/lib/minikube/certs/proxy-client.crt
	I0308 03:11:46.697082    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\proxy-client.key -> /var/lib/minikube/certs/proxy-client.key
	I0308 03:11:46.697629    9128 certs.go:484] found cert: C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\6728.pem (1338 bytes)
	W0308 03:11:46.697867    9128 certs.go:480] ignoring C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\6728_empty.pem, impossibly tiny 0 bytes
	I0308 03:11:46.697958    9128 certs.go:484] found cert: C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\ca-key.pem (1679 bytes)
	I0308 03:11:46.698259    9128 certs.go:484] found cert: C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\ca.pem (1078 bytes)
	I0308 03:11:46.698500    9128 certs.go:484] found cert: C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\cert.pem (1123 bytes)
	I0308 03:11:46.698713    9128 certs.go:484] found cert: C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\key.pem (1679 bytes)
	I0308 03:11:46.699332    9128 certs.go:484] found cert: C:\Users\jenkins.minikube4\minikube-integration\.minikube\files\etc\ssl\certs\67282.pem (1708 bytes)
	I0308 03:11:46.699566    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\files\etc\ssl\certs\67282.pem -> /usr/share/ca-certificates/67282.pem
	I0308 03:11:46.699793    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\ca.crt -> /usr/share/ca-certificates/minikubeCA.pem
	I0308 03:11:46.699939    9128 vm_assets.go:163] NewFileAsset: C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\6728.pem -> /usr/share/ca-certificates/6728.pem
	I0308 03:11:46.701060    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\ca.crt --> /var/lib/minikube/certs/ca.crt (1111 bytes)
	I0308 03:11:46.747227    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\ca.key --> /var/lib/minikube/certs/ca.key (1679 bytes)
	I0308 03:11:46.789435    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\proxy-client-ca.crt --> /var/lib/minikube/certs/proxy-client-ca.crt (1119 bytes)
	I0308 03:11:46.836059    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\proxy-client-ca.key --> /var/lib/minikube/certs/proxy-client-ca.key (1675 bytes)
	I0308 03:11:46.878060    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\apiserver.crt --> /var/lib/minikube/certs/apiserver.crt (1424 bytes)
	I0308 03:11:46.924061    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\apiserver.key --> /var/lib/minikube/certs/apiserver.key (1679 bytes)
	I0308 03:11:46.967413    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\proxy-client.crt --> /var/lib/minikube/certs/proxy-client.crt (1147 bytes)
	I0308 03:11:47.012420    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\proxy-client.key --> /var/lib/minikube/certs/proxy-client.key (1675 bytes)
	I0308 03:11:47.053489    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\files\etc\ssl\certs\67282.pem --> /usr/share/ca-certificates/67282.pem (1708 bytes)
	I0308 03:11:47.097321    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\ca.crt --> /usr/share/ca-certificates/minikubeCA.pem (1111 bytes)
	I0308 03:11:47.139087    9128 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\minikube-integration\.minikube\certs\6728.pem --> /usr/share/ca-certificates/6728.pem (1338 bytes)
	I0308 03:11:47.178997    9128 ssh_runner.go:362] scp memory --> /var/lib/minikube/kubeconfig (738 bytes)
	I0308 03:11:47.221980    9128 ssh_runner.go:195] Run: openssl version
	I0308 03:11:47.238343    9128 command_runner.go:130] > OpenSSL 3.0.2 15 Mar 2022 (Library: OpenSSL 3.0.2 15 Mar 2022)
	I0308 03:11:47.250291    9128 ssh_runner.go:195] Run: sudo /bin/bash -c "test -s /usr/share/ca-certificates/6728.pem && ln -fs /usr/share/ca-certificates/6728.pem /etc/ssl/certs/6728.pem"
	I0308 03:11:47.281970    9128 ssh_runner.go:195] Run: ls -la /usr/share/ca-certificates/6728.pem
	I0308 03:11:47.292145    9128 command_runner.go:130] > -rw-r--r-- 1 root root 1338 Mar  8 03:09 /usr/share/ca-certificates/6728.pem
	I0308 03:11:47.292145    9128 certs.go:528] hashing: -rw-r--r-- 1 root root 1338 Mar  8 03:09 /usr/share/ca-certificates/6728.pem
	I0308 03:11:47.305132    9128 ssh_runner.go:195] Run: openssl x509 -hash -noout -in /usr/share/ca-certificates/6728.pem
	I0308 03:11:47.320174    9128 command_runner.go:130] > 51391683
	I0308 03:11:47.333051    9128 ssh_runner.go:195] Run: sudo /bin/bash -c "test -L /etc/ssl/certs/51391683.0 || ln -fs /etc/ssl/certs/6728.pem /etc/ssl/certs/51391683.0"
	I0308 03:11:47.364472    9128 ssh_runner.go:195] Run: sudo /bin/bash -c "test -s /usr/share/ca-certificates/67282.pem && ln -fs /usr/share/ca-certificates/67282.pem /etc/ssl/certs/67282.pem"
	I0308 03:11:47.394880    9128 ssh_runner.go:195] Run: ls -la /usr/share/ca-certificates/67282.pem
	I0308 03:11:47.408442    9128 command_runner.go:130] > -rw-r--r-- 1 root root 1708 Mar  8 03:09 /usr/share/ca-certificates/67282.pem
	I0308 03:11:47.408498    9128 certs.go:528] hashing: -rw-r--r-- 1 root root 1708 Mar  8 03:09 /usr/share/ca-certificates/67282.pem
	I0308 03:11:47.423171    9128 ssh_runner.go:195] Run: openssl x509 -hash -noout -in /usr/share/ca-certificates/67282.pem
	I0308 03:11:47.445378    9128 command_runner.go:130] > 3ec20f2e
	I0308 03:11:47.458643    9128 ssh_runner.go:195] Run: sudo /bin/bash -c "test -L /etc/ssl/certs/3ec20f2e.0 || ln -fs /etc/ssl/certs/67282.pem /etc/ssl/certs/3ec20f2e.0"
	I0308 03:11:47.492145    9128 ssh_runner.go:195] Run: sudo /bin/bash -c "test -s /usr/share/ca-certificates/minikubeCA.pem && ln -fs /usr/share/ca-certificates/minikubeCA.pem /etc/ssl/certs/minikubeCA.pem"
	I0308 03:11:47.524939    9128 ssh_runner.go:195] Run: ls -la /usr/share/ca-certificates/minikubeCA.pem
	I0308 03:11:47.536614    9128 command_runner.go:130] > -rw-r--r-- 1 root root 1111 Mar  8 03:00 /usr/share/ca-certificates/minikubeCA.pem
	I0308 03:11:47.536614    9128 certs.go:528] hashing: -rw-r--r-- 1 root root 1111 Mar  8 03:00 /usr/share/ca-certificates/minikubeCA.pem
	I0308 03:11:47.549188    9128 ssh_runner.go:195] Run: openssl x509 -hash -noout -in /usr/share/ca-certificates/minikubeCA.pem
	I0308 03:11:47.566198    9128 command_runner.go:130] > b5213941
	I0308 03:11:47.580296    9128 ssh_runner.go:195] Run: sudo /bin/bash -c "test -L /etc/ssl/certs/b5213941.0 || ln -fs /etc/ssl/certs/minikubeCA.pem /etc/ssl/certs/b5213941.0"
	I0308 03:11:47.611028    9128 ssh_runner.go:195] Run: stat /var/lib/minikube/certs/apiserver-kubelet-client.crt
	I0308 03:11:47.623600    9128 command_runner.go:130] >   File: /var/lib/minikube/certs/apiserver-kubelet-client.crt
	I0308 03:11:47.623600    9128 command_runner.go:130] >   Size: 1164      	Blocks: 8          IO Block: 4096   regular file
	I0308 03:11:47.623600    9128 command_runner.go:130] > Device: 830h/2096d	Inode: 32009       Links: 1
	I0308 03:11:47.623600    9128 command_runner.go:130] > Access: (0644/-rw-r--r--)  Uid: (    0/    root)   Gid: (    0/    root)
	I0308 03:11:47.623600    9128 command_runner.go:130] > Access: 2024-03-08 03:10:50.573177274 +0000
	I0308 03:11:47.623600    9128 command_runner.go:130] > Modify: 2024-03-08 03:10:50.573177274 +0000
	I0308 03:11:47.623600    9128 command_runner.go:130] > Change: 2024-03-08 03:10:50.573177274 +0000
	I0308 03:11:47.623600    9128 command_runner.go:130] >  Birth: 2024-03-08 03:10:50.573177274 +0000
	I0308 03:11:47.635655    9128 ssh_runner.go:195] Run: openssl x509 -noout -in /var/lib/minikube/certs/apiserver-etcd-client.crt -checkend 86400
	I0308 03:11:47.650537    9128 command_runner.go:130] > Certificate will not expire
	I0308 03:11:47.663506    9128 ssh_runner.go:195] Run: openssl x509 -noout -in /var/lib/minikube/certs/apiserver-kubelet-client.crt -checkend 86400
	I0308 03:11:47.677593    9128 command_runner.go:130] > Certificate will not expire
	I0308 03:11:47.690626    9128 ssh_runner.go:195] Run: openssl x509 -noout -in /var/lib/minikube/certs/etcd/server.crt -checkend 86400
	I0308 03:11:47.706621    9128 command_runner.go:130] > Certificate will not expire
	I0308 03:11:47.718794    9128 ssh_runner.go:195] Run: openssl x509 -noout -in /var/lib/minikube/certs/etcd/healthcheck-client.crt -checkend 86400
	I0308 03:11:47.733684    9128 command_runner.go:130] > Certificate will not expire
	I0308 03:11:47.744782    9128 ssh_runner.go:195] Run: openssl x509 -noout -in /var/lib/minikube/certs/etcd/peer.crt -checkend 86400
	I0308 03:11:47.761378    9128 command_runner.go:130] > Certificate will not expire
	I0308 03:11:47.772552    9128 ssh_runner.go:195] Run: openssl x509 -noout -in /var/lib/minikube/certs/front-proxy-client.crt -checkend 86400
	I0308 03:11:47.788017    9128 command_runner.go:130] > Certificate will not expire
	I0308 03:11:47.788312    9128 kubeadm.go:391] StartCluster: {Name:functional-131400 KeepContext:false EmbedCerts:false MinikubeISO: KicBaseImage:gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 Memory:4000 CPUs:2 DiskSize:20000 Driver:docker HyperkitVpnKitSock: HyperkitVSockPorts:[] DockerEnv:[] ContainerVolumeMounts:[] InsecureRegistry:[] RegistryMirror:[] HostOnlyCIDR:192.168.59.1/24 HypervVirtualSwitch: HypervUseExternalSwitch:false HypervExternalAdapter: KVMNetwork:default KVMQemuURI:qemu:///system KVMGPU:false KVMHidden:false KVMNUMACount:1 APIServerPort:8441 DockerOpt:[] DisableDriverMounts:false NFSShare:[] NFSSharesRoot:/nfsshares UUID: NoVTXCheck:false DNSProxy:false HostDNSResolver:true HostOnlyNicType:virtio NatNicType:virtio SSHIPAddress: SSHUser:root SSHKey: SSHPort:22 KubernetesConfig:{KubernetesVersion:v1.28.4 ClusterName:functional-131400 Namespace:default APIServerHAVIP: APIServerName:minikubeCA APISer
verNames:[] APIServerIPs:[] DNSDomain:cluster.local ContainerRuntime:docker CRISocket: NetworkPlugin:cni FeatureGates: ServiceCIDR:10.96.0.0/12 ImageRepository: LoadBalancerStartIP: LoadBalancerEndIP: CustomIngressCert: RegistryAliases: ExtraOptions:[] ShouldLoadCachedImages:true EnableDefaultCNI:false CNI:} Nodes:[{Name: IP:192.168.49.2 Port:8441 KubernetesVersion:v1.28.4 ContainerRuntime:docker ControlPlane:true Worker:true}] Addons:map[default-storageclass:true storage-provisioner:true] CustomAddonImages:map[] CustomAddonRegistries:map[] VerifyComponents:map[apiserver:true apps_running:true default_sa:true extra:true kubelet:true node_ready:true system_pods:true] StartHostTimeout:6m0s ScheduledStop:<nil> ExposedPorts:[] ListenAddress: Network: Subnet: MultiNodeRequested:false ExtraDisks:0 CertExpiration:26280h0m0s Mount:false MountString:C:\Users\jenkins.minikube4:/minikube-host Mount9PVersion:9p2000.L MountGID:docker MountIP: MountMSize:262144 MountOptions:[] MountPort:0 MountType:9p MountUID:docker Binar
yMirror: DisableOptimizations:false DisableMetrics:false CustomQemuFirmwarePath: SocketVMnetClientPath: SocketVMnetPath: StaticIP: SSHAuthSock: SSHAgentPID:0 GPUs: AutoPauseInterval:1m0s}
	I0308 03:11:47.796903    9128 ssh_runner.go:195] Run: docker ps --filter status=paused --filter=name=k8s_.*_(kube-system)_ --format={{.ID}}
	I0308 03:11:47.848783    9128 ssh_runner.go:195] Run: sudo ls /var/lib/kubelet/kubeadm-flags.env /var/lib/kubelet/config.yaml /var/lib/minikube/etcd
	I0308 03:11:47.873596    9128 command_runner.go:130] > /var/lib/kubelet/config.yaml
	I0308 03:11:47.873596    9128 command_runner.go:130] > /var/lib/kubelet/kubeadm-flags.env
	I0308 03:11:47.873596    9128 command_runner.go:130] > /var/lib/minikube/etcd:
	I0308 03:11:47.873596    9128 command_runner.go:130] > member
	W0308 03:11:47.873752    9128 kubeadm.go:404] apiserver tunnel failed: apiserver port not set
	I0308 03:11:47.873791    9128 kubeadm.go:407] found existing configuration files, will attempt cluster restart
	I0308 03:11:47.873791    9128 kubeadm.go:587] restartPrimaryControlPlane start ...
	I0308 03:11:47.887131    9128 ssh_runner.go:195] Run: sudo test -d /data/minikube
	I0308 03:11:47.944882    9128 kubeadm.go:129] /data/minikube skipping compat symlinks: sudo test -d /data/minikube: Process exited with status 1
	stdout:
	
	stderr:
	I0308 03:11:47.955676    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "8441/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:48.136693    9128 kubeconfig.go:125] found "functional-131400" server: "https://127.0.0.1:63411"
	I0308 03:11:48.137448    9128 loader.go:395] Config loaded from file:  C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	I0308 03:11:48.138417    9128 kapi.go:59] client config for functional-131400: &rest.Config{Host:"https://127.0.0.1:63411", APIPath:"", ContentConfig:rest.ContentConfig{AcceptContentTypes:"", ContentType:"", GroupVersion:(*schema.GroupVersion)(nil), NegotiatedSerializer:runtime.NegotiatedSerializer(nil)}, Username:"", Password:"", BearerToken:"", BearerTokenFile:"", Impersonate:rest.ImpersonationConfig{UserName:"", UID:"", Groups:[]string(nil), Extra:map[string][]string(nil)}, AuthProvider:<nil>, AuthConfigPersister:rest.AuthProviderConfigPersister(nil), ExecProvider:<nil>, TLSClientConfig:rest.sanitizedTLSClientConfig{Insecure:false, ServerName:"", CertFile:"C:\\Users\\jenkins.minikube4\\minikube-integration\\.minikube\\profiles\\functional-131400\\client.crt", KeyFile:"C:\\Users\\jenkins.minikube4\\minikube-integration\\.minikube\\profiles\\functional-131400\\client.key", CAFile:"C:\\Users\\jenkins.minikube4\\minikube-integration\\.minikube\\ca.crt", CertData:[]uint8(nil), KeyData:[]uint8(nil), CAD
ata:[]uint8(nil), NextProtos:[]string(nil)}, UserAgent:"", DisableCompression:false, Transport:http.RoundTripper(nil), WrapTransport:(transport.WrapperFunc)(0x1db0520), QPS:0, Burst:0, RateLimiter:flowcontrol.RateLimiter(nil), WarningHandler:rest.WarningHandler(nil), Timeout:0, Dial:(func(context.Context, string, string) (net.Conn, error))(nil), Proxy:(func(*http.Request) (*url.URL, error))(nil)}
	I0308 03:11:48.139491    9128 cert_rotation.go:137] Starting client certificate rotation controller
	I0308 03:11:48.151364    9128 ssh_runner.go:195] Run: sudo diff -u /var/tmp/minikube/kubeadm.yaml /var/tmp/minikube/kubeadm.yaml.new
	I0308 03:11:48.169372    9128 kubeadm.go:624] The running cluster does not require reconfiguration: 127.0.0.1
	I0308 03:11:48.169372    9128 kubeadm.go:591] duration metric: took 295.5668ms to restartPrimaryControlPlane
	I0308 03:11:48.169372    9128 kubeadm.go:393] duration metric: took 381.0424ms to StartCluster
	I0308 03:11:48.169372    9128 settings.go:142] acquiring lock: {Name:mk5d8710830d010adb6db61f855b0ef766a8622c Clock:{} Delay:500ms Timeout:1m0s Cancel:<nil>}
	I0308 03:11:48.169372    9128 settings.go:150] Updating kubeconfig:  C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	I0308 03:11:48.170360    9128 lock.go:35] WriteFile acquiring C:\Users\jenkins.minikube4\minikube-integration\kubeconfig: {Name:mk97c09b788e5010ffd4c9dd9525f9245d5edd25 Clock:{} Delay:500ms Timeout:1m0s Cancel:<nil>}
	I0308 03:11:48.171383    9128 start.go:234] Will wait 6m0s for node &{Name: IP:192.168.49.2 Port:8441 KubernetesVersion:v1.28.4 ContainerRuntime:docker ControlPlane:true Worker:true}
	I0308 03:11:48.172358    9128 addons.go:502] enable addons start: toEnable=map[ambassador:false auto-pause:false cloud-spanner:false csi-hostpath-driver:false dashboard:false default-storageclass:true efk:false freshpod:false gcp-auth:false gvisor:false headlamp:false helm-tiller:false inaccel:false ingress:false ingress-dns:false inspektor-gadget:false istio:false istio-provisioner:false kong:false kubeflow:false kubevirt:false logviewer:false metallb:false metrics-server:false nvidia-device-plugin:false nvidia-driver-installer:false nvidia-gpu-device-plugin:false olm:false pod-security-policy:false portainer:false registry:false registry-aliases:false registry-creds:false storage-provisioner:true storage-provisioner-gluster:false storage-provisioner-rancher:false volumesnapshots:false yakd:false]
	I0308 03:11:48.176375    9128 out.go:177] * Verifying Kubernetes components...
	I0308 03:11:48.172358    9128 addons.go:69] Setting storage-provisioner=true in profile "functional-131400"
	I0308 03:11:48.172358    9128 addons.go:69] Setting default-storageclass=true in profile "functional-131400"
	I0308 03:11:48.172358    9128 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
	I0308 03:11:48.181362    9128 addons.go:234] Setting addon storage-provisioner=true in "functional-131400"
	I0308 03:11:48.181362    9128 addons_storage_classes.go:33] enableOrDisableStorageClasses default-storageclass=true on "functional-131400"
	W0308 03:11:48.181362    9128 addons.go:243] addon storage-provisioner should already be in state true
	I0308 03:11:48.181362    9128 host.go:66] Checking if "functional-131400" exists ...
	I0308 03:11:48.192365    9128 ssh_runner.go:195] Run: sudo systemctl daemon-reload
	I0308 03:11:48.200392    9128 cli_runner.go:164] Run: docker container inspect functional-131400 --format={{.State.Status}}
	I0308 03:11:48.201666    9128 cli_runner.go:164] Run: docker container inspect functional-131400 --format={{.State.Status}}
	I0308 03:11:48.375535    9128 out.go:177]   - Using image gcr.io/k8s-minikube/storage-provisioner:v5
	I0308 03:11:48.378538    9128 addons.go:426] installing /etc/kubernetes/addons/storage-provisioner.yaml
	I0308 03:11:48.378538    9128 ssh_runner.go:362] scp memory --> /etc/kubernetes/addons/storage-provisioner.yaml (2676 bytes)
	I0308 03:11:48.388524    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:48.389530    9128 loader.go:395] Config loaded from file:  C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	I0308 03:11:48.389530    9128 kapi.go:59] client config for functional-131400: &rest.Config{Host:"https://127.0.0.1:63411", APIPath:"", ContentConfig:rest.ContentConfig{AcceptContentTypes:"", ContentType:"", GroupVersion:(*schema.GroupVersion)(nil), NegotiatedSerializer:runtime.NegotiatedSerializer(nil)}, Username:"", Password:"", BearerToken:"", BearerTokenFile:"", Impersonate:rest.ImpersonationConfig{UserName:"", UID:"", Groups:[]string(nil), Extra:map[string][]string(nil)}, AuthProvider:<nil>, AuthConfigPersister:rest.AuthProviderConfigPersister(nil), ExecProvider:<nil>, TLSClientConfig:rest.sanitizedTLSClientConfig{Insecure:false, ServerName:"", CertFile:"C:\\Users\\jenkins.minikube4\\minikube-integration\\.minikube\\profiles\\functional-131400\\client.crt", KeyFile:"C:\\Users\\jenkins.minikube4\\minikube-integration\\.minikube\\profiles\\functional-131400\\client.key", CAFile:"C:\\Users\\jenkins.minikube4\\minikube-integration\\.minikube\\ca.crt", CertData:[]uint8(nil), KeyData:[]uint8(nil), CAD
ata:[]uint8(nil), NextProtos:[]string(nil)}, UserAgent:"", DisableCompression:false, Transport:http.RoundTripper(nil), WrapTransport:(transport.WrapperFunc)(0x1db0520), QPS:0, Burst:0, RateLimiter:flowcontrol.RateLimiter(nil), WarningHandler:rest.WarningHandler(nil), Timeout:0, Dial:(func(context.Context, string, string) (net.Conn, error))(nil), Proxy:(func(*http.Request) (*url.URL, error))(nil)}
	I0308 03:11:48.390526    9128 addons.go:234] Setting addon default-storageclass=true in "functional-131400"
	W0308 03:11:48.390526    9128 addons.go:243] addon default-storageclass should already be in state true
	I0308 03:11:48.390526    9128 host.go:66] Checking if "functional-131400" exists ...
	I0308 03:11:48.407522    9128 cli_runner.go:164] Run: docker container inspect functional-131400 --format={{.State.Status}}
	I0308 03:11:48.470531    9128 ssh_runner.go:195] Run: sudo systemctl start kubelet
	I0308 03:11:48.558893    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "8441/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:48.578903    9128 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:63407 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\functional-131400\id_rsa Username:docker}
	I0308 03:11:48.593895    9128 addons.go:426] installing /etc/kubernetes/addons/storageclass.yaml
	I0308 03:11:48.593895    9128 ssh_runner.go:362] scp memory --> /etc/kubernetes/addons/storageclass.yaml (271 bytes)
	I0308 03:11:48.601901    9128 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
	I0308 03:11:48.739489    9128 node_ready.go:35] waiting up to 6m0s for node "functional-131400" to be "Ready" ...
	I0308 03:11:48.740481    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:48.740481    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:48.740481    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:48.740481    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:48.745488    9128 round_trippers.go:574] Response Status:  in 5 milliseconds
	I0308 03:11:48.745488    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:48.783737    9128 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:63407 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\functional-131400\id_rsa Username:docker}
	I0308 03:11:49.253234    9128 ssh_runner.go:195] Run: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply -f /etc/kubernetes/addons/storage-provisioner.yaml
	I0308 03:11:49.456449    9128 ssh_runner.go:195] Run: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply -f /etc/kubernetes/addons/storageclass.yaml
	I0308 03:11:49.754472    9128 with_retry.go:234] Got a Retry-After 1s response for attempt 1 to https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:49.754533    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:49.754533    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:49.754533    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:49.754533    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:49.758906    9128 round_trippers.go:574] Response Status:  in 3 milliseconds
	I0308 03:11:49.758906    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:49.943155    9128 command_runner.go:130] ! The connection to the server localhost:8441 was refused - did you specify the right host or port?
	W0308 03:11:50.025812    9128 addons.go:452] apply failed, will retry: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply -f /etc/kubernetes/addons/storage-provisioner.yaml: Process exited with status 1
	stdout:
	
	stderr:
	The connection to the server localhost:8441 was refused - did you specify the right host or port?
	I0308 03:11:50.025980    9128 retry.go:31] will retry after 190.918119ms: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply -f /etc/kubernetes/addons/storage-provisioner.yaml: Process exited with status 1
	stdout:
	
	stderr:
	The connection to the server localhost:8441 was refused - did you specify the right host or port?
	I0308 03:11:50.044574    9128 command_runner.go:130] ! The connection to the server localhost:8441 was refused - did you specify the right host or port?
	W0308 03:11:50.044574    9128 addons.go:452] apply failed, will retry: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply -f /etc/kubernetes/addons/storageclass.yaml: Process exited with status 1
	stdout:
	
	stderr:
	The connection to the server localhost:8441 was refused - did you specify the right host or port?
	I0308 03:11:50.044574    9128 retry.go:31] will retry after 250.129603ms: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply -f /etc/kubernetes/addons/storageclass.yaml: Process exited with status 1
	stdout:
	
	stderr:
	The connection to the server localhost:8441 was refused - did you specify the right host or port?
	I0308 03:11:50.248145    9128 ssh_runner.go:195] Run: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply --force -f /etc/kubernetes/addons/storage-provisioner.yaml
	I0308 03:11:50.319539    9128 ssh_runner.go:195] Run: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply --force -f /etc/kubernetes/addons/storageclass.yaml
	I0308 03:11:50.765205    9128 with_retry.go:234] Got a Retry-After 1s response for attempt 2 to https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:50.765205    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:50.765205    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:50.765205    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:50.765205    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:50.769165    9128 round_trippers.go:574] Response Status:  in 3 milliseconds
	I0308 03:11:50.769165    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:50.926595    9128 command_runner.go:130] ! The connection to the server localhost:8441 was refused - did you specify the right host or port?
	I0308 03:11:50.929476    9128 command_runner.go:130] ! The connection to the server localhost:8441 was refused - did you specify the right host or port?
	W0308 03:11:50.929476    9128 addons.go:452] apply failed, will retry: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply --force -f /etc/kubernetes/addons/storage-provisioner.yaml: Process exited with status 1
	stdout:
	
	stderr:
	The connection to the server localhost:8441 was refused - did you specify the right host or port?
	W0308 03:11:50.929476    9128 addons.go:452] apply failed, will retry: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply --force -f /etc/kubernetes/addons/storageclass.yaml: Process exited with status 1
	stdout:
	
	stderr:
	The connection to the server localhost:8441 was refused - did you specify the right host or port?
	I0308 03:11:50.929476    9128 retry.go:31] will retry after 523.970098ms: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply --force -f /etc/kubernetes/addons/storageclass.yaml: Process exited with status 1
	stdout:
	
	stderr:
	The connection to the server localhost:8441 was refused - did you specify the right host or port?
	I0308 03:11:50.929476    9128 retry.go:31] will retry after 254.22453ms: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply --force -f /etc/kubernetes/addons/storage-provisioner.yaml: Process exited with status 1
	stdout:
	
	stderr:
	The connection to the server localhost:8441 was refused - did you specify the right host or port?
	I0308 03:11:51.201695    9128 ssh_runner.go:195] Run: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply --force -f /etc/kubernetes/addons/storage-provisioner.yaml
	I0308 03:11:51.480503    9128 ssh_runner.go:195] Run: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply --force -f /etc/kubernetes/addons/storageclass.yaml
	I0308 03:11:51.780701    9128 with_retry.go:234] Got a Retry-After 1s response for attempt 3 to https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:51.780939    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:51.780939    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:51.780939    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:51.780939    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:55.734215    9128 round_trippers.go:574] Response Status: 200 OK in 3953 milliseconds
	I0308 03:11:55.734215    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:55.734215    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: 
	I0308 03:11:55.734215    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 
	I0308 03:11:55.734215    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:55 GMT
	I0308 03:11:55.734768    9128 round_trippers.go:580]     Audit-Id: cde3fe70-225b-446e-933a-6738c959d464
	I0308 03:11:55.734768    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:55.734768    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:55.832744    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:11:55.835268    9128 node_ready.go:49] node "functional-131400" has status "Ready":"True"
	I0308 03:11:55.835268    9128 node_ready.go:38] duration metric: took 7.0954538s for node "functional-131400" to be "Ready" ...
	I0308 03:11:55.835268    9128 pod_ready.go:35] extra waiting up to 6m0s for all system-critical pods including labels [k8s-app=kube-dns component=etcd component=kube-apiserver component=kube-controller-manager k8s-app=kube-proxy component=kube-scheduler] to be "Ready" ...
	I0308 03:11:55.835656    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods
	I0308 03:11:55.835656    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:55.835656    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:55.835656    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:56.035371    9128 round_trippers.go:574] Response Status: 200 OK in 199 milliseconds
	I0308 03:11:56.035371    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:56.035371    9128 round_trippers.go:580]     Audit-Id: 6952a1d9-ae87-4111-bdc1-8f020838898e
	I0308 03:11:56.035371    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:56.035371    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:56.035371    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: 
	I0308 03:11:56.035371    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 
	I0308 03:11:56.035371    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:56 GMT
	I0308 03:11:56.037524    9128 request.go:1212] Response Body: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"442"},"items":[{"metadata":{"name":"coredns-5dd5756b68-pmvrj","generateName":"coredns-5dd5756b68-","namespace":"kube-system","uid":"6d6a4296-e51e-4cba-a4d7-00958ff0ecce","resourceVersion":"425","creationTimestamp":"2024-03-08T03:11:17Z","labels":{"k8s-app":"kube-dns","pod-template-hash":"5dd5756b68"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"ReplicaSet","name":"coredns-5dd5756b68","uid":"7d873a3f-df63-48c5-91fe-6b2b3b180cdb","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:17Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:k8s-app":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"7d873a3f-df63-48c5-91fe-6b2b3b180cdb\"}":{}}},"f:spec":{"f:affinity":{".":{},"f:podAntiAffinity":{".":{},"f
:preferredDuringSchedulingIgnoredDuringExecution":{}}},"f:containers":{ [truncated 48246 chars]
	I0308 03:11:56.042062    9128 pod_ready.go:78] waiting up to 6m0s for pod "coredns-5dd5756b68-pmvrj" in "kube-system" namespace to be "Ready" ...
	I0308 03:11:56.042745    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/coredns-5dd5756b68-pmvrj
	I0308 03:11:56.042745    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:56.042745    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:56.042745    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:56.145767    9128 round_trippers.go:574] Response Status: 200 OK in 103 milliseconds
	I0308 03:11:56.145767    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:56.145767    9128 round_trippers.go:580]     Audit-Id: 7ea85be3-a284-48c4-864f-8aaa537ca721
	I0308 03:11:56.145767    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:56.145767    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:56.145767    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:56.145767    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:56.145767    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:56 GMT
	I0308 03:11:56.145767    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"coredns-5dd5756b68-pmvrj","generateName":"coredns-5dd5756b68-","namespace":"kube-system","uid":"6d6a4296-e51e-4cba-a4d7-00958ff0ecce","resourceVersion":"446","creationTimestamp":"2024-03-08T03:11:17Z","labels":{"k8s-app":"kube-dns","pod-template-hash":"5dd5756b68"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"ReplicaSet","name":"coredns-5dd5756b68","uid":"7d873a3f-df63-48c5-91fe-6b2b3b180cdb","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:17Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:k8s-app":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"7d873a3f-df63-48c5-91fe-6b2b3b180cdb\"}":{}}},"f:spec":{"f:affinity":{".":{},"f:podAntiAffinity":{".":{},"f:preferredDuringSchedulingIgnoredDuringExecution":{
}}},"f:containers":{"k:{\"name\":\"coredns\"}":{".":{},"f:args":{},"f:i [truncated 6338 chars]
	I0308 03:11:56.147169    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:56.147169    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:56.147169    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:56.147169    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:56.229308    9128 round_trippers.go:574] Response Status: 200 OK in 82 milliseconds
	I0308 03:11:56.229308    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:56.229308    9128 round_trippers.go:580]     Audit-Id: 593390a7-6a68-4313-b8e9-5e3c6820f23b
	I0308 03:11:56.229308    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:56.229308    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:56.229308    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:56.229308    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:56.229308    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:56 GMT
	I0308 03:11:56.230378    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:11:56.545866    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/coredns-5dd5756b68-pmvrj
	I0308 03:11:56.545866    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:56.545866    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:56.545866    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:56.566404    9128 round_trippers.go:574] Response Status: 200 OK in 20 milliseconds
	I0308 03:11:56.566604    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:56.566604    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:56.566689    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:56.566689    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:56.566689    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:56.566762    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:56 GMT
	I0308 03:11:56.566798    9128 round_trippers.go:580]     Audit-Id: 8e8fee6e-f4ed-4085-b7c5-012b54156926
	I0308 03:11:56.567157    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"coredns-5dd5756b68-pmvrj","generateName":"coredns-5dd5756b68-","namespace":"kube-system","uid":"6d6a4296-e51e-4cba-a4d7-00958ff0ecce","resourceVersion":"446","creationTimestamp":"2024-03-08T03:11:17Z","labels":{"k8s-app":"kube-dns","pod-template-hash":"5dd5756b68"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"ReplicaSet","name":"coredns-5dd5756b68","uid":"7d873a3f-df63-48c5-91fe-6b2b3b180cdb","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:17Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:k8s-app":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"7d873a3f-df63-48c5-91fe-6b2b3b180cdb\"}":{}}},"f:spec":{"f:affinity":{".":{},"f:podAntiAffinity":{".":{},"f:preferredDuringSchedulingIgnoredDuringExecution":{
}}},"f:containers":{"k:{\"name\":\"coredns\"}":{".":{},"f:args":{},"f:i [truncated 6338 chars]
	I0308 03:11:56.568362    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:56.568414    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:56.568489    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:56.568489    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:56.628666    9128 round_trippers.go:574] Response Status: 200 OK in 60 milliseconds
	I0308 03:11:56.628666    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:56.628666    9128 round_trippers.go:580]     Audit-Id: c739e9f5-4e3d-49fa-90c3-7252b6a4d187
	I0308 03:11:56.628666    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:56.628666    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:56.628666    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:56.628816    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:56.628816    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:56 GMT
	I0308 03:11:56.629174    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:11:57.049377    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/coredns-5dd5756b68-pmvrj
	I0308 03:11:57.049377    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:57.049377    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:57.049377    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:57.058246    9128 round_trippers.go:574] Response Status: 200 OK in 8 milliseconds
	I0308 03:11:57.058246    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:57.058246    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:57.058246    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:57.058246    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:57.058246    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:57 GMT
	I0308 03:11:57.058246    9128 round_trippers.go:580]     Audit-Id: 0c21421d-0440-4733-b8d9-87efb79eaa0d
	I0308 03:11:57.058246    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:57.058246    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"coredns-5dd5756b68-pmvrj","generateName":"coredns-5dd5756b68-","namespace":"kube-system","uid":"6d6a4296-e51e-4cba-a4d7-00958ff0ecce","resourceVersion":"457","creationTimestamp":"2024-03-08T03:11:17Z","labels":{"k8s-app":"kube-dns","pod-template-hash":"5dd5756b68"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"ReplicaSet","name":"coredns-5dd5756b68","uid":"7d873a3f-df63-48c5-91fe-6b2b3b180cdb","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:17Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:k8s-app":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"7d873a3f-df63-48c5-91fe-6b2b3b180cdb\"}":{}}},"f:spec":{"f:affinity":{".":{},"f:podAntiAffinity":{".":{},"f:preferredDuringSchedulingIgnoredDuringExecution":{
}}},"f:containers":{"k:{\"name\":\"coredns\"}":{".":{},"f:args":{},"f:i [truncated 6383 chars]
	I0308 03:11:57.058983    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:57.058983    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:57.058983    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:57.058983    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:57.127379    9128 round_trippers.go:574] Response Status: 200 OK in 68 milliseconds
	I0308 03:11:57.127379    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:57.127379    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:57 GMT
	I0308 03:11:57.127379    9128 round_trippers.go:580]     Audit-Id: aa1c8abb-1235-4113-ba63-ca36bab6790c
	I0308 03:11:57.127379    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:57.127379    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:57.127936    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:57.127936    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:57.128403    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:11:57.550682    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/coredns-5dd5756b68-pmvrj
	I0308 03:11:57.550682    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:57.550682    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:57.550682    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:57.560143    9128 round_trippers.go:574] Response Status: 200 OK in 9 milliseconds
	I0308 03:11:57.560143    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:57.560143    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:57 GMT
	I0308 03:11:57.560143    9128 round_trippers.go:580]     Audit-Id: 966f33e4-4c13-4fde-9c02-ebe0686c8aef
	I0308 03:11:57.560143    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:57.560143    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:57.560143    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:57.560143    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:57.561347    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"coredns-5dd5756b68-pmvrj","generateName":"coredns-5dd5756b68-","namespace":"kube-system","uid":"6d6a4296-e51e-4cba-a4d7-00958ff0ecce","resourceVersion":"457","creationTimestamp":"2024-03-08T03:11:17Z","labels":{"k8s-app":"kube-dns","pod-template-hash":"5dd5756b68"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"ReplicaSet","name":"coredns-5dd5756b68","uid":"7d873a3f-df63-48c5-91fe-6b2b3b180cdb","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:17Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:k8s-app":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"7d873a3f-df63-48c5-91fe-6b2b3b180cdb\"}":{}}},"f:spec":{"f:affinity":{".":{},"f:podAntiAffinity":{".":{},"f:preferredDuringSchedulingIgnoredDuringExecution":{
}}},"f:containers":{"k:{\"name\":\"coredns\"}":{".":{},"f:args":{},"f:i [truncated 6383 chars]
	I0308 03:11:57.562227    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:57.562314    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:57.562314    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:57.562314    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:57.626955    9128 round_trippers.go:574] Response Status: 200 OK in 64 milliseconds
	I0308 03:11:57.626955    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:57.626955    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:57.626955    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:57.627090    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:57 GMT
	I0308 03:11:57.627090    9128 round_trippers.go:580]     Audit-Id: 0483c924-ab0f-4805-b0d2-c3bbf0baa75f
	I0308 03:11:57.627148    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:57.627148    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:57.627469    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:11:58.047830    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/coredns-5dd5756b68-pmvrj
	I0308 03:11:58.047830    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:58.047954    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:58.047986    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:58.056558    9128 round_trippers.go:574] Response Status: 200 OK in 8 milliseconds
	I0308 03:11:58.056558    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:58.056558    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:58.056558    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:58 GMT
	I0308 03:11:58.056558    9128 round_trippers.go:580]     Audit-Id: 784797e0-d2d3-40cc-9236-504e7d6ca48c
	I0308 03:11:58.056558    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:58.056558    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:58.056558    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:58.056558    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"coredns-5dd5756b68-pmvrj","generateName":"coredns-5dd5756b68-","namespace":"kube-system","uid":"6d6a4296-e51e-4cba-a4d7-00958ff0ecce","resourceVersion":"457","creationTimestamp":"2024-03-08T03:11:17Z","labels":{"k8s-app":"kube-dns","pod-template-hash":"5dd5756b68"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"ReplicaSet","name":"coredns-5dd5756b68","uid":"7d873a3f-df63-48c5-91fe-6b2b3b180cdb","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:17Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:k8s-app":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"7d873a3f-df63-48c5-91fe-6b2b3b180cdb\"}":{}}},"f:spec":{"f:affinity":{".":{},"f:podAntiAffinity":{".":{},"f:preferredDuringSchedulingIgnoredDuringExecution":{
}}},"f:containers":{"k:{\"name\":\"coredns\"}":{".":{},"f:args":{},"f:i [truncated 6383 chars]
	I0308 03:11:58.058024    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:58.058024    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:58.058024    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:58.058024    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:58.063942    9128 round_trippers.go:574] Response Status: 200 OK in 5 milliseconds
	I0308 03:11:58.063942    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:58.063942    9128 round_trippers.go:580]     Audit-Id: f8673d8e-2078-4fbf-a391-3cb2d829fc70
	I0308 03:11:58.063942    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:58.063942    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:58.063942    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:58.063942    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:58.063942    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:58 GMT
	I0308 03:11:58.063942    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:11:58.065074    9128 pod_ready.go:102] pod "coredns-5dd5756b68-pmvrj" in "kube-system" namespace has status "Ready":"False"
	I0308 03:11:58.071012    9128 command_runner.go:130] > serviceaccount/storage-provisioner unchanged
	I0308 03:11:58.071012    9128 command_runner.go:130] > clusterrolebinding.rbac.authorization.k8s.io/storage-provisioner unchanged
	I0308 03:11:58.071012    9128 command_runner.go:130] > role.rbac.authorization.k8s.io/system:persistent-volume-provisioner unchanged
	I0308 03:11:58.071012    9128 command_runner.go:130] > rolebinding.rbac.authorization.k8s.io/system:persistent-volume-provisioner unchanged
	I0308 03:11:58.071012    9128 command_runner.go:130] > endpoints/k8s.io-minikube-hostpath unchanged
	I0308 03:11:58.071012    9128 command_runner.go:130] > pod/storage-provisioner configured
	I0308 03:11:58.071012    9128 ssh_runner.go:235] Completed: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply --force -f /etc/kubernetes/addons/storage-provisioner.yaml: (6.8690026s)
	I0308 03:11:58.071012    9128 command_runner.go:130] > storageclass.storage.k8s.io/standard unchanged
	I0308 03:11:58.071012    9128 ssh_runner.go:235] Completed: sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.28.4/kubectl apply --force -f /etc/kubernetes/addons/storageclass.yaml: (6.5900877s)
	I0308 03:11:58.071541    9128 round_trippers.go:463] GET https://127.0.0.1:63411/apis/storage.k8s.io/v1/storageclasses
	I0308 03:11:58.071541    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:58.071541    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:58.071541    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:58.126079    9128 round_trippers.go:574] Response Status: 200 OK in 54 milliseconds
	I0308 03:11:58.126181    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:58.126181    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:58.126181    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:58.126181    9128 round_trippers.go:580]     Content-Length: 1273
	I0308 03:11:58.126181    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:58 GMT
	I0308 03:11:58.126181    9128 round_trippers.go:580]     Audit-Id: 8a672fb9-e053-44be-9f42-f1d6346523c4
	I0308 03:11:58.126323    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:58.126359    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:58.126359    9128 request.go:1212] Response Body: {"kind":"StorageClassList","apiVersion":"storage.k8s.io/v1","metadata":{"resourceVersion":"460"},"items":[{"metadata":{"name":"standard","uid":"6c43212f-6f78-44e5-af5e-088a9da9178d","resourceVersion":"379","creationTimestamp":"2024-03-08T03:11:20Z","labels":{"addonmanager.kubernetes.io/mode":"EnsureExists"},"annotations":{"kubectl.kubernetes.io/last-applied-configuration":"{\"apiVersion\":\"storage.k8s.io/v1\",\"kind\":\"StorageClass\",\"metadata\":{\"annotations\":{\"storageclass.kubernetes.io/is-default-class\":\"true\"},\"labels\":{\"addonmanager.kubernetes.io/mode\":\"EnsureExists\"},\"name\":\"standard\"},\"provisioner\":\"k8s.io/minikube-hostpath\"}\n","storageclass.kubernetes.io/is-default-class":"true"},"managedFields":[{"manager":"kubectl-client-side-apply","operation":"Update","apiVersion":"storage.k8s.io/v1","time":"2024-03-08T03:11:20Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubectl.kuberne
tes.io/last-applied-configuration":{},"f:storageclass.kubernetes.io/is- [truncated 249 chars]
	I0308 03:11:58.127233    9128 request.go:1212] Request Body: {"kind":"StorageClass","apiVersion":"storage.k8s.io/v1","metadata":{"name":"standard","uid":"6c43212f-6f78-44e5-af5e-088a9da9178d","resourceVersion":"379","creationTimestamp":"2024-03-08T03:11:20Z","labels":{"addonmanager.kubernetes.io/mode":"EnsureExists"},"annotations":{"kubectl.kubernetes.io/last-applied-configuration":"{\"apiVersion\":\"storage.k8s.io/v1\",\"kind\":\"StorageClass\",\"metadata\":{\"annotations\":{\"storageclass.kubernetes.io/is-default-class\":\"true\"},\"labels\":{\"addonmanager.kubernetes.io/mode\":\"EnsureExists\"},\"name\":\"standard\"},\"provisioner\":\"k8s.io/minikube-hostpath\"}\n","storageclass.kubernetes.io/is-default-class":"true"},"managedFields":[{"manager":"kubectl-client-side-apply","operation":"Update","apiVersion":"storage.k8s.io/v1","time":"2024-03-08T03:11:20Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubectl.kubernetes.io/last-applied-configuration":{},"f:storageclas
s.kubernetes.io/is-default-class":{}},"f:labels":{".":{},"f:addonmanag [truncated 196 chars]
	I0308 03:11:58.127233    9128 round_trippers.go:463] PUT https://127.0.0.1:63411/apis/storage.k8s.io/v1/storageclasses/standard
	I0308 03:11:58.127233    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:58.127233    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:58.127233    9128 round_trippers.go:473]     Content-Type: application/json
	I0308 03:11:58.127233    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:58.133848    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:11:58.133848    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:58.133848    9128 round_trippers.go:580]     Audit-Id: a9698c31-dba4-4770-a520-6387661c5515
	I0308 03:11:58.133848    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:58.133848    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:58.133848    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:58.133848    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:58.133848    9128 round_trippers.go:580]     Content-Length: 1220
	I0308 03:11:58.133848    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:58 GMT
	I0308 03:11:58.134790    9128 request.go:1212] Response Body: {"kind":"StorageClass","apiVersion":"storage.k8s.io/v1","metadata":{"name":"standard","uid":"6c43212f-6f78-44e5-af5e-088a9da9178d","resourceVersion":"379","creationTimestamp":"2024-03-08T03:11:20Z","labels":{"addonmanager.kubernetes.io/mode":"EnsureExists"},"annotations":{"kubectl.kubernetes.io/last-applied-configuration":"{\"apiVersion\":\"storage.k8s.io/v1\",\"kind\":\"StorageClass\",\"metadata\":{\"annotations\":{\"storageclass.kubernetes.io/is-default-class\":\"true\"},\"labels\":{\"addonmanager.kubernetes.io/mode\":\"EnsureExists\"},\"name\":\"standard\"},\"provisioner\":\"k8s.io/minikube-hostpath\"}\n","storageclass.kubernetes.io/is-default-class":"true"},"managedFields":[{"manager":"kubectl-client-side-apply","operation":"Update","apiVersion":"storage.k8s.io/v1","time":"2024-03-08T03:11:20Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubectl.kubernetes.io/last-applied-configuration":{},"f:storagecla
ss.kubernetes.io/is-default-class":{}},"f:labels":{".":{},"f:addonmanag [truncated 196 chars]
	I0308 03:11:58.139263    9128 out.go:177] * Enabled addons: storage-provisioner, default-storageclass
	I0308 03:11:58.141596    9128 addons.go:505] duration metric: took 9.9697563s for enable addons: enabled=[storage-provisioner default-storageclass]
	I0308 03:11:58.545413    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/coredns-5dd5756b68-pmvrj
	I0308 03:11:58.545634    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:58.545634    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:58.545634    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:58.552250    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:11:58.552250    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:58.552250    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:58.552250    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:58.552250    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:58 GMT
	I0308 03:11:58.552250    9128 round_trippers.go:580]     Audit-Id: 31af5f0e-fbaa-4ac2-9945-de83f62f1874
	I0308 03:11:58.552250    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:58.552250    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:58.553048    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"coredns-5dd5756b68-pmvrj","generateName":"coredns-5dd5756b68-","namespace":"kube-system","uid":"6d6a4296-e51e-4cba-a4d7-00958ff0ecce","resourceVersion":"457","creationTimestamp":"2024-03-08T03:11:17Z","labels":{"k8s-app":"kube-dns","pod-template-hash":"5dd5756b68"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"ReplicaSet","name":"coredns-5dd5756b68","uid":"7d873a3f-df63-48c5-91fe-6b2b3b180cdb","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:17Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:k8s-app":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"7d873a3f-df63-48c5-91fe-6b2b3b180cdb\"}":{}}},"f:spec":{"f:affinity":{".":{},"f:podAntiAffinity":{".":{},"f:preferredDuringSchedulingIgnoredDuringExecution":{
}}},"f:containers":{"k:{\"name\":\"coredns\"}":{".":{},"f:args":{},"f:i [truncated 6383 chars]
	I0308 03:11:58.553580    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:58.553731    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:58.553731    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:58.553731    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:58.560085    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:11:58.560085    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:58.560085    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:58.560085    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:58.560085    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:58.560085    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:58.560085    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:58 GMT
	I0308 03:11:58.560085    9128 round_trippers.go:580]     Audit-Id: 865fbbc9-3490-4ce4-af48-a30c32fd043c
	I0308 03:11:58.560085    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:11:59.056951    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/coredns-5dd5756b68-pmvrj
	I0308 03:11:59.056951    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:59.057189    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:59.057189    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:59.063890    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:11:59.063890    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:59.063990    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:59.063990    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:59.063990    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:59.063990    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:59.063990    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:59 GMT
	I0308 03:11:59.063990    9128 round_trippers.go:580]     Audit-Id: 4b6d34b8-3631-4528-aadc-addd1be52fda
	I0308 03:11:59.064282    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"coredns-5dd5756b68-pmvrj","generateName":"coredns-5dd5756b68-","namespace":"kube-system","uid":"6d6a4296-e51e-4cba-a4d7-00958ff0ecce","resourceVersion":"484","creationTimestamp":"2024-03-08T03:11:17Z","labels":{"k8s-app":"kube-dns","pod-template-hash":"5dd5756b68"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"ReplicaSet","name":"coredns-5dd5756b68","uid":"7d873a3f-df63-48c5-91fe-6b2b3b180cdb","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:17Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:k8s-app":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"7d873a3f-df63-48c5-91fe-6b2b3b180cdb\"}":{}}},"f:spec":{"f:affinity":{".":{},"f:podAntiAffinity":{".":{},"f:preferredDuringSchedulingIgnoredDuringExecution":{
}}},"f:containers":{"k:{\"name\":\"coredns\"}":{".":{},"f:args":{},"f:i [truncated 6154 chars]
	I0308 03:11:59.064882    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:59.064882    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:59.065007    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:59.065038    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:59.071359    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:11:59.071359    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:59.071359    9128 round_trippers.go:580]     Audit-Id: 05ae86ce-6b83-4f41-88bc-ebe7935ac1c5
	I0308 03:11:59.071359    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:59.071359    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:59.071359    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:59.071359    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:59.071359    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:59 GMT
	I0308 03:11:59.071359    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:11:59.071359    9128 pod_ready.go:92] pod "coredns-5dd5756b68-pmvrj" in "kube-system" namespace has status "Ready":"True"
	I0308 03:11:59.071359    9128 pod_ready.go:81] duration metric: took 3.0291583s for pod "coredns-5dd5756b68-pmvrj" in "kube-system" namespace to be "Ready" ...
	I0308 03:11:59.071359    9128 pod_ready.go:78] waiting up to 6m0s for pod "etcd-functional-131400" in "kube-system" namespace to be "Ready" ...
	I0308 03:11:59.072832    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/etcd-functional-131400
	I0308 03:11:59.072832    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:59.072832    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:59.072832    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:59.078271    9128 round_trippers.go:574] Response Status: 200 OK in 5 milliseconds
	I0308 03:11:59.078271    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:59.078271    9128 round_trippers.go:580]     Audit-Id: 147c2184-c5c3-4f9d-a329-07bf2b92056b
	I0308 03:11:59.078271    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:59.078271    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:59.078271    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:59.078271    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:59.078271    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:59 GMT
	I0308 03:11:59.078271    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"etcd-functional-131400","namespace":"kube-system","uid":"c386d31e-08af-45e2-a349-f4975669c638","resourceVersion":"455","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"etcd","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/etcd.advertise-client-urls":"https://192.168.49.2:2379","kubernetes.io/config.hash":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.mirror":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.seen":"2024-03-08T03:10:55.124069421Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.kubernetes.io/etcd.advertise-
client-urls":{},"f:kubernetes.io/config.hash":{},"f:kubernetes.io/confi [truncated 6290 chars]
	I0308 03:11:59.079490    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:59.079490    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:59.079490    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:59.079490    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:59.086575    9128 round_trippers.go:574] Response Status: 200 OK in 7 milliseconds
	I0308 03:11:59.086575    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:59.086575    9128 round_trippers.go:580]     Audit-Id: 5f0083e8-4bf8-4e80-acaa-2d5763122144
	I0308 03:11:59.086575    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:59.086575    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:59.086575    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:59.086575    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:59.086575    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:59 GMT
	I0308 03:11:59.086575    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:11:59.583283    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/etcd-functional-131400
	I0308 03:11:59.583283    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:59.583283    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:59.583283    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:59.589008    9128 round_trippers.go:574] Response Status: 200 OK in 5 milliseconds
	I0308 03:11:59.589008    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:59.589008    9128 round_trippers.go:580]     Audit-Id: e807d182-4e53-4819-876f-f5aa5490877a
	I0308 03:11:59.589008    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:59.589008    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:59.589008    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:59.589526    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:59.589526    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:59 GMT
	I0308 03:11:59.589805    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"etcd-functional-131400","namespace":"kube-system","uid":"c386d31e-08af-45e2-a349-f4975669c638","resourceVersion":"455","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"etcd","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/etcd.advertise-client-urls":"https://192.168.49.2:2379","kubernetes.io/config.hash":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.mirror":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.seen":"2024-03-08T03:10:55.124069421Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.kubernetes.io/etcd.advertise-
client-urls":{},"f:kubernetes.io/config.hash":{},"f:kubernetes.io/confi [truncated 6290 chars]
	I0308 03:11:59.590473    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:11:59.590496    9128 round_trippers.go:469] Request Headers:
	I0308 03:11:59.590541    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:11:59.590541    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:11:59.597254    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:11:59.597254    9128 round_trippers.go:577] Response Headers:
	I0308 03:11:59.597254    9128 round_trippers.go:580]     Audit-Id: d4cd6029-71fb-4b35-a49e-6a0b9a0c2b53
	I0308 03:11:59.597254    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:11:59.597254    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:11:59.597254    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:11:59.597254    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:11:59.597254    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:11:59 GMT
	I0308 03:11:59.597254    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:00.078123    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/etcd-functional-131400
	I0308 03:12:00.078193    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:00.078296    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:00.078296    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:00.084426    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:00.084426    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:00.084508    9128 round_trippers.go:580]     Audit-Id: 5e2c130a-7ed6-40a2-8b2b-7d03777355f4
	I0308 03:12:00.084508    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:00.084508    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:00.084508    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:00.084508    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:00.084508    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:00 GMT
	I0308 03:12:00.085126    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"etcd-functional-131400","namespace":"kube-system","uid":"c386d31e-08af-45e2-a349-f4975669c638","resourceVersion":"455","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"etcd","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/etcd.advertise-client-urls":"https://192.168.49.2:2379","kubernetes.io/config.hash":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.mirror":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.seen":"2024-03-08T03:10:55.124069421Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.kubernetes.io/etcd.advertise-
client-urls":{},"f:kubernetes.io/config.hash":{},"f:kubernetes.io/confi [truncated 6290 chars]
	I0308 03:12:00.086063    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:00.086063    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:00.086063    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:00.086063    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:00.092177    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:00.092177    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:00.092177    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:00 GMT
	I0308 03:12:00.092177    9128 round_trippers.go:580]     Audit-Id: d2ace93b-ab04-45ba-a9e0-703812cb8f17
	I0308 03:12:00.092177    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:00.092177    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:00.092177    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:00.092177    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:00.092177    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:00.576490    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/etcd-functional-131400
	I0308 03:12:00.576490    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:00.576490    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:00.576490    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:00.582937    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:00.582937    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:00.583026    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:00.583026    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:00.583026    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:00 GMT
	I0308 03:12:00.583026    9128 round_trippers.go:580]     Audit-Id: 530df4c0-db84-41c0-93c5-d1153ec03904
	I0308 03:12:00.583068    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:00.583068    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:00.583095    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"etcd-functional-131400","namespace":"kube-system","uid":"c386d31e-08af-45e2-a349-f4975669c638","resourceVersion":"455","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"etcd","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/etcd.advertise-client-urls":"https://192.168.49.2:2379","kubernetes.io/config.hash":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.mirror":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.seen":"2024-03-08T03:10:55.124069421Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.kubernetes.io/etcd.advertise-
client-urls":{},"f:kubernetes.io/config.hash":{},"f:kubernetes.io/confi [truncated 6290 chars]
	I0308 03:12:00.583828    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:00.583907    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:00.583907    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:00.583907    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:00.590958    9128 round_trippers.go:574] Response Status: 200 OK in 7 milliseconds
	I0308 03:12:00.590958    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:00.590958    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:00.590958    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:00.590958    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:00.590958    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:00.590958    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:00 GMT
	I0308 03:12:00.590958    9128 round_trippers.go:580]     Audit-Id: 1232c530-b2a5-4ebd-a510-4fceb7b33f8e
	I0308 03:12:00.590958    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:01.074092    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/etcd-functional-131400
	I0308 03:12:01.074162    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:01.074162    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:01.074162    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:01.082430    9128 round_trippers.go:574] Response Status: 200 OK in 8 milliseconds
	I0308 03:12:01.082430    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:01.082430    9128 round_trippers.go:580]     Audit-Id: b52fa286-c8b4-439e-a78e-00712a20fd5f
	I0308 03:12:01.082430    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:01.082430    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:01.082430    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:01.082430    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:01.082430    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:01 GMT
	I0308 03:12:01.082430    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"etcd-functional-131400","namespace":"kube-system","uid":"c386d31e-08af-45e2-a349-f4975669c638","resourceVersion":"455","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"etcd","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/etcd.advertise-client-urls":"https://192.168.49.2:2379","kubernetes.io/config.hash":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.mirror":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.seen":"2024-03-08T03:10:55.124069421Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.kubernetes.io/etcd.advertise-
client-urls":{},"f:kubernetes.io/config.hash":{},"f:kubernetes.io/confi [truncated 6290 chars]
	I0308 03:12:01.083421    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:01.083421    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:01.083421    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:01.083421    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:01.090604    9128 round_trippers.go:574] Response Status: 200 OK in 7 milliseconds
	I0308 03:12:01.090604    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:01.090604    9128 round_trippers.go:580]     Audit-Id: 231c8e6c-766a-4b26-81bb-c7f4f0e7728d
	I0308 03:12:01.090604    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:01.090604    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:01.090604    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:01.090604    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:01.090604    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:01 GMT
	I0308 03:12:01.091223    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:01.091860    9128 pod_ready.go:102] pod "etcd-functional-131400" in "kube-system" namespace has status "Ready":"False"
	I0308 03:12:01.573338    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/etcd-functional-131400
	I0308 03:12:01.573338    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:01.573338    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:01.573338    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:01.580236    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:01.580323    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:01.580323    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:01.580323    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:01 GMT
	I0308 03:12:01.580323    9128 round_trippers.go:580]     Audit-Id: f019911e-dafa-4fc6-92c2-e5399bc7795f
	I0308 03:12:01.580323    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:01.580371    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:01.580371    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:01.580371    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"etcd-functional-131400","namespace":"kube-system","uid":"c386d31e-08af-45e2-a349-f4975669c638","resourceVersion":"455","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"etcd","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/etcd.advertise-client-urls":"https://192.168.49.2:2379","kubernetes.io/config.hash":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.mirror":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.seen":"2024-03-08T03:10:55.124069421Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.kubernetes.io/etcd.advertise-
client-urls":{},"f:kubernetes.io/config.hash":{},"f:kubernetes.io/confi [truncated 6290 chars]
	I0308 03:12:01.581122    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:01.581122    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:01.581122    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:01.581122    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:01.587615    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:01.587615    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:01.587615    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:01.587615    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:01.587615    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:01.587615    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:01 GMT
	I0308 03:12:01.587615    9128 round_trippers.go:580]     Audit-Id: 654e2409-acb2-47c3-9ab5-465e0c9105a6
	I0308 03:12:01.587615    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:01.587615    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:02.072805    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/etcd-functional-131400
	I0308 03:12:02.072946    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:02.072946    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:02.072946    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:02.079190    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:02.079190    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:02.079190    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:02.079190    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:02 GMT
	I0308 03:12:02.079190    9128 round_trippers.go:580]     Audit-Id: 3ea29b03-cb3a-494e-8b75-3af050b8c367
	I0308 03:12:02.079190    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:02.079190    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:02.079190    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:02.079873    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"etcd-functional-131400","namespace":"kube-system","uid":"c386d31e-08af-45e2-a349-f4975669c638","resourceVersion":"511","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"etcd","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/etcd.advertise-client-urls":"https://192.168.49.2:2379","kubernetes.io/config.hash":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.mirror":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.seen":"2024-03-08T03:10:55.124069421Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.kubernetes.io/etcd.advertise-
client-urls":{},"f:kubernetes.io/config.hash":{},"f:kubernetes.io/confi [truncated 6289 chars]
	I0308 03:12:02.080513    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:02.080626    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:02.080626    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:02.080626    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:02.087362    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:02.087362    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:02.087362    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:02.087362    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:02 GMT
	I0308 03:12:02.087362    9128 round_trippers.go:580]     Audit-Id: a78f449c-89c3-4f9b-a318-ac632e056cb4
	I0308 03:12:02.087362    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:02.087362    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:02.087362    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:02.087362    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:02.572124    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/etcd-functional-131400
	I0308 03:12:02.572124    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:02.572201    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:02.572201    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:02.578280    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:02.578365    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:02.578430    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:02.578430    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:02.578430    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:02.578430    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:02 GMT
	I0308 03:12:02.578430    9128 round_trippers.go:580]     Audit-Id: e22fdfe6-300a-4be7-92a9-732811692b53
	I0308 03:12:02.578430    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:02.578430    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"etcd-functional-131400","namespace":"kube-system","uid":"c386d31e-08af-45e2-a349-f4975669c638","resourceVersion":"512","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"etcd","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/etcd.advertise-client-urls":"https://192.168.49.2:2379","kubernetes.io/config.hash":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.mirror":"467b643e4a2b3af530c1cb8d98f83ddc","kubernetes.io/config.seen":"2024-03-08T03:10:55.124069421Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.kubernetes.io/etcd.advertise-
client-urls":{},"f:kubernetes.io/config.hash":{},"f:kubernetes.io/confi [truncated 6066 chars]
	I0308 03:12:02.579028    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:02.579028    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:02.579028    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:02.579028    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:02.585527    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:02.585527    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:02.585527    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:02 GMT
	I0308 03:12:02.585527    9128 round_trippers.go:580]     Audit-Id: a5b7196e-01ee-43a8-9168-a5c42e27653a
	I0308 03:12:02.585527    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:02.585527    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:02.585527    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:02.585527    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:02.586086    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:02.586394    9128 pod_ready.go:92] pod "etcd-functional-131400" in "kube-system" namespace has status "Ready":"True"
	I0308 03:12:02.586394    9128 pod_ready.go:81] duration metric: took 3.5148739s for pod "etcd-functional-131400" in "kube-system" namespace to be "Ready" ...
	I0308 03:12:02.586394    9128 pod_ready.go:78] waiting up to 6m0s for pod "kube-apiserver-functional-131400" in "kube-system" namespace to be "Ready" ...
	I0308 03:12:02.586394    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400
	I0308 03:12:02.586394    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:02.586394    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:02.586394    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:02.591145    9128 round_trippers.go:574] Response Status: 200 OK in 4 milliseconds
	I0308 03:12:02.591145    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:02.591145    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:02.591145    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:02.591145    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:02 GMT
	I0308 03:12:02.591145    9128 round_trippers.go:580]     Audit-Id: 85f937da-edef-4b6c-b07f-a2585283564b
	I0308 03:12:02.591145    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:02.591145    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:02.591145    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-apiserver-functional-131400","namespace":"kube-system","uid":"0ab8b5e8-e861-4445-9c35-b00e1361a1e6","resourceVersion":"450","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"kube-apiserver","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/kube-apiserver.advertise-address.endpoint":"192.168.49.2:8441","kubernetes.io/config.hash":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.mirror":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.seen":"2024-03-08T03:10:55.124077722Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.ku
bernetes.io/kube-apiserver.advertise-address.endpoint":{},"f:kubernetes [truncated 8692 chars]
	I0308 03:12:02.592250    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:02.592305    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:02.592305    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:02.592305    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:02.597195    9128 round_trippers.go:574] Response Status: 200 OK in 4 milliseconds
	I0308 03:12:02.597195    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:02.597195    9128 round_trippers.go:580]     Audit-Id: 87cb0fd5-93a7-4602-9be9-33d55305b9e3
	I0308 03:12:02.597195    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:02.597195    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:02.597195    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:02.597195    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:02.597195    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:02 GMT
	I0308 03:12:02.597195    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:03.091251    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400
	I0308 03:12:03.091251    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:03.091326    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:03.091326    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:03.097357    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:03.097357    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:03.097357    9128 round_trippers.go:580]     Audit-Id: 62f3f300-82c7-4ebb-9c10-53a85e2920c0
	I0308 03:12:03.097357    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:03.097357    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:03.097357    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:03.097357    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:03.097357    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:03 GMT
	I0308 03:12:03.097884    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-apiserver-functional-131400","namespace":"kube-system","uid":"0ab8b5e8-e861-4445-9c35-b00e1361a1e6","resourceVersion":"450","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"kube-apiserver","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/kube-apiserver.advertise-address.endpoint":"192.168.49.2:8441","kubernetes.io/config.hash":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.mirror":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.seen":"2024-03-08T03:10:55.124077722Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.ku
bernetes.io/kube-apiserver.advertise-address.endpoint":{},"f:kubernetes [truncated 8692 chars]
	I0308 03:12:03.098258    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:03.098258    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:03.098258    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:03.098258    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:03.105320    9128 round_trippers.go:574] Response Status: 200 OK in 7 milliseconds
	I0308 03:12:03.105994    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:03.105994    9128 round_trippers.go:580]     Audit-Id: 84796002-4f74-4dc7-8134-03fba4f81578
	I0308 03:12:03.105994    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:03.105994    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:03.106063    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:03.106098    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:03.106098    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:03 GMT
	I0308 03:12:03.106212    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:03.592141    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400
	I0308 03:12:03.592141    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:03.592141    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:03.592141    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:03.598299    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:03.598386    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:03.598386    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:03.598386    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:03.598386    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:03.598435    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:03.598468    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:03 GMT
	I0308 03:12:03.598468    9128 round_trippers.go:580]     Audit-Id: 684da62c-351c-474f-b244-2c000fdb3df6
	I0308 03:12:03.598517    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-apiserver-functional-131400","namespace":"kube-system","uid":"0ab8b5e8-e861-4445-9c35-b00e1361a1e6","resourceVersion":"450","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"kube-apiserver","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/kube-apiserver.advertise-address.endpoint":"192.168.49.2:8441","kubernetes.io/config.hash":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.mirror":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.seen":"2024-03-08T03:10:55.124077722Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.ku
bernetes.io/kube-apiserver.advertise-address.endpoint":{},"f:kubernetes [truncated 8692 chars]
	I0308 03:12:03.599407    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:03.599407    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:03.599407    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:03.599407    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:03.605764    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:03.606169    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:03.606169    9128 round_trippers.go:580]     Audit-Id: ed2b9ea4-1efc-423c-bac3-988e201586af
	I0308 03:12:03.606169    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:03.606169    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:03.606169    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:03.606169    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:03.606169    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:03 GMT
	I0308 03:12:03.606169    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:04.093221    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400
	I0308 03:12:04.093221    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:04.093221    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:04.093221    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:04.098650    9128 round_trippers.go:574] Response Status: 200 OK in 5 milliseconds
	I0308 03:12:04.098650    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:04.098650    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:04.098650    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:04.098650    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:04.098650    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:04 GMT
	I0308 03:12:04.098650    9128 round_trippers.go:580]     Audit-Id: 3d8c091b-afc9-41ce-8a15-9d8454d17b1e
	I0308 03:12:04.098650    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:04.099186    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-apiserver-functional-131400","namespace":"kube-system","uid":"0ab8b5e8-e861-4445-9c35-b00e1361a1e6","resourceVersion":"450","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"kube-apiserver","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/kube-apiserver.advertise-address.endpoint":"192.168.49.2:8441","kubernetes.io/config.hash":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.mirror":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.seen":"2024-03-08T03:10:55.124077722Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.ku
bernetes.io/kube-apiserver.advertise-address.endpoint":{},"f:kubernetes [truncated 8692 chars]
	I0308 03:12:04.099854    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:04.099944    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:04.099944    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:04.099944    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:04.106043    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:04.106043    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:04.106043    9128 round_trippers.go:580]     Audit-Id: e2a45d8c-9f46-4a4a-9db2-f7b84e7f220b
	I0308 03:12:04.106043    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:04.106043    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:04.106043    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:04.106043    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:04.107016    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:04 GMT
	I0308 03:12:04.107016    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:04.597075    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400
	I0308 03:12:04.597075    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:04.597075    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:04.597075    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:04.604745    9128 round_trippers.go:574] Response Status: 200 OK in 7 milliseconds
	I0308 03:12:04.604745    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:04.604745    9128 round_trippers.go:580]     Audit-Id: dc2e1c7a-a909-42c9-8317-b7234d17b37f
	I0308 03:12:04.604745    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:04.604745    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:04.604745    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:04.604745    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:04.604745    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:04 GMT
	I0308 03:12:04.605451    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-apiserver-functional-131400","namespace":"kube-system","uid":"0ab8b5e8-e861-4445-9c35-b00e1361a1e6","resourceVersion":"450","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"kube-apiserver","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/kube-apiserver.advertise-address.endpoint":"192.168.49.2:8441","kubernetes.io/config.hash":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.mirror":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.seen":"2024-03-08T03:10:55.124077722Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.ku
bernetes.io/kube-apiserver.advertise-address.endpoint":{},"f:kubernetes [truncated 8692 chars]
	I0308 03:12:04.606086    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:04.606086    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:04.606086    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:04.606086    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:04.613283    9128 round_trippers.go:574] Response Status: 200 OK in 7 milliseconds
	I0308 03:12:04.613283    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:04.613283    9128 round_trippers.go:580]     Audit-Id: e7297f62-1d56-4e9a-94b6-cfff80067a62
	I0308 03:12:04.613283    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:04.613283    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:04.613283    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:04.613283    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:04.613283    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:04 GMT
	I0308 03:12:04.614002    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:04.614684    9128 pod_ready.go:102] pod "kube-apiserver-functional-131400" in "kube-system" namespace has status "Ready":"False"
	I0308 03:12:05.094322    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400
	I0308 03:12:05.094634    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:05.094667    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:05.094667    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:05.100961    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:05.101040    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:05.101080    9128 round_trippers.go:580]     Audit-Id: 429e0f91-f121-40cb-bee8-a450b23975e2
	I0308 03:12:05.101116    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:05.101116    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:05.101116    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:05.101116    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:05.101116    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:05 GMT
	I0308 03:12:05.101416    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-apiserver-functional-131400","namespace":"kube-system","uid":"0ab8b5e8-e861-4445-9c35-b00e1361a1e6","resourceVersion":"450","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"kube-apiserver","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/kube-apiserver.advertise-address.endpoint":"192.168.49.2:8441","kubernetes.io/config.hash":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.mirror":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.seen":"2024-03-08T03:10:55.124077722Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.ku
bernetes.io/kube-apiserver.advertise-address.endpoint":{},"f:kubernetes [truncated 8692 chars]
	I0308 03:12:05.102072    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:05.102189    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:05.102189    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:05.102189    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:05.107759    9128 round_trippers.go:574] Response Status: 200 OK in 5 milliseconds
	I0308 03:12:05.107759    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:05.107759    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:05.107759    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:05 GMT
	I0308 03:12:05.107759    9128 round_trippers.go:580]     Audit-Id: 942ffc7a-a092-4e60-a684-cbf4e1db4e88
	I0308 03:12:05.107759    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:05.107759    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:05.107759    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:05.107759    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:05.596045    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400
	I0308 03:12:05.596123    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:05.596123    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:05.596123    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:05.601883    9128 round_trippers.go:574] Response Status: 200 OK in 5 milliseconds
	I0308 03:12:05.601883    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:05.601883    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:05.601883    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:05.601883    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:05 GMT
	I0308 03:12:05.601883    9128 round_trippers.go:580]     Audit-Id: 8b10b076-15d5-48bd-afe3-8a779daa5237
	I0308 03:12:05.601883    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:05.601883    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:05.602618    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-apiserver-functional-131400","namespace":"kube-system","uid":"0ab8b5e8-e861-4445-9c35-b00e1361a1e6","resourceVersion":"450","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"kube-apiserver","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/kube-apiserver.advertise-address.endpoint":"192.168.49.2:8441","kubernetes.io/config.hash":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.mirror":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.seen":"2024-03-08T03:10:55.124077722Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.ku
bernetes.io/kube-apiserver.advertise-address.endpoint":{},"f:kubernetes [truncated 8692 chars]
	I0308 03:12:05.603986    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:05.604017    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:05.604017    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:05.604134    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:05.609372    9128 round_trippers.go:574] Response Status: 200 OK in 5 milliseconds
	I0308 03:12:05.609372    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:05.609372    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:05.609372    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:05.609372    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:05.609372    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:05 GMT
	I0308 03:12:05.609372    9128 round_trippers.go:580]     Audit-Id: 66bb0a54-d05f-45ec-977b-234459ee7cc7
	I0308 03:12:05.609372    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:05.609372    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:06.095466    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400
	I0308 03:12:06.095466    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:06.095561    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:06.095561    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:06.101074    9128 round_trippers.go:574] Response Status: 200 OK in 5 milliseconds
	I0308 03:12:06.101074    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:06.101178    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:06.101178    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:06.101178    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:06.101229    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:06.101243    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:06 GMT
	I0308 03:12:06.101243    9128 round_trippers.go:580]     Audit-Id: 02ac1b68-1816-457d-a18e-267fd7ebe69b
	I0308 03:12:06.101409    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-apiserver-functional-131400","namespace":"kube-system","uid":"0ab8b5e8-e861-4445-9c35-b00e1361a1e6","resourceVersion":"450","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"kube-apiserver","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/kube-apiserver.advertise-address.endpoint":"192.168.49.2:8441","kubernetes.io/config.hash":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.mirror":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.seen":"2024-03-08T03:10:55.124077722Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.ku
bernetes.io/kube-apiserver.advertise-address.endpoint":{},"f:kubernetes [truncated 8692 chars]
	I0308 03:12:06.102134    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:06.102134    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:06.102134    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:06.102134    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:06.108770    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:06.108770    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:06.108770    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:06.108770    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:06.108770    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:06.108770    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:06.108770    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:06 GMT
	I0308 03:12:06.108770    9128 round_trippers.go:580]     Audit-Id: e6d22941-0328-4098-9abd-70146f0310b9
	I0308 03:12:06.108770    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:06.596377    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400
	I0308 03:12:06.596460    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:06.596529    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:06.596529    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:06.602390    9128 round_trippers.go:574] Response Status: 200 OK in 5 milliseconds
	I0308 03:12:06.602432    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:06.602432    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:06 GMT
	I0308 03:12:06.602432    9128 round_trippers.go:580]     Audit-Id: 66f62ea3-df63-485f-85b0-bd582d0bd7a8
	I0308 03:12:06.602432    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:06.602432    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:06.602432    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:06.602432    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:06.602432    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-apiserver-functional-131400","namespace":"kube-system","uid":"0ab8b5e8-e861-4445-9c35-b00e1361a1e6","resourceVersion":"450","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"kube-apiserver","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/kube-apiserver.advertise-address.endpoint":"192.168.49.2:8441","kubernetes.io/config.hash":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.mirror":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.seen":"2024-03-08T03:10:55.124077722Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.ku
bernetes.io/kube-apiserver.advertise-address.endpoint":{},"f:kubernetes [truncated 8692 chars]
	I0308 03:12:06.603040    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:06.603040    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:06.603040    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:06.603040    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:06.610010    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:06.610010    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:06.610010    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:06.610010    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:06.610010    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:06 GMT
	I0308 03:12:06.610010    9128 round_trippers.go:580]     Audit-Id: 0e573e72-a932-4cc8-9419-5c0de0e07f9e
	I0308 03:12:06.610010    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:06.610010    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:06.610010    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:07.096178    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400
	I0308 03:12:07.096391    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:07.096391    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:07.096391    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:07.103229    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:07.103344    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:07.103344    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:07.103344    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:07.103344    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:07 GMT
	I0308 03:12:07.103344    9128 round_trippers.go:580]     Audit-Id: 05cec2aa-a6a9-4d2c-a78c-05d969f0b111
	I0308 03:12:07.103344    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:07.103344    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:07.103709    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-apiserver-functional-131400","namespace":"kube-system","uid":"0ab8b5e8-e861-4445-9c35-b00e1361a1e6","resourceVersion":"450","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"kube-apiserver","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/kube-apiserver.advertise-address.endpoint":"192.168.49.2:8441","kubernetes.io/config.hash":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.mirror":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.seen":"2024-03-08T03:10:55.124077722Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.ku
bernetes.io/kube-apiserver.advertise-address.endpoint":{},"f:kubernetes [truncated 8692 chars]
	I0308 03:12:07.104386    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:07.104386    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:07.104386    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:07.104386    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:07.110230    9128 round_trippers.go:574] Response Status: 200 OK in 5 milliseconds
	I0308 03:12:07.110348    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:07.110348    9128 round_trippers.go:580]     Audit-Id: 6d0cc002-68b9-4184-a504-261aa4db7bbc
	I0308 03:12:07.110348    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:07.110348    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:07.110348    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:07.110399    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:07.110399    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:07 GMT
	I0308 03:12:07.110399    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:07.110399    9128 pod_ready.go:102] pod "kube-apiserver-functional-131400" in "kube-system" namespace has status "Ready":"False"
	I0308 03:12:07.594821    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400
	I0308 03:12:07.594821    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:07.594821    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:07.594821    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:07.604795    9128 round_trippers.go:574] Response Status: 200 OK in 9 milliseconds
	I0308 03:12:07.604935    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:07.604935    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:07.604935    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:07 GMT
	I0308 03:12:07.604935    9128 round_trippers.go:580]     Audit-Id: 99a13d0c-788c-4ae4-b671-215b75cfd1b6
	I0308 03:12:07.604935    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:07.604935    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:07.604935    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:07.605050    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-apiserver-functional-131400","namespace":"kube-system","uid":"0ab8b5e8-e861-4445-9c35-b00e1361a1e6","resourceVersion":"450","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"kube-apiserver","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/kube-apiserver.advertise-address.endpoint":"192.168.49.2:8441","kubernetes.io/config.hash":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.mirror":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.seen":"2024-03-08T03:10:55.124077722Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.ku
bernetes.io/kube-apiserver.advertise-address.endpoint":{},"f:kubernetes [truncated 8692 chars]
	I0308 03:12:07.605889    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:07.605969    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:07.605969    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:07.605969    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:07.612561    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:07.612561    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:07.612561    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:07.612561    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:07.612561    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:07.612561    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:07.612561    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:07 GMT
	I0308 03:12:07.612561    9128 round_trippers.go:580]     Audit-Id: 8bd1b6a9-94aa-4ab6-a814-fca519ed15b0
	I0308 03:12:07.612561    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:08.092997    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400
	I0308 03:12:08.093089    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:08.093089    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:08.093089    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:08.099649    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:08.099649    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:08.099649    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:08.099649    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:08.099649    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:08.099649    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:08 GMT
	I0308 03:12:08.099649    9128 round_trippers.go:580]     Audit-Id: 643a99e5-d022-42c8-a8ed-75b1f3460306
	I0308 03:12:08.099649    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:08.099891    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-apiserver-functional-131400","namespace":"kube-system","uid":"0ab8b5e8-e861-4445-9c35-b00e1361a1e6","resourceVersion":"450","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"kube-apiserver","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/kube-apiserver.advertise-address.endpoint":"192.168.49.2:8441","kubernetes.io/config.hash":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.mirror":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.seen":"2024-03-08T03:10:55.124077722Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.ku
bernetes.io/kube-apiserver.advertise-address.endpoint":{},"f:kubernetes [truncated 8692 chars]
	I0308 03:12:08.100601    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:08.100601    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:08.100601    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:08.100601    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:08.106895    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:08.106895    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:08.106895    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:08.106895    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:08.106895    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:08.106895    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:08 GMT
	I0308 03:12:08.106895    9128 round_trippers.go:580]     Audit-Id: 5523bac4-b302-471b-8f7d-5b065dcabc45
	I0308 03:12:08.106895    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:08.106895    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:08.592983    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400
	I0308 03:12:08.592983    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:08.592983    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:08.592983    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:08.604586    9128 round_trippers.go:574] Response Status: 200 OK in 11 milliseconds
	I0308 03:12:08.604627    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:08.604627    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:08.604665    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:08.604665    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:08.604665    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:08 GMT
	I0308 03:12:08.604665    9128 round_trippers.go:580]     Audit-Id: 9e51d239-5374-4dec-ab6f-c3e1a4032fdb
	I0308 03:12:08.604711    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:08.604825    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-apiserver-functional-131400","namespace":"kube-system","uid":"0ab8b5e8-e861-4445-9c35-b00e1361a1e6","resourceVersion":"450","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"kube-apiserver","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/kube-apiserver.advertise-address.endpoint":"192.168.49.2:8441","kubernetes.io/config.hash":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.mirror":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.seen":"2024-03-08T03:10:55.124077722Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.ku
bernetes.io/kube-apiserver.advertise-address.endpoint":{},"f:kubernetes [truncated 8692 chars]
	I0308 03:12:08.605623    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:08.605623    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:08.605623    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:08.605623    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:08.612176    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:08.612176    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:08.612176    9128 round_trippers.go:580]     Audit-Id: b1bec3c5-dc53-4a28-ac99-4f6ca7fb7c67
	I0308 03:12:08.612709    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:08.612709    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:08.612709    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:08.612709    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:08.612709    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:08 GMT
	I0308 03:12:08.612889    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:09.093348    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400
	I0308 03:12:09.093419    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:09.093419    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:09.093419    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:09.101640    9128 round_trippers.go:574] Response Status: 200 OK in 8 milliseconds
	I0308 03:12:09.101640    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:09.101640    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:09.101640    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:09.101640    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:09.101640    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:09 GMT
	I0308 03:12:09.101640    9128 round_trippers.go:580]     Audit-Id: 040d4a22-e10e-4f1b-9afa-c9bffef0f0e0
	I0308 03:12:09.101640    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:09.102316    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-apiserver-functional-131400","namespace":"kube-system","uid":"0ab8b5e8-e861-4445-9c35-b00e1361a1e6","resourceVersion":"527","creationTimestamp":"2024-03-08T03:11:03Z","labels":{"component":"kube-apiserver","tier":"control-plane"},"annotations":{"kubeadm.kubernetes.io/kube-apiserver.advertise-address.endpoint":"192.168.49.2:8441","kubernetes.io/config.hash":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.mirror":"7fc6fe1dbc9d535079868a69804c795e","kubernetes.io/config.seen":"2024-03-08T03:10:55.124077722Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:03Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubeadm.ku
bernetes.io/kube-apiserver.advertise-address.endpoint":{},"f:kubernetes [truncated 8448 chars]
	I0308 03:12:09.102925    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:09.103036    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:09.103036    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:09.103073    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:09.109952    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:09.109952    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:09.109952    9128 round_trippers.go:580]     Audit-Id: 97b49817-d67a-4cd5-8cf3-a1312c349681
	I0308 03:12:09.110472    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:09.110472    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:09.110472    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:09.110518    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:09.110518    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:09 GMT
	I0308 03:12:09.110708    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:09.111136    9128 pod_ready.go:92] pod "kube-apiserver-functional-131400" in "kube-system" namespace has status "Ready":"True"
	I0308 03:12:09.111210    9128 pod_ready.go:81] duration metric: took 6.5245172s for pod "kube-apiserver-functional-131400" in "kube-system" namespace to be "Ready" ...
	I0308 03:12:09.111237    9128 pod_ready.go:78] waiting up to 6m0s for pod "kube-controller-manager-functional-131400" in "kube-system" namespace to be "Ready" ...
	I0308 03:12:09.111337    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-controller-manager-functional-131400
	I0308 03:12:09.111337    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:09.111337    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:09.111337    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:09.117295    9128 round_trippers.go:574] Response Status: 200 OK in 5 milliseconds
	I0308 03:12:09.117295    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:09.117677    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:09.117677    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:09.117677    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:09.117677    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:09 GMT
	I0308 03:12:09.117723    9128 round_trippers.go:580]     Audit-Id: d6ac290f-2bca-4099-981f-95ae7a114819
	I0308 03:12:09.117723    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:09.117723    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-controller-manager-functional-131400","namespace":"kube-system","uid":"2039b018-25cc-4d0b-9924-424c261b7f8e","resourceVersion":"514","creationTimestamp":"2024-03-08T03:11:06Z","labels":{"component":"kube-controller-manager","tier":"control-plane"},"annotations":{"kubernetes.io/config.hash":"2be4fadeb306c0377dc0bfd0b68b2d2d","kubernetes.io/config.mirror":"2be4fadeb306c0377dc0bfd0b68b2d2d","kubernetes.io/config.seen":"2024-03-08T03:11:05.351149846Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:06Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubernetes.io/config.hash":{},"f:kubernetes.io/config.mirror":{},"f:kubernetes
.io/config.seen":{},"f:kubernetes.io/config.source":{}},"f:labels":{"." [truncated 8021 chars]
	I0308 03:12:09.118383    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:09.118383    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:09.118383    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:09.118383    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:09.122141    9128 round_trippers.go:574] Response Status: 200 OK in 3 milliseconds
	I0308 03:12:09.123031    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:09.123031    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:09.123031    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:09.123031    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:09.123031    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:09.123031    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:09 GMT
	I0308 03:12:09.123031    9128 round_trippers.go:580]     Audit-Id: eba6c0cc-53d1-4821-a071-9f524842f818
	I0308 03:12:09.123031    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:09.123031    9128 pod_ready.go:92] pod "kube-controller-manager-functional-131400" in "kube-system" namespace has status "Ready":"True"
	I0308 03:12:09.123031    9128 pod_ready.go:81] duration metric: took 11.7935ms for pod "kube-controller-manager-functional-131400" in "kube-system" namespace to be "Ready" ...
	I0308 03:12:09.123031    9128 pod_ready.go:78] waiting up to 6m0s for pod "kube-proxy-j7d7j" in "kube-system" namespace to be "Ready" ...
	I0308 03:12:09.123642    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-proxy-j7d7j
	I0308 03:12:09.123686    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:09.123686    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:09.123715    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:09.127644    9128 round_trippers.go:574] Response Status: 200 OK in 3 milliseconds
	I0308 03:12:09.127644    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:09.128371    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:09 GMT
	I0308 03:12:09.128371    9128 round_trippers.go:580]     Audit-Id: d33a58a7-dba0-49bf-b9a0-5e908de649ea
	I0308 03:12:09.128371    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:09.128371    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:09.128371    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:09.128371    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:09.128371    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-proxy-j7d7j","generateName":"kube-proxy-","namespace":"kube-system","uid":"63288fa1-00ea-4f6b-bd9d-422237ed4213","resourceVersion":"456","creationTimestamp":"2024-03-08T03:11:17Z","labels":{"controller-revision-hash":"8486c7d9cd","k8s-app":"kube-proxy","pod-template-generation":"1"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"DaemonSet","name":"kube-proxy","uid":"9ded7d00-c71a-4393-8b2f-3d5403cec9fc","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:17Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:controller-revision-hash":{},"f:k8s-app":{},"f:pod-template-generation":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"9ded7d00-c71a-4393-8b2f-3d5403cec9fc\"}":{}}},"f:spec":{"f:affinity":{".":{},"f:nodeAffinity":{".":{},"f:r
equiredDuringSchedulingIgnoredDuringExecution":{}}},"f:containers":{"k: [truncated 5736 chars]
	I0308 03:12:09.129111    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:09.129111    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:09.129157    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:09.129157    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:09.134040    9128 round_trippers.go:574] Response Status: 200 OK in 4 milliseconds
	I0308 03:12:09.134680    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:09.134680    9128 round_trippers.go:580]     Audit-Id: 06daa41a-5974-4c56-96a0-931fa7ad466d
	I0308 03:12:09.134680    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:09.134680    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:09.134680    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:09.134680    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:09.134680    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:09 GMT
	I0308 03:12:09.134680    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:09.134680    9128 pod_ready.go:92] pod "kube-proxy-j7d7j" in "kube-system" namespace has status "Ready":"True"
	I0308 03:12:09.134680    9128 pod_ready.go:81] duration metric: took 11.6487ms for pod "kube-proxy-j7d7j" in "kube-system" namespace to be "Ready" ...
	I0308 03:12:09.134680    9128 pod_ready.go:78] waiting up to 6m0s for pod "kube-scheduler-functional-131400" in "kube-system" namespace to be "Ready" ...
	I0308 03:12:09.134680    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods/kube-scheduler-functional-131400
	I0308 03:12:09.134680    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:09.134680    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:09.134680    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:09.139724    9128 round_trippers.go:574] Response Status: 200 OK in 5 milliseconds
	I0308 03:12:09.139724    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:09.139724    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:09.139724    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:09 GMT
	I0308 03:12:09.139724    9128 round_trippers.go:580]     Audit-Id: daacfb19-fad4-401f-96af-974da77ab879
	I0308 03:12:09.139724    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:09.139724    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:09.139724    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:09.139724    9128 request.go:1212] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"kube-scheduler-functional-131400","namespace":"kube-system","uid":"ade7305e-f671-43b4-b4bc-ae619b24ffad","resourceVersion":"515","creationTimestamp":"2024-03-08T03:11:06Z","labels":{"component":"kube-scheduler","tier":"control-plane"},"annotations":{"kubernetes.io/config.hash":"e727987e59f3981370e6460b4cc3d8f3","kubernetes.io/config.mirror":"e727987e59f3981370e6460b4cc3d8f3","kubernetes.io/config.seen":"2024-03-08T03:11:05.351150947Z","kubernetes.io/config.source":"file"},"ownerReferences":[{"apiVersion":"v1","kind":"Node","name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","controller":true}],"managedFields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:06Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubernetes.io/config.hash":{},"f:kubernetes.io/config.mirror":{},"f:kubernetes.io/config.seen":{
},"f:kubernetes.io/config.source":{}},"f:labels":{".":{},"f:component": [truncated 4903 chars]
	I0308 03:12:09.140468    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes/functional-131400
	I0308 03:12:09.140557    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:09.140557    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:09.140557    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:09.146726    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:09.146726    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:09.146726    9128 round_trippers.go:580]     Audit-Id: b1e0bb6e-69d5-499c-bbd8-37990f37dac7
	I0308 03:12:09.146726    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:09.146726    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:09.146726    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:09.146726    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:09.146726    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:09 GMT
	I0308 03:12:09.147686    9128 request.go:1212] Response Body: {"kind":"Node","apiVersion":"v1","metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kubelet","operation":"Update","
apiVersion":"v1","time":"2024-03-08T03:11:00Z","fieldsType":"FieldsV1", [truncated 4852 chars]
	I0308 03:12:09.147686    9128 pod_ready.go:92] pod "kube-scheduler-functional-131400" in "kube-system" namespace has status "Ready":"True"
	I0308 03:12:09.147686    9128 pod_ready.go:81] duration metric: took 13.0052ms for pod "kube-scheduler-functional-131400" in "kube-system" namespace to be "Ready" ...
	I0308 03:12:09.148426    9128 pod_ready.go:38] duration metric: took 13.3125486s for extra waiting for all system-critical and pods with labels [k8s-app=kube-dns component=etcd component=kube-apiserver component=kube-controller-manager k8s-app=kube-proxy component=kube-scheduler] to be "Ready" ...
	I0308 03:12:09.148426    9128 api_server.go:52] waiting for apiserver process to appear ...
	I0308 03:12:09.161518    9128 ssh_runner.go:195] Run: sudo pgrep -xnf kube-apiserver.*minikube.*
	I0308 03:12:09.188045    9128 command_runner.go:130] > 6091
	I0308 03:12:09.188045    9128 api_server.go:72] duration metric: took 21.0147245s to wait for apiserver process to appear ...
	I0308 03:12:09.188141    9128 api_server.go:88] waiting for apiserver healthz status ...
	I0308 03:12:09.188141    9128 api_server.go:253] Checking apiserver healthz at https://127.0.0.1:63411/healthz ...
	I0308 03:12:09.201366    9128 api_server.go:279] https://127.0.0.1:63411/healthz returned 200:
	ok
	I0308 03:12:09.201825    9128 round_trippers.go:463] GET https://127.0.0.1:63411/version
	I0308 03:12:09.201825    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:09.201869    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:09.201869    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:09.205338    9128 round_trippers.go:574] Response Status: 200 OK in 3 milliseconds
	I0308 03:12:09.205413    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:09.205413    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:09.205413    9128 round_trippers.go:580]     Content-Length: 264
	I0308 03:12:09.205413    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:09 GMT
	I0308 03:12:09.205413    9128 round_trippers.go:580]     Audit-Id: bf5ff406-d201-460c-b39d-32f8e7cd33e1
	I0308 03:12:09.205413    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:09.205413    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:09.205493    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:09.205493    9128 request.go:1212] Response Body: {
	  "major": "1",
	  "minor": "28",
	  "gitVersion": "v1.28.4",
	  "gitCommit": "bae2c62678db2b5053817bc97181fcc2e8388103",
	  "gitTreeState": "clean",
	  "buildDate": "2023-11-15T16:48:54Z",
	  "goVersion": "go1.20.11",
	  "compiler": "gc",
	  "platform": "linux/amd64"
	}
	I0308 03:12:09.205644    9128 api_server.go:141] control plane version: v1.28.4
	I0308 03:12:09.205676    9128 api_server.go:131] duration metric: took 17.5351ms to wait for apiserver health ...
	I0308 03:12:09.205744    9128 system_pods.go:43] waiting for kube-system pods to appear ...
	I0308 03:12:09.205744    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods
	I0308 03:12:09.205744    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:09.205744    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:09.205744    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:09.214105    9128 round_trippers.go:574] Response Status: 200 OK in 8 milliseconds
	I0308 03:12:09.214105    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:09.214105    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:09.214105    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:09 GMT
	I0308 03:12:09.214105    9128 round_trippers.go:580]     Audit-Id: d07b6765-4b60-48aa-8fd6-46411cca6e50
	I0308 03:12:09.214105    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:09.214105    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:09.214105    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:09.216955    9128 request.go:1212] Response Body: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"527"},"items":[{"metadata":{"name":"coredns-5dd5756b68-pmvrj","generateName":"coredns-5dd5756b68-","namespace":"kube-system","uid":"6d6a4296-e51e-4cba-a4d7-00958ff0ecce","resourceVersion":"484","creationTimestamp":"2024-03-08T03:11:17Z","labels":{"k8s-app":"kube-dns","pod-template-hash":"5dd5756b68"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"ReplicaSet","name":"coredns-5dd5756b68","uid":"7d873a3f-df63-48c5-91fe-6b2b3b180cdb","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:17Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:k8s-app":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"7d873a3f-df63-48c5-91fe-6b2b3b180cdb\"}":{}}},"f:spec":{"f:affinity":{".":{},"f:podAntiAffinity":{".":{},"f
:preferredDuringSchedulingIgnoredDuringExecution":{}}},"f:containers":{ [truncated 49691 chars]
	I0308 03:12:09.223593    9128 system_pods.go:59] 7 kube-system pods found
	I0308 03:12:09.224154    9128 system_pods.go:61] "coredns-5dd5756b68-pmvrj" [6d6a4296-e51e-4cba-a4d7-00958ff0ecce] Running
	I0308 03:12:09.224203    9128 system_pods.go:61] "etcd-functional-131400" [c386d31e-08af-45e2-a349-f4975669c638] Running
	I0308 03:12:09.224203    9128 system_pods.go:61] "kube-apiserver-functional-131400" [0ab8b5e8-e861-4445-9c35-b00e1361a1e6] Running
	I0308 03:12:09.224957    9128 system_pods.go:61] "kube-controller-manager-functional-131400" [2039b018-25cc-4d0b-9924-424c261b7f8e] Running
	I0308 03:12:09.224957    9128 system_pods.go:61] "kube-proxy-j7d7j" [63288fa1-00ea-4f6b-bd9d-422237ed4213] Running
	I0308 03:12:09.224957    9128 system_pods.go:61] "kube-scheduler-functional-131400" [ade7305e-f671-43b4-b4bc-ae619b24ffad] Running
	I0308 03:12:09.224957    9128 system_pods.go:61] "storage-provisioner" [e34e2810-29e2-49ae-9cc6-6ac7a02461c4] Running
	I0308 03:12:09.224957    9128 system_pods.go:74] duration metric: took 19.2122ms to wait for pod list to return data ...
	I0308 03:12:09.225113    9128 default_sa.go:34] waiting for default service account to be created ...
	I0308 03:12:09.225401    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/default/serviceaccounts
	I0308 03:12:09.225476    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:09.225476    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:09.225476    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:09.231754    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:09.232197    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:09.232197    9128 round_trippers.go:580]     Audit-Id: 1e598463-b5b4-4300-86eb-1d04bc41d39e
	I0308 03:12:09.232197    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:09.232197    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:09.232197    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:09.232197    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:09.232197    9128 round_trippers.go:580]     Content-Length: 261
	I0308 03:12:09.232197    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:09 GMT
	I0308 03:12:09.232197    9128 request.go:1212] Response Body: {"kind":"ServiceAccountList","apiVersion":"v1","metadata":{"resourceVersion":"527"},"items":[{"metadata":{"name":"default","namespace":"default","uid":"a04153a3-93b8-455a-a8d5-fdf7c1a6f483","resourceVersion":"334","creationTimestamp":"2024-03-08T03:11:17Z"}}]}
	I0308 03:12:09.232197    9128 default_sa.go:45] found service account: "default"
	I0308 03:12:09.232197    9128 default_sa.go:55] duration metric: took 7.0835ms for default service account to be created ...
	I0308 03:12:09.232197    9128 system_pods.go:116] waiting for k8s-apps to be running ...
	I0308 03:12:09.295781    9128 request.go:629] Waited for 63.5814ms due to client-side throttling, not priority and fairness, request: GET:https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods
	I0308 03:12:09.295781    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/namespaces/kube-system/pods
	I0308 03:12:09.295781    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:09.295781    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:09.295781    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:09.303640    9128 round_trippers.go:574] Response Status: 200 OK in 7 milliseconds
	I0308 03:12:09.303697    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:09.303716    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:09.303716    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:09.303716    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:09.303716    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:09.303716    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:09 GMT
	I0308 03:12:09.303716    9128 round_trippers.go:580]     Audit-Id: 9e033df9-fcb2-4a37-a55a-6dd9f118903c
	I0308 03:12:09.303901    9128 request.go:1212] Response Body: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"527"},"items":[{"metadata":{"name":"coredns-5dd5756b68-pmvrj","generateName":"coredns-5dd5756b68-","namespace":"kube-system","uid":"6d6a4296-e51e-4cba-a4d7-00958ff0ecce","resourceVersion":"484","creationTimestamp":"2024-03-08T03:11:17Z","labels":{"k8s-app":"kube-dns","pod-template-hash":"5dd5756b68"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"ReplicaSet","name":"coredns-5dd5756b68","uid":"7d873a3f-df63-48c5-91fe-6b2b3b180cdb","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2024-03-08T03:11:17Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:k8s-app":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"7d873a3f-df63-48c5-91fe-6b2b3b180cdb\"}":{}}},"f:spec":{"f:affinity":{".":{},"f:podAntiAffinity":{".":{},"f
:preferredDuringSchedulingIgnoredDuringExecution":{}}},"f:containers":{ [truncated 49691 chars]
	I0308 03:12:09.306286    9128 system_pods.go:86] 7 kube-system pods found
	I0308 03:12:09.306286    9128 system_pods.go:89] "coredns-5dd5756b68-pmvrj" [6d6a4296-e51e-4cba-a4d7-00958ff0ecce] Running
	I0308 03:12:09.306286    9128 system_pods.go:89] "etcd-functional-131400" [c386d31e-08af-45e2-a349-f4975669c638] Running
	I0308 03:12:09.306286    9128 system_pods.go:89] "kube-apiserver-functional-131400" [0ab8b5e8-e861-4445-9c35-b00e1361a1e6] Running
	I0308 03:12:09.306286    9128 system_pods.go:89] "kube-controller-manager-functional-131400" [2039b018-25cc-4d0b-9924-424c261b7f8e] Running
	I0308 03:12:09.306286    9128 system_pods.go:89] "kube-proxy-j7d7j" [63288fa1-00ea-4f6b-bd9d-422237ed4213] Running
	I0308 03:12:09.306286    9128 system_pods.go:89] "kube-scheduler-functional-131400" [ade7305e-f671-43b4-b4bc-ae619b24ffad] Running
	I0308 03:12:09.306286    9128 system_pods.go:89] "storage-provisioner" [e34e2810-29e2-49ae-9cc6-6ac7a02461c4] Running
	I0308 03:12:09.306286    9128 system_pods.go:126] duration metric: took 74.0854ms to wait for k8s-apps to be running ...
	I0308 03:12:09.306286    9128 system_svc.go:44] waiting for kubelet service to be running ....
	I0308 03:12:09.319373    9128 ssh_runner.go:195] Run: sudo systemctl is-active --quiet service kubelet
	I0308 03:12:09.344968    9128 system_svc.go:56] duration metric: took 38.6798ms WaitForService to wait for kubelet
	I0308 03:12:09.344968    9128 kubeadm.go:576] duration metric: took 21.1716399s to wait for: map[apiserver:true apps_running:true default_sa:true extra:true kubelet:true node_ready:true system_pods:true]
	I0308 03:12:09.344968    9128 node_conditions.go:102] verifying NodePressure condition ...
	I0308 03:12:09.497004    9128 request.go:629] Waited for 151.8664ms due to client-side throttling, not priority and fairness, request: GET:https://127.0.0.1:63411/api/v1/nodes
	I0308 03:12:09.497077    9128 round_trippers.go:463] GET https://127.0.0.1:63411/api/v1/nodes
	I0308 03:12:09.497077    9128 round_trippers.go:469] Request Headers:
	I0308 03:12:09.497077    9128 round_trippers.go:473]     Accept: application/json, */*
	I0308 03:12:09.497077    9128 round_trippers.go:473]     User-Agent: minikube-windows-amd64.exe/v0.0.0 (windows/amd64) kubernetes/$Format
	I0308 03:12:09.503919    9128 round_trippers.go:574] Response Status: 200 OK in 6 milliseconds
	I0308 03:12:09.503919    9128 round_trippers.go:577] Response Headers:
	I0308 03:12:09.503919    9128 round_trippers.go:580]     Audit-Id: d17a51cf-6fbe-46a3-b1f5-c63517a1965f
	I0308 03:12:09.503919    9128 round_trippers.go:580]     Cache-Control: no-cache, private
	I0308 03:12:09.503919    9128 round_trippers.go:580]     Content-Type: application/json
	I0308 03:12:09.503919    9128 round_trippers.go:580]     X-Kubernetes-Pf-Flowschema-Uid: e8b023ad-a14f-4879-8a67-a7d1b29d1e4e
	I0308 03:12:09.503919    9128 round_trippers.go:580]     X-Kubernetes-Pf-Prioritylevel-Uid: 239b0577-0cae-4676-9058-f176cfe72c28
	I0308 03:12:09.503919    9128 round_trippers.go:580]     Date: Fri, 08 Mar 2024 03:12:09 GMT
	I0308 03:12:09.503919    9128 request.go:1212] Response Body: {"kind":"NodeList","apiVersion":"v1","metadata":{"resourceVersion":"527"},"items":[{"metadata":{"name":"functional-131400","uid":"f025858c-b671-4cb1-bf94-7230fe997d99","resourceVersion":"433","creationTimestamp":"2024-03-08T03:11:01Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/os":"linux","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"functional-131400","kubernetes.io/os":"linux","minikube.k8s.io/commit":"455e433ba7e8d9ab4b9063e4f53a142b55799a5b","minikube.k8s.io/name":"functional-131400","minikube.k8s.io/primary":"true","minikube.k8s.io/updated_at":"2024_03_08T03_11_05_0700","minikube.k8s.io/version":"v1.32.0","node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///var/run/cri-dockerd.sock","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedF
ields":[{"manager":"kubelet","operation":"Update","apiVersion":"v1","ti [truncated 4905 chars]
	I0308 03:12:09.504537    9128 node_conditions.go:122] node storage ephemeral capacity is 263112772Ki
	I0308 03:12:09.504537    9128 node_conditions.go:123] node cpu capacity is 16
	I0308 03:12:09.504537    9128 node_conditions.go:105] duration metric: took 159.5624ms to run NodePressure ...
	I0308 03:12:09.504537    9128 start.go:240] waiting for startup goroutines ...
	I0308 03:12:09.504537    9128 start.go:245] waiting for cluster config update ...
	I0308 03:12:09.504537    9128 start.go:254] writing updated cluster config ...
	I0308 03:12:09.520452    9128 ssh_runner.go:195] Run: rm -f paused
	I0308 03:12:09.660761    9128 start.go:600] kubectl: 1.29.2, cluster: 1.28.4 (minor skew: 1)
	I0308 03:12:09.665323    9128 out.go:177] * Done! kubectl is now configured to use "functional-131400" cluster and "default" namespace by default
	
	
	==> Docker <==
	Mar 08 03:11:44 functional-131400 systemd[1]: Started Docker Application Container Engine.
	Mar 08 03:11:44 functional-131400 cri-dockerd[1467]: time="2024-03-08T03:11:44Z" level=info msg="Failed to read pod IP from plugin/docker: networkPlugin cni failed on the status hook for pod \"coredns-5dd5756b68-pmvrj_kube-system\": CNI failed to retrieve network namespace path: cannot find network namespace for the terminated container \"ddfd4cd9f957d8854eff8b19c6be6f0405a74b015641f627d65263da01a7c51e\""
	Mar 08 03:11:44 functional-131400 systemd[1]: Stopping CRI Interface for Docker Application Container Engine...
	Mar 08 03:11:44 functional-131400 systemd[1]: cri-docker.service: Deactivated successfully.
	Mar 08 03:11:44 functional-131400 systemd[1]: Stopped CRI Interface for Docker Application Container Engine.
	Mar 08 03:11:45 functional-131400 systemd[1]: Starting CRI Interface for Docker Application Container Engine...
	Mar 08 03:11:45 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:45Z" level=info msg="Connecting to docker on the Endpoint unix:///var/run/docker.sock"
	Mar 08 03:11:45 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:45Z" level=info msg="Start docker client with request timeout 0s"
	Mar 08 03:11:45 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:45Z" level=info msg="Hairpin mode is set to hairpin-veth"
	Mar 08 03:11:45 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:45Z" level=info msg="Loaded network plugin cni"
	Mar 08 03:11:45 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:45Z" level=info msg="Docker cri networking managed by network plugin cni"
	Mar 08 03:11:45 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:45Z" level=info msg="Docker Info: &{ID:86e0d14a-e0ac-4fbe-a0ae-1535c88677dd Containers:15 ContainersRunning:0 ContainersPaused:0 ContainersStopped:15 Images:8 Driver:overlay2 DriverStatus:[[Backing Filesystem extfs] [Supports d_type true] [Using metacopy false] [Native Overlay Diff true] [userxattr false]] SystemStatus:[] Plugins:{Volume:[local] Network:[bridge host ipvlan macvlan null overlay] Authorization:[] Log:[awslogs fluentd gcplogs gelf journald json-file local splunk syslog]} MemoryLimit:true SwapLimit:true KernelMemory:false KernelMemoryTCP:true CPUCfsPeriod:true CPUCfsQuota:true CPUShares:true CPUSet:true PidsLimit:true IPv4Forwarding:true BridgeNfIptables:true BridgeNfIP6tables:true Debug:false NFd:25 OomKillDisable:true NGoroutines:45 SystemTime:2024-03-08T03:11:45.330236244Z LoggingDriver:json-file CgroupDriver:cgroupfs CgroupVersion:1 NEventsListener:0 KernelVersion:5.15.133.1-microsoft-standard-WSL2 OperatingS
ystem:Ubuntu 22.04.3 LTS (containerized) OSVersion:22.04 OSType:linux Architecture:x86_64 IndexServerAddress:https://index.docker.io/v1/ RegistryConfig:0xc00014e0e0 NCPU:16 MemTotal:33657516032 GenericResources:[] DockerRootDir:/var/lib/docker HTTPProxy: HTTPSProxy: NoProxy:control-plane.minikube.internal Name:functional-131400 Labels:[provider=docker] ExperimentalBuild:false ServerVersion:25.0.3 ClusterStore: ClusterAdvertise: Runtimes:map[io.containerd.runc.v2:{Path:runc Args:[] Shim:<nil>} runc:{Path:runc Args:[] Shim:<nil>}] DefaultRuntime:runc Swarm:{NodeID: NodeAddr: LocalNodeState:inactive ControlAvailable:false Error: RemoteManagers:[] Nodes:0 Managers:0 Cluster:<nil> Warnings:[]} LiveRestoreEnabled:false Isolation: InitBinary:docker-init ContainerdCommit:{ID:ae07eda36dd25f8a1b98dfbf587313b99c0190bb Expected:ae07eda36dd25f8a1b98dfbf587313b99c0190bb} RuncCommit:{ID:v1.1.12-0-g51d5e94 Expected:v1.1.12-0-g51d5e94} InitCommit:{ID:de40ad0 Expected:de40ad0} SecurityOptions:[name=seccomp,profile=builtin] Pro
ductLicense: DefaultAddressPools:[] Warnings:[WARNING: No blkio throttle.read_bps_device support WARNING: No blkio throttle.write_bps_device support WARNING: No blkio throttle.read_iops_device support WARNING: No blkio throttle.write_iops_device support]}"
	Mar 08 03:11:45 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:45Z" level=info msg="Setting cgroupDriver cgroupfs"
	Mar 08 03:11:45 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:45Z" level=info msg="Docker cri received runtime config &RuntimeConfig{NetworkConfig:&NetworkConfig{PodCidr:,},}"
	Mar 08 03:11:45 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:45Z" level=info msg="Starting the GRPC backend for the Docker CRI interface."
	Mar 08 03:11:45 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:45Z" level=info msg="Start cri-dockerd grpc backend"
	Mar 08 03:11:45 functional-131400 systemd[1]: Started CRI Interface for Docker Application Container Engine.
	Mar 08 03:11:48 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:48Z" level=info msg="Will attempt to re-write config file /var/lib/docker/containers/b89d50bb8f701c2ed74e95ac669755e43d71c1c68a1e7f0d1f4ea65de825738c/resolv.conf as [nameserver 192.168.65.254 options ndots:0]"
	Mar 08 03:11:49 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:49Z" level=info msg="Will attempt to re-write config file /var/lib/docker/containers/d2cb6058cfba502536c9cb02c1ff489042a1a9498a0e90efc730209af304b797/resolv.conf as [nameserver 192.168.65.254 options ndots:0]"
	Mar 08 03:11:49 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:49Z" level=info msg="Will attempt to re-write config file /var/lib/docker/containers/247b26db9bad8d2e723e7e87b89efa10381b2b4d1a2a462b9dbf016aed501ce4/resolv.conf as [nameserver 192.168.65.254 options ndots:0]"
	Mar 08 03:11:49 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:49Z" level=info msg="Will attempt to re-write config file /var/lib/docker/containers/9720d1c35ec08f11ca2e6d073d9203c60337d03c2d605cb3a1628b2c67e7ef47/resolv.conf as [nameserver 192.168.65.254 options ndots:0]"
	Mar 08 03:11:49 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:49Z" level=info msg="Will attempt to re-write config file /var/lib/docker/containers/2f9be4fd82afb890e3a56fb9e088469ed8b89954c84ae525c04916754fb71c8f/resolv.conf as [nameserver 192.168.65.254 options ndots:0]"
	Mar 08 03:11:49 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:49Z" level=info msg="Will attempt to re-write config file /var/lib/docker/containers/78103ec6884a5c9431196163b2f7d4b374121c1f1be86729afe0e409eb46777c/resolv.conf as [nameserver 192.168.65.254 options ndots:0]"
	Mar 08 03:11:50 functional-131400 cri-dockerd[5278]: time="2024-03-08T03:11:50Z" level=info msg="Will attempt to re-write config file /var/lib/docker/containers/daa8526fefec654ef8738f50c5fe8dd682023c2c9e35026b1643b9225d31fa4b/resolv.conf as [nameserver 192.168.65.254 options ndots:0]"
	Mar 08 03:11:51 functional-131400 dockerd[5039]: time="2024-03-08T03:11:51.344172318Z" level=info msg="ignoring event" container=e32ada5cc9fbcce30dd48d60f9c19038195449c3cbdf84e41f47d7f66fcc3c6b module=libcontainerd namespace=moby topic=/tasks/delete type="*events.TaskDelete"
	
	
	==> container status <==
	CONTAINER           IMAGE               CREATED              STATE               NAME                      ATTEMPT             POD ID              POD
	035022b3628e7       6e38f40d628db       25 seconds ago       Running             storage-provisioner       2                   247b26db9bad8       storage-provisioner
	e452795daf5b9       ead0a4a53df89       41 seconds ago       Running             coredns                   1                   daa8526fefec6       coredns-5dd5756b68-pmvrj
	dafb02e8a8cac       d058aa5ab969c       41 seconds ago       Running             kube-controller-manager   1                   78103ec6884a5       kube-controller-manager-functional-131400
	88734d7e852a4       83f6cc407eed8       42 seconds ago       Running             kube-proxy                1                   2f9be4fd82afb       kube-proxy-j7d7j
	4b46196ba3c03       73deb9a3f7025       42 seconds ago       Running             etcd                      1                   9720d1c35ec08       etcd-functional-131400
	e32ada5cc9fbc       6e38f40d628db       42 seconds ago       Exited              storage-provisioner       1                   247b26db9bad8       storage-provisioner
	ff3f36af14a64       7fe0e6f37db33       42 seconds ago       Running             kube-apiserver            1                   d2cb6058cfba5       kube-apiserver-functional-131400
	11c16d29fb358       e3db313c6dbc0       43 seconds ago       Running             kube-scheduler            1                   b89d50bb8f701       kube-scheduler-functional-131400
	6cc27a177759a       ead0a4a53df89       About a minute ago   Exited              coredns                   0                   ddfd4cd9f957d       coredns-5dd5756b68-pmvrj
	8c6df4d230211       83f6cc407eed8       About a minute ago   Exited              kube-proxy                0                   87752218014a9       kube-proxy-j7d7j
	7d176a2ff745a       e3db313c6dbc0       About a minute ago   Exited              kube-scheduler            0                   56893a8be2672       kube-scheduler-functional-131400
	2452f8d6925b2       d058aa5ab969c       About a minute ago   Exited              kube-controller-manager   0                   4eb61baab73b5       kube-controller-manager-functional-131400
	dcfc0c71f5571       73deb9a3f7025       About a minute ago   Exited              etcd                      0                   02e23b99cf77e       etcd-functional-131400
	47593bd707581       7fe0e6f37db33       About a minute ago   Exited              kube-apiserver            0                   1559062b31fcd       kube-apiserver-functional-131400
	
	
	==> coredns [6cc27a177759] <==
	.:53
	[INFO] plugin/reload: Running configuration SHA512 = 591cf328cccc12bc490481273e738df59329c62c0b729d94e8b61db9961c2fa5f046dd37f1cf888b953814040d180f52594972691cd6ff41be96639138a43908
	CoreDNS-1.10.1
	linux/amd64, go1.20, 055b2c3
	[INFO] SIGTERM: Shutting down servers then terminating
	[INFO] plugin/health: Going into lameduck mode for 5s
	
	
	==> coredns [e452795daf5b] <==
	[INFO] plugin/kubernetes: waiting for Kubernetes API before starting server
	[INFO] plugin/kubernetes: waiting for Kubernetes API before starting server
	[INFO] plugin/ready: Still waiting on: "kubernetes"
	[INFO] plugin/kubernetes: waiting for Kubernetes API before starting server
	[INFO] plugin/kubernetes: waiting for Kubernetes API before starting server
	[INFO] plugin/kubernetes: waiting for Kubernetes API before starting server
	[INFO] plugin/ready: Still waiting on: "kubernetes"
	[INFO] plugin/kubernetes: waiting for Kubernetes API before starting server
	[INFO] plugin/kubernetes: waiting for Kubernetes API before starting server
	[INFO] plugin/ready: Still waiting on: "kubernetes"
	.:53
	[INFO] plugin/reload: Running configuration SHA512 = f869070685748660180df1b7a47d58cdafcf2f368266578c062d1151dc2c900964aecc5975e8882e6de6fdfb6460463e30ebfaad2ec8f0c3c6436f80225b3b5b
	CoreDNS-1.10.1
	linux/amd64, go1.20, 055b2c3
	[INFO] 127.0.0.1:58877 - 65063 "HINFO IN 326965818888421843.4799029994544932049. udp 56 false 512" NXDOMAIN qr,rd,ra 56 0.098993541s
	
	
	==> describe nodes <==
	Name:               functional-131400
	Roles:              control-plane
	Labels:             beta.kubernetes.io/arch=amd64
	                    beta.kubernetes.io/os=linux
	                    kubernetes.io/arch=amd64
	                    kubernetes.io/hostname=functional-131400
	                    kubernetes.io/os=linux
	                    minikube.k8s.io/commit=455e433ba7e8d9ab4b9063e4f53a142b55799a5b
	                    minikube.k8s.io/name=functional-131400
	                    minikube.k8s.io/primary=true
	                    minikube.k8s.io/updated_at=2024_03_08T03_11_05_0700
	                    minikube.k8s.io/version=v1.32.0
	                    node-role.kubernetes.io/control-plane=
	                    node.kubernetes.io/exclude-from-external-load-balancers=
	Annotations:        kubeadm.alpha.kubernetes.io/cri-socket: unix:///var/run/cri-dockerd.sock
	                    node.alpha.kubernetes.io/ttl: 0
	                    volumes.kubernetes.io/controller-managed-attach-detach: true
	CreationTimestamp:  Fri, 08 Mar 2024 03:11:01 +0000
	Taints:             <none>
	Unschedulable:      false
	Lease:
	  HolderIdentity:  functional-131400
	  AcquireTime:     <unset>
	  RenewTime:       Fri, 08 Mar 2024 03:12:26 +0000
	Conditions:
	  Type             Status  LastHeartbeatTime                 LastTransitionTime                Reason                       Message
	  ----             ------  -----------------                 ------------------                ------                       -------
	  MemoryPressure   False   Fri, 08 Mar 2024 03:11:26 +0000   Fri, 08 Mar 2024 03:10:58 +0000   KubeletHasSufficientMemory   kubelet has sufficient memory available
	  DiskPressure     False   Fri, 08 Mar 2024 03:11:26 +0000   Fri, 08 Mar 2024 03:10:58 +0000   KubeletHasNoDiskPressure     kubelet has no disk pressure
	  PIDPressure      False   Fri, 08 Mar 2024 03:11:26 +0000   Fri, 08 Mar 2024 03:10:58 +0000   KubeletHasSufficientPID      kubelet has sufficient PID available
	  Ready            True    Fri, 08 Mar 2024 03:11:26 +0000   Fri, 08 Mar 2024 03:11:16 +0000   KubeletReady                 kubelet is posting ready status
	Addresses:
	  InternalIP:  192.168.49.2
	  Hostname:    functional-131400
	Capacity:
	  cpu:                16
	  ephemeral-storage:  263112772Ki
	  hugepages-1Gi:      0
	  hugepages-2Mi:      0
	  memory:             32868668Ki
	  pods:               110
	Allocatable:
	  cpu:                16
	  ephemeral-storage:  263112772Ki
	  hugepages-1Gi:      0
	  hugepages-2Mi:      0
	  memory:             32868668Ki
	  pods:               110
	System Info:
	  Machine ID:                 aae92214ea294fcb809165572ca77cf7
	  System UUID:                aae92214ea294fcb809165572ca77cf7
	  Boot ID:                    03b98fb6-cd2e-4d7d-904b-e547f295249f
	  Kernel Version:             5.15.133.1-microsoft-standard-WSL2
	  OS Image:                   Ubuntu 22.04.3 LTS
	  Operating System:           linux
	  Architecture:               amd64
	  Container Runtime Version:  docker://25.0.3
	  Kubelet Version:            v1.28.4
	  Kube-Proxy Version:         v1.28.4
	PodCIDR:                      10.244.0.0/24
	PodCIDRs:                     10.244.0.0/24
	Non-terminated Pods:          (7 in total)
	  Namespace                   Name                                         CPU Requests  CPU Limits  Memory Requests  Memory Limits  Age
	  ---------                   ----                                         ------------  ----------  ---------------  -------------  ---
	  kube-system                 coredns-5dd5756b68-pmvrj                     100m (0%!)(MISSING)     0 (0%!)(MISSING)      70Mi (0%!)(MISSING)        170Mi (0%!)(MISSING)     75s
	  kube-system                 etcd-functional-131400                       100m (0%!)(MISSING)     0 (0%!)(MISSING)      100Mi (0%!)(MISSING)       0 (0%!)(MISSING)         89s
	  kube-system                 kube-apiserver-functional-131400             250m (1%!)(MISSING)     0 (0%!)(MISSING)      0 (0%!)(MISSING)           0 (0%!)(MISSING)         89s
	  kube-system                 kube-controller-manager-functional-131400    200m (1%!)(MISSING)     0 (0%!)(MISSING)      0 (0%!)(MISSING)           0 (0%!)(MISSING)         86s
	  kube-system                 kube-proxy-j7d7j                             0 (0%!)(MISSING)        0 (0%!)(MISSING)      0 (0%!)(MISSING)           0 (0%!)(MISSING)         75s
	  kube-system                 kube-scheduler-functional-131400             100m (0%!)(MISSING)     0 (0%!)(MISSING)      0 (0%!)(MISSING)           0 (0%!)(MISSING)         86s
	  kube-system                 storage-provisioner                          0 (0%!)(MISSING)        0 (0%!)(MISSING)      0 (0%!)(MISSING)           0 (0%!)(MISSING)         71s
	Allocated resources:
	  (Total limits may be over 100 percent, i.e., overcommitted.)
	  Resource           Requests    Limits
	  --------           --------    ------
	  cpu                750m (4%!)(MISSING)   0 (0%!)(MISSING)
	  memory             170Mi (0%!)(MISSING)  170Mi (0%!)(MISSING)
	  ephemeral-storage  0 (0%!)(MISSING)      0 (0%!)(MISSING)
	  hugepages-1Gi      0 (0%!)(MISSING)      0 (0%!)(MISSING)
	  hugepages-2Mi      0 (0%!)(MISSING)      0 (0%!)(MISSING)
	Events:
	  Type    Reason                   Age                From             Message
	  ----    ------                   ----               ----             -------
	  Normal  Starting                 70s                kube-proxy       
	  Normal  Starting                 35s                kube-proxy       
	  Normal  NodeHasSufficientMemory  97s (x8 over 97s)  kubelet          Node functional-131400 status is now: NodeHasSufficientMemory
	  Normal  NodeHasNoDiskPressure    97s (x8 over 97s)  kubelet          Node functional-131400 status is now: NodeHasNoDiskPressure
	  Normal  NodeHasSufficientPID     97s (x7 over 97s)  kubelet          Node functional-131400 status is now: NodeHasSufficientPID
	  Normal  NodeAllocatableEnforced  97s                kubelet          Updated Node Allocatable limit across pods
	  Normal  Starting                 87s                kubelet          Starting kubelet.
	  Normal  NodeHasSufficientMemory  87s                kubelet          Node functional-131400 status is now: NodeHasSufficientMemory
	  Normal  NodeHasNoDiskPressure    87s                kubelet          Node functional-131400 status is now: NodeHasNoDiskPressure
	  Normal  NodeHasSufficientPID     87s                kubelet          Node functional-131400 status is now: NodeHasSufficientPID
	  Normal  NodeAllocatableEnforced  86s                kubelet          Updated Node Allocatable limit across pods
	  Normal  NodeReady                76s                kubelet          Node functional-131400 status is now: NodeReady
	  Normal  RegisteredNode           76s                node-controller  Node functional-131400 event: Registered Node functional-131400 in Controller
	  Normal  NodeNotReady             56s (x2 over 87s)  kubelet          Node functional-131400 status is now: NodeNotReady
	  Normal  RegisteredNode           24s                node-controller  Node functional-131400 event: Registered Node functional-131400 in Controller
	
	
	==> dmesg <==
	
	[  +0.003002] WSL (1) ERROR: ConfigMountFsTab:2579: Processing fstab with mount -a failed.
	[  +0.004090] WSL (1) ERROR: ConfigApplyWindowsLibPath:2527: open /etc/ld.so.conf.d/ld.wsl.conf
	[  +0.000003]  failed 2
	[  +0.005761] WSL (3) ERROR: UtilCreateProcessAndWait:665: /bin/mount failed with 2
	[  +0.001937] WSL (1) ERROR: UtilCreateProcessAndWait:687: /bin/mount failed with status 0xff00
	
	[  +0.003629] WSL (4) ERROR: UtilCreateProcessAndWait:665: /bin/mount failed with 2
	[  +0.001783] WSL (1) ERROR: UtilCreateProcessAndWait:687: /bin/mount failed with status 0xff00
	
	[  +0.023867] WSL (1) WARNING: /usr/share/zoneinfo/Etc/UTC not found. Is the tzdata package installed?
	[  +0.194147] misc dxg: dxgk: dxgglobal_acquire_channel_lock: Failed to acquire global channel lock
	[  +0.161053] WSL (1) ERROR: ConfigApplyWindowsLibPath:2527: open /etc/ld.so.conf.d/ld.wsl.conf
	[  +0.000005]  failed 2
	[  +0.010616] FS-Cache: Duplicate cookie detected
	[  +0.001094] FS-Cache: O-cookie c=0000001d [p=00000002 fl=222 nc=0 na=1]
	[  +0.001476] FS-Cache: O-cookie d=00000000a0a1eac6{9P.session} n=000000006868c45b
	[  +0.001644] FS-Cache: O-key=[10] '34323934393338313737'
	[  +0.000898] FS-Cache: N-cookie c=0000001e [p=00000002 fl=2 nc=0 na=1]
	[  +0.001233] FS-Cache: N-cookie d=00000000a0a1eac6{9P.session} n=00000000552de7f2
	[  +0.007844] FS-Cache: N-key=[10] '34323934393338313737'
	[  +0.010771] WSL (1) WARNING: /usr/share/zoneinfo/Etc/UTC not found. Is the tzdata package installed?
	[  +0.159972] misc dxg: dxgk: dxgglobal_acquire_channel_lock: Failed to acquire global channel lock
	[  +0.642053] netlink: 'init': attribute type 4 has an invalid length.
	[  +0.598713] kmem.limit_in_bytes is deprecated and will be removed. Please report your usecase to linux-mm@kvack.org if you depend on this functionality.
	
	
	==> etcd [4b46196ba3c0] <==
	{"level":"info","ts":"2024-03-08T03:11:51.923825Z","caller":"embed/etcd.go:726","msg":"starting with client TLS","tls-info":"cert = /var/lib/minikube/certs/etcd/server.crt, key = /var/lib/minikube/certs/etcd/server.key, client-cert=, client-key=, trusted-ca = /var/lib/minikube/certs/etcd/ca.crt, client-cert-auth = true, crl-file = ","cipher-suites":[]}
	{"level":"info","ts":"2024-03-08T03:11:51.923918Z","caller":"embed/etcd.go:597","msg":"serving peer traffic","address":"192.168.49.2:2380"}
	{"level":"info","ts":"2024-03-08T03:11:51.924195Z","caller":"embed/etcd.go:569","msg":"cmux::serve","address":"192.168.49.2:2380"}
	{"level":"info","ts":"2024-03-08T03:11:51.924557Z","caller":"embed/etcd.go:278","msg":"now serving peer/client/metrics","local-member-id":"aec36adc501070cc","initial-advertise-peer-urls":["https://192.168.49.2:2380"],"listen-peer-urls":["https://192.168.49.2:2380"],"advertise-client-urls":["https://192.168.49.2:2379"],"listen-client-urls":["https://127.0.0.1:2379","https://192.168.49.2:2379"],"listen-metrics-urls":["http://127.0.0.1:2381"]}
	{"level":"info","ts":"2024-03-08T03:11:51.924633Z","caller":"embed/etcd.go:855","msg":"serving metrics","address":"http://127.0.0.1:2381"}
	{"level":"info","ts":"2024-03-08T03:11:53.248448Z","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"aec36adc501070cc is starting a new election at term 2"}
	{"level":"info","ts":"2024-03-08T03:11:53.248547Z","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"aec36adc501070cc became pre-candidate at term 2"}
	{"level":"info","ts":"2024-03-08T03:11:53.248588Z","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"aec36adc501070cc received MsgPreVoteResp from aec36adc501070cc at term 2"}
	{"level":"info","ts":"2024-03-08T03:11:53.248606Z","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"aec36adc501070cc became candidate at term 3"}
	{"level":"info","ts":"2024-03-08T03:11:53.248613Z","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"aec36adc501070cc received MsgVoteResp from aec36adc501070cc at term 3"}
	{"level":"info","ts":"2024-03-08T03:11:53.248641Z","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"aec36adc501070cc became leader at term 3"}
	{"level":"info","ts":"2024-03-08T03:11:53.24865Z","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"raft.node: aec36adc501070cc elected leader aec36adc501070cc at term 3"}
	{"level":"info","ts":"2024-03-08T03:11:53.252491Z","caller":"etcdserver/server.go:2062","msg":"published local member to cluster through raft","local-member-id":"aec36adc501070cc","local-member-attributes":"{Name:functional-131400 ClientURLs:[https://192.168.49.2:2379]}","request-path":"/0/members/aec36adc501070cc/attributes","cluster-id":"fa54960ea34d58be","publish-timeout":"7s"}
	{"level":"info","ts":"2024-03-08T03:11:53.252888Z","caller":"embed/serve.go:103","msg":"ready to serve client requests"}
	{"level":"info","ts":"2024-03-08T03:11:53.253084Z","caller":"embed/serve.go:103","msg":"ready to serve client requests"}
	{"level":"info","ts":"2024-03-08T03:11:53.25389Z","caller":"etcdmain/main.go:44","msg":"notifying init daemon"}
	{"level":"info","ts":"2024-03-08T03:11:53.254002Z","caller":"etcdmain/main.go:50","msg":"successfully notified init daemon"}
	{"level":"info","ts":"2024-03-08T03:11:53.255541Z","caller":"embed/serve.go:250","msg":"serving client traffic securely","traffic":"grpc+http","address":"192.168.49.2:2379"}
	{"level":"info","ts":"2024-03-08T03:11:53.255601Z","caller":"embed/serve.go:250","msg":"serving client traffic securely","traffic":"grpc+http","address":"127.0.0.1:2379"}
	{"level":"info","ts":"2024-03-08T03:11:56.136401Z","caller":"traceutil/trace.go:171","msg":"trace[906011072] transaction","detail":"{read_only:false; response_revision:444; number_of_response:1; }","duration":"108.675103ms","start":"2024-03-08T03:11:56.027649Z","end":"2024-03-08T03:11:56.136324Z","steps":["trace[906011072] 'process raft request'  (duration: 101.10465ms)"],"step_count":1}
	{"level":"warn","ts":"2024-03-08T03:11:56.136659Z","caller":"etcdserver/util.go:170","msg":"apply request took too long","took":"105.714326ms","expected-duration":"100ms","prefix":"read-only range ","request":"key:\"/registry/minions/functional-131400\" ","response":"range_response_count:1 size:4440"}
	{"level":"info","ts":"2024-03-08T03:11:56.136466Z","caller":"traceutil/trace.go:171","msg":"trace[717922102] linearizableReadLoop","detail":"{readStateIndex:462; appliedIndex:459; }","duration":"105.417908ms","start":"2024-03-08T03:11:56.031031Z","end":"2024-03-08T03:11:56.136449Z","steps":["trace[717922102] 'read index received'  (duration: 92.624443ms)","trace[717922102] 'applied index is now lower than readState.Index'  (duration: 12.791965ms)"],"step_count":2}
	{"level":"info","ts":"2024-03-08T03:11:56.136815Z","caller":"traceutil/trace.go:171","msg":"trace[395806885] range","detail":"{range_begin:/registry/minions/functional-131400; range_end:; response_count:1; response_revision:445; }","duration":"105.933239ms","start":"2024-03-08T03:11:56.030868Z","end":"2024-03-08T03:11:56.136801Z","steps":["trace[395806885] 'agreement among raft nodes before linearized reading'  (duration: 105.630821ms)"],"step_count":1}
	{"level":"info","ts":"2024-03-08T03:11:56.13671Z","caller":"traceutil/trace.go:171","msg":"trace[2063906061] transaction","detail":"{read_only:false; response_revision:445; number_of_response:1; }","duration":"108.946019ms","start":"2024-03-08T03:11:56.027746Z","end":"2024-03-08T03:11:56.136692Z","steps":["trace[2063906061] 'process raft request'  (duration: 108.442789ms)"],"step_count":1}
	{"level":"info","ts":"2024-03-08T03:11:56.44816Z","caller":"traceutil/trace.go:171","msg":"trace[1732020079] transaction","detail":"{read_only:false; response_revision:448; number_of_response:1; }","duration":"114.426596ms","start":"2024-03-08T03:11:56.333689Z","end":"2024-03-08T03:11:56.448116Z","steps":["trace[1732020079] 'process raft request'  (duration: 103.32419ms)","trace[1732020079] 'compare'  (duration: 11.018395ms)"],"step_count":2}
	
	
	==> etcd [dcfc0c71f557] <==
	{"level":"info","ts":"2024-03-08T03:10:57.936659Z","caller":"embed/serve.go:250","msg":"serving client traffic securely","traffic":"grpc+http","address":"127.0.0.1:2379"}
	{"level":"info","ts":"2024-03-08T03:10:57.936726Z","caller":"embed/serve.go:250","msg":"serving client traffic securely","traffic":"grpc+http","address":"192.168.49.2:2379"}
	{"level":"info","ts":"2024-03-08T03:10:57.937647Z","caller":"membership/cluster.go:584","msg":"set initial cluster version","cluster-id":"fa54960ea34d58be","local-member-id":"aec36adc501070cc","cluster-version":"3.5"}
	{"level":"info","ts":"2024-03-08T03:10:57.937825Z","caller":"api/capability.go:75","msg":"enabled capabilities for version","cluster-version":"3.5"}
	{"level":"info","ts":"2024-03-08T03:10:57.937975Z","caller":"etcdserver/server.go:2595","msg":"cluster version is updated","cluster-version":"3.5"}
	{"level":"info","ts":"2024-03-08T03:11:18.136429Z","caller":"traceutil/trace.go:171","msg":"trace[1128909224] transaction","detail":"{read_only:false; response_revision:370; number_of_response:1; }","duration":"109.325106ms","start":"2024-03-08T03:11:18.02708Z","end":"2024-03-08T03:11:18.136405Z","steps":["trace[1128909224] 'process raft request'  (duration: 108.884276ms)"],"step_count":1}
	{"level":"info","ts":"2024-03-08T03:11:18.137177Z","caller":"traceutil/trace.go:171","msg":"trace[1901329631] linearizableReadLoop","detail":"{readStateIndex:381; appliedIndex:378; }","duration":"107.220162ms","start":"2024-03-08T03:11:18.029871Z","end":"2024-03-08T03:11:18.137091Z","steps":["trace[1901329631] 'read index received'  (duration: 24.990816ms)","trace[1901329631] 'applied index is now lower than readState.Index'  (duration: 82.228446ms)"],"step_count":2}
	{"level":"info","ts":"2024-03-08T03:11:18.137326Z","caller":"traceutil/trace.go:171","msg":"trace[96774421] transaction","detail":"{read_only:false; response_revision:371; number_of_response:1; }","duration":"107.522283ms","start":"2024-03-08T03:11:18.029793Z","end":"2024-03-08T03:11:18.137316Z","steps":["trace[96774421] 'process raft request'  (duration: 106.570518ms)"],"step_count":1}
	{"level":"warn","ts":"2024-03-08T03:11:18.137327Z","caller":"etcdserver/util.go:170","msg":"apply request took too long","took":"107.408475ms","expected-duration":"100ms","prefix":"read-only range ","request":"key:\"/registry/pods/kube-system/coredns-5dd5756b68-ctc5r\" ","response":"range_response_count:1 size:3575"}
	{"level":"info","ts":"2024-03-08T03:11:18.137724Z","caller":"traceutil/trace.go:171","msg":"trace[1714653096] range","detail":"{range_begin:/registry/pods/kube-system/coredns-5dd5756b68-ctc5r; range_end:; response_count:1; response_revision:372; }","duration":"107.867707ms","start":"2024-03-08T03:11:18.029842Z","end":"2024-03-08T03:11:18.13771Z","steps":["trace[1714653096] 'agreement among raft nodes before linearized reading'  (duration: 107.376573ms)"],"step_count":1}
	{"level":"info","ts":"2024-03-08T03:11:18.137376Z","caller":"traceutil/trace.go:171","msg":"trace[50452144] transaction","detail":"{read_only:false; response_revision:372; number_of_response:1; }","duration":"107.399275ms","start":"2024-03-08T03:11:18.029955Z","end":"2024-03-08T03:11:18.137354Z","steps":["trace[50452144] 'process raft request'  (duration: 107.069452ms)"],"step_count":1}
	{"level":"info","ts":"2024-03-08T03:11:21.145152Z","caller":"traceutil/trace.go:171","msg":"trace[116991784] transaction","detail":"{read_only:false; response_revision:388; number_of_response:1; }","duration":"107.48078ms","start":"2024-03-08T03:11:21.037645Z","end":"2024-03-08T03:11:21.145125Z","steps":["trace[116991784] 'process raft request'  (duration: 86.567144ms)","trace[116991784] 'compare'  (duration: 20.688121ms)"],"step_count":2}
	{"level":"warn","ts":"2024-03-08T03:11:21.145468Z","caller":"etcdserver/util.go:170","msg":"apply request took too long","took":"105.926074ms","expected-duration":"100ms","prefix":"read-only range ","request":"key:\"/registry/deployments/kube-system/coredns\" ","response":"range_response_count:1 size:4102"}
	{"level":"info","ts":"2024-03-08T03:11:21.145584Z","caller":"traceutil/trace.go:171","msg":"trace[1483429048] range","detail":"{range_begin:/registry/deployments/kube-system/coredns; range_end:; response_count:1; response_revision:389; }","duration":"106.177391ms","start":"2024-03-08T03:11:21.039394Z","end":"2024-03-08T03:11:21.145572Z","steps":["trace[1483429048] 'agreement among raft nodes before linearized reading'  (duration: 105.858769ms)"],"step_count":1}
	{"level":"info","ts":"2024-03-08T03:11:21.145226Z","caller":"traceutil/trace.go:171","msg":"trace[1120280829] linearizableReadLoop","detail":"{readStateIndex:399; appliedIndex:398; }","duration":"105.794864ms","start":"2024-03-08T03:11:21.039414Z","end":"2024-03-08T03:11:21.145209Z","steps":["trace[1120280829] 'read index received'  (duration: 84.747119ms)","trace[1120280829] 'applied index is now lower than readState.Index'  (duration: 21.045745ms)"],"step_count":2}
	{"level":"info","ts":"2024-03-08T03:11:32.464218Z","caller":"osutil/interrupt_unix.go:64","msg":"received signal; shutting down","signal":"terminated"}
	{"level":"info","ts":"2024-03-08T03:11:32.464388Z","caller":"embed/etcd.go:376","msg":"closing etcd server","name":"functional-131400","data-dir":"/var/lib/minikube/etcd","advertise-peer-urls":["https://192.168.49.2:2380"],"advertise-client-urls":["https://192.168.49.2:2379"]}
	{"level":"warn","ts":"2024-03-08T03:11:32.464658Z","caller":"embed/serve.go:212","msg":"stopping secure grpc server due to error","error":"accept tcp 127.0.0.1:2379: use of closed network connection"}
	{"level":"warn","ts":"2024-03-08T03:11:32.464849Z","caller":"embed/serve.go:214","msg":"stopped secure grpc server due to error","error":"accept tcp 127.0.0.1:2379: use of closed network connection"}
	{"level":"warn","ts":"2024-03-08T03:11:32.533385Z","caller":"embed/serve.go:212","msg":"stopping secure grpc server due to error","error":"accept tcp 192.168.49.2:2379: use of closed network connection"}
	{"level":"warn","ts":"2024-03-08T03:11:32.533501Z","caller":"embed/serve.go:214","msg":"stopped secure grpc server due to error","error":"accept tcp 192.168.49.2:2379: use of closed network connection"}
	{"level":"info","ts":"2024-03-08T03:11:32.533608Z","caller":"etcdserver/server.go:1465","msg":"skipped leadership transfer for single voting member cluster","local-member-id":"aec36adc501070cc","current-leader-member-id":"aec36adc501070cc"}
	{"level":"info","ts":"2024-03-08T03:11:32.724289Z","caller":"embed/etcd.go:579","msg":"stopping serving peer traffic","address":"192.168.49.2:2380"}
	{"level":"info","ts":"2024-03-08T03:11:32.72455Z","caller":"embed/etcd.go:584","msg":"stopped serving peer traffic","address":"192.168.49.2:2380"}
	{"level":"info","ts":"2024-03-08T03:11:32.724572Z","caller":"embed/etcd.go:378","msg":"closed etcd server","name":"functional-131400","data-dir":"/var/lib/minikube/etcd","advertise-peer-urls":["https://192.168.49.2:2380"],"advertise-client-urls":["https://192.168.49.2:2379"]}
	
	
	==> kernel <==
	 03:12:32 up  2:24,  0 users,  load average: 0.95, 1.50, 1.16
	Linux functional-131400 5.15.133.1-microsoft-standard-WSL2 #1 SMP Thu Oct 5 21:02:42 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
	PRETTY_NAME="Ubuntu 22.04.3 LTS"
	
	
	==> kube-apiserver [47593bd70758] <==
	W0308 03:11:41.905024       1 logging.go:59] [core] [Channel #31 SubChannel #32] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:41.909772       1 logging.go:59] [core] [Channel #124 SubChannel #125] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:41.915309       1 logging.go:59] [core] [Channel #172 SubChannel #173] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:41.937531       1 logging.go:59] [core] [Channel #25 SubChannel #26] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:41.947693       1 logging.go:59] [core] [Channel #121 SubChannel #122] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:41.965130       1 logging.go:59] [core] [Channel #130 SubChannel #131] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.010068       1 logging.go:59] [core] [Channel #70 SubChannel #71] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.023180       1 logging.go:59] [core] [Channel #148 SubChannel #149] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.028115       1 logging.go:59] [core] [Channel #154 SubChannel #155] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.068159       1 logging.go:59] [core] [Channel #67 SubChannel #68] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.068714       1 logging.go:59] [core] [Channel #106 SubChannel #107] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.118191       1 logging.go:59] [core] [Channel #46 SubChannel #47] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.159468       1 logging.go:59] [core] [Channel #136 SubChannel #137] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.185339       1 logging.go:59] [core] [Channel #2 SubChannel #4] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.221480       1 logging.go:59] [core] [Channel #139 SubChannel #140] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.229087       1 logging.go:59] [core] [Channel #64 SubChannel #65] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.257213       1 logging.go:59] [core] [Channel #61 SubChannel #62] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.261214       1 logging.go:59] [core] [Channel #100 SubChannel #101] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.318095       1 logging.go:59] [core] [Channel #49 SubChannel #50] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.366515       1 logging.go:59] [core] [Channel #175 SubChannel #176] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.372843       1 logging.go:59] [core] [Channel #166 SubChannel #167] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.430323       1 logging.go:59] [core] [Channel #97 SubChannel #98] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.504910       1 logging.go:59] [core] [Channel #34 SubChannel #35] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.523063       1 logging.go:59] [core] [Channel #127 SubChannel #128] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	W0308 03:11:42.536801       1 logging.go:59] [core] [Channel #118 SubChannel #119] grpc: addrConn.createTransport failed to connect to {Addr: "127.0.0.1:2379", ServerName: "127.0.0.1", }. Err: connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:2379: connect: connection refused"
	
	
	==> kube-apiserver [ff3f36af14a6] <==
	I0308 03:11:55.699686       1 nonstructuralschema_controller.go:192] Starting NonStructuralSchemaConditionController
	I0308 03:11:55.699709       1 apiapproval_controller.go:186] Starting KubernetesAPIApprovalPolicyConformantConditionController
	I0308 03:11:55.699729       1 crd_finalizer.go:266] Starting CRDFinalizer
	I0308 03:11:55.699879       1 controller.go:134] Starting OpenAPI controller
	I0308 03:11:55.700129       1 cluster_authentication_trust_controller.go:440] Starting cluster_authentication_trust_controller controller
	I0308 03:11:55.700138       1 shared_informer.go:311] Waiting for caches to sync for cluster_authentication_trust_controller
	I0308 03:11:55.700266       1 dynamic_cafile_content.go:157] "Starting controller" name="client-ca-bundle::/var/lib/minikube/certs/ca.crt"
	I0308 03:11:55.700337       1 dynamic_cafile_content.go:157] "Starting controller" name="request-header::/var/lib/minikube/certs/front-proxy-ca.crt"
	I0308 03:11:56.023086       1 shared_informer.go:318] Caches are synced for crd-autoregister
	I0308 03:11:56.023169       1 shared_informer.go:318] Caches are synced for configmaps
	I0308 03:11:56.023243       1 aggregator.go:166] initial CRD sync complete...
	I0308 03:11:56.023251       1 autoregister_controller.go:141] Starting autoregister controller
	I0308 03:11:56.023257       1 cache.go:32] Waiting for caches to sync for autoregister controller
	I0308 03:11:56.023264       1 cache.go:39] Caches are synced for autoregister controller
	I0308 03:11:56.023393       1 apf_controller.go:377] Running API Priority and Fairness config worker
	I0308 03:11:56.023402       1 apf_controller.go:380] Running API Priority and Fairness periodic rebalancing process
	I0308 03:11:56.023497       1 shared_informer.go:318] Caches are synced for cluster_authentication_trust_controller
	I0308 03:11:56.024291       1 cache.go:39] Caches are synced for AvailableConditionController controller
	I0308 03:11:56.025491       1 cache.go:39] Caches are synced for APIServiceRegistrationController controller
	I0308 03:11:56.027142       1 controller.go:624] quota admission added evaluator for: leases.coordination.k8s.io
	I0308 03:11:56.036060       1 shared_informer.go:318] Caches are synced for node_authorizer
	E0308 03:11:56.224774       1 controller.go:97] Error removing old endpoints from kubernetes service: no API server IP addresses were listed in storage, refusing to erase all endpoints for the kubernetes Service
	I0308 03:11:56.738687       1 storage_scheduling.go:111] all system priority classes are created successfully or already exist.
	I0308 03:12:08.557385       1 controller.go:624] quota admission added evaluator for: endpointslices.discovery.k8s.io
	I0308 03:12:08.577951       1 controller.go:624] quota admission added evaluator for: endpoints
	
	
	==> kube-controller-manager [2452f8d6925b] <==
	I0308 03:11:16.970847       1 shared_informer.go:318] Caches are synced for disruption
	I0308 03:11:17.346163       1 shared_informer.go:318] Caches are synced for garbage collector
	I0308 03:11:17.402003       1 shared_informer.go:318] Caches are synced for garbage collector
	I0308 03:11:17.402090       1 garbagecollector.go:166] "All resource monitors have synced. Proceeding to collect garbage"
	I0308 03:11:17.682514       1 event.go:307] "Event occurred" object="kube-system/kube-proxy" fieldPath="" kind="DaemonSet" apiVersion="apps/v1" type="Normal" reason="SuccessfulCreate" message="Created pod: kube-proxy-j7d7j"
	I0308 03:11:17.839207       1 event.go:307] "Event occurred" object="kube-system/coredns" fieldPath="" kind="Deployment" apiVersion="apps/v1" type="Normal" reason="ScalingReplicaSet" message="Scaled up replica set coredns-5dd5756b68 to 2"
	I0308 03:11:17.943684       1 event.go:307] "Event occurred" object="kube-system/coredns-5dd5756b68" fieldPath="" kind="ReplicaSet" apiVersion="apps/v1" type="Normal" reason="SuccessfulCreate" message="Created pod: coredns-5dd5756b68-ctc5r"
	I0308 03:11:17.970308       1 event.go:307] "Event occurred" object="kube-system/coredns-5dd5756b68" fieldPath="" kind="ReplicaSet" apiVersion="apps/v1" type="Normal" reason="SuccessfulCreate" message="Created pod: coredns-5dd5756b68-pmvrj"
	I0308 03:11:18.140466       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="302.04784ms"
	I0308 03:11:18.244643       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="104.11775ms"
	I0308 03:11:18.244967       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="72.305µs"
	I0308 03:11:18.251783       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="87.206µs"
	I0308 03:11:20.928269       1 event.go:307] "Event occurred" object="kube-system/coredns" fieldPath="" kind="Deployment" apiVersion="apps/v1" type="Normal" reason="ScalingReplicaSet" message="Scaled down replica set coredns-5dd5756b68 to 1 from 2"
	I0308 03:11:21.027245       1 event.go:307] "Event occurred" object="kube-system/coredns-5dd5756b68" fieldPath="" kind="ReplicaSet" apiVersion="apps/v1" type="Normal" reason="SuccessfulDelete" message="Deleted pod: coredns-5dd5756b68-ctc5r"
	I0308 03:11:21.147518       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="291.945446ms"
	I0308 03:11:21.324387       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="176.696933ms"
	I0308 03:11:21.324842       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="116.808µs"
	I0308 03:11:22.652752       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="102.307µs"
	I0308 03:11:22.725931       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="126.608µs"
	I0308 03:11:23.706837       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="17.586808ms"
	I0308 03:11:23.707014       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="43.503µs"
	I0308 03:11:28.105364       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="169.811µs"
	I0308 03:11:28.762416       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="165.51µs"
	I0308 03:11:28.792368       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="123.308µs"
	I0308 03:11:28.804253       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="113.408µs"
	
	
	==> kube-controller-manager [dafb02e8a8ca] <==
	I0308 03:12:08.542412       1 shared_informer.go:318] Caches are synced for endpoint_slice
	I0308 03:12:08.546396       1 shared_informer.go:318] Caches are synced for daemon sets
	I0308 03:12:08.547849       1 shared_informer.go:318] Caches are synced for job
	I0308 03:12:08.550860       1 shared_informer.go:318] Caches are synced for stateful set
	I0308 03:12:08.550982       1 shared_informer.go:318] Caches are synced for deployment
	I0308 03:12:08.555711       1 shared_informer.go:318] Caches are synced for persistent volume
	I0308 03:12:08.559804       1 shared_informer.go:318] Caches are synced for endpoint
	I0308 03:12:08.562354       1 shared_informer.go:318] Caches are synced for GC
	I0308 03:12:08.562647       1 shared_informer.go:318] Caches are synced for ReplicationController
	I0308 03:12:08.572544       1 shared_informer.go:318] Caches are synced for attach detach
	I0308 03:12:08.579537       1 shared_informer.go:318] Caches are synced for HPA
	I0308 03:12:08.586705       1 shared_informer.go:318] Caches are synced for taint
	I0308 03:12:08.586913       1 taint_manager.go:205] "Starting NoExecuteTaintManager"
	I0308 03:12:08.587714       1 node_lifecycle_controller.go:1225] "Initializing eviction metric for zone" zone=""
	I0308 03:12:08.587934       1 node_lifecycle_controller.go:877] "Missing timestamp for Node. Assuming now as a timestamp" node="functional-131400"
	I0308 03:12:08.587999       1 node_lifecycle_controller.go:1071] "Controller detected that zone is now in new state" zone="" newState="Normal"
	I0308 03:12:08.588051       1 taint_manager.go:210] "Sending events to api server"
	I0308 03:12:08.589453       1 shared_informer.go:318] Caches are synced for ephemeral
	I0308 03:12:08.588497       1 event.go:307] "Event occurred" object="functional-131400" fieldPath="" kind="Node" apiVersion="v1" type="Normal" reason="RegisteredNode" message="Node functional-131400 event: Registered Node functional-131400 in Controller"
	I0308 03:12:08.599842       1 shared_informer.go:318] Caches are synced for ReplicaSet
	I0308 03:12:08.600056       1 replica_set.go:676] "Finished syncing" kind="ReplicaSet" key="kube-system/coredns-5dd5756b68" duration="96.307µs"
	I0308 03:12:08.600106       1 shared_informer.go:318] Caches are synced for resource quota
	I0308 03:12:08.933896       1 shared_informer.go:318] Caches are synced for garbage collector
	I0308 03:12:08.990819       1 shared_informer.go:318] Caches are synced for garbage collector
	I0308 03:12:08.990899       1 garbagecollector.go:166] "All resource monitors have synced. Proceeding to collect garbage"
	
	
	==> kube-proxy [88734d7e852a] <==
	I0308 03:11:51.740123       1 server_others.go:69] "Using iptables proxy"
	I0308 03:11:56.223617       1 node.go:141] Successfully retrieved node IP: 192.168.49.2
	I0308 03:11:56.327956       1 server.go:632] "kube-proxy running in dual-stack mode" primary ipFamily="IPv4"
	I0308 03:11:56.332040       1 server_others.go:152] "Using iptables Proxier"
	I0308 03:11:56.332541       1 server_others.go:421] "Detect-local-mode set to ClusterCIDR, but no cluster CIDR for family" ipFamily="IPv6"
	I0308 03:11:56.332781       1 server_others.go:438] "Defaulting to no-op detect-local"
	I0308 03:11:56.333209       1 proxier.go:251] "Setting route_localnet=1 to allow node-ports on localhost; to change this either disable iptables.localhostNodePorts (--iptables-localhost-nodeports) or set nodePortAddresses (--nodeport-addresses) to filter loopback addresses"
	I0308 03:11:56.333785       1 server.go:846] "Version info" version="v1.28.4"
	I0308 03:11:56.333808       1 server.go:848] "Golang settings" GOGC="" GOMAXPROCS="" GOTRACEBACK=""
	I0308 03:11:56.337014       1 config.go:188] "Starting service config controller"
	I0308 03:11:56.337044       1 shared_informer.go:311] Waiting for caches to sync for service config
	I0308 03:11:56.337187       1 config.go:97] "Starting endpoint slice config controller"
	I0308 03:11:56.337199       1 shared_informer.go:311] Waiting for caches to sync for endpoint slice config
	I0308 03:11:56.337830       1 config.go:315] "Starting node config controller"
	I0308 03:11:56.337838       1 shared_informer.go:311] Waiting for caches to sync for node config
	I0308 03:11:56.438128       1 shared_informer.go:318] Caches are synced for node config
	I0308 03:11:56.438213       1 shared_informer.go:318] Caches are synced for endpoint slice config
	I0308 03:11:56.438233       1 shared_informer.go:318] Caches are synced for service config
	
	
	==> kube-proxy [8c6df4d23021] <==
	I0308 03:11:21.427970       1 server_others.go:69] "Using iptables proxy"
	I0308 03:11:21.529158       1 node.go:141] Successfully retrieved node IP: 192.168.49.2
	I0308 03:11:21.643530       1 server.go:632] "kube-proxy running in dual-stack mode" primary ipFamily="IPv4"
	I0308 03:11:21.647939       1 server_others.go:152] "Using iptables Proxier"
	I0308 03:11:21.648045       1 server_others.go:421] "Detect-local-mode set to ClusterCIDR, but no cluster CIDR for family" ipFamily="IPv6"
	I0308 03:11:21.648057       1 server_others.go:438] "Defaulting to no-op detect-local"
	I0308 03:11:21.648089       1 proxier.go:251] "Setting route_localnet=1 to allow node-ports on localhost; to change this either disable iptables.localhostNodePorts (--iptables-localhost-nodeports) or set nodePortAddresses (--nodeport-addresses) to filter loopback addresses"
	I0308 03:11:21.648960       1 server.go:846] "Version info" version="v1.28.4"
	I0308 03:11:21.649103       1 server.go:848] "Golang settings" GOGC="" GOMAXPROCS="" GOTRACEBACK=""
	I0308 03:11:21.650336       1 config.go:188] "Starting service config controller"
	I0308 03:11:21.650441       1 shared_informer.go:311] Waiting for caches to sync for service config
	I0308 03:11:21.650542       1 config.go:315] "Starting node config controller"
	I0308 03:11:21.650550       1 shared_informer.go:311] Waiting for caches to sync for node config
	I0308 03:11:21.650654       1 config.go:97] "Starting endpoint slice config controller"
	I0308 03:11:21.650800       1 shared_informer.go:311] Waiting for caches to sync for endpoint slice config
	I0308 03:11:21.751420       1 shared_informer.go:318] Caches are synced for endpoint slice config
	I0308 03:11:21.751540       1 shared_informer.go:318] Caches are synced for service config
	I0308 03:11:21.751599       1 shared_informer.go:318] Caches are synced for node config
	
	
	==> kube-scheduler [11c16d29fb35] <==
	I0308 03:11:52.894544       1 serving.go:348] Generated self-signed cert in-memory
	W0308 03:11:55.932946       1 requestheader_controller.go:193] Unable to get configmap/extension-apiserver-authentication in kube-system.  Usually fixed by 'kubectl create rolebinding -n kube-system ROLEBINDING_NAME --role=extension-apiserver-authentication-reader --serviceaccount=YOUR_NS:YOUR_SA'
	W0308 03:11:55.933130       1 authentication.go:368] Error looking up in-cluster authentication configuration: configmaps "extension-apiserver-authentication" is forbidden: User "system:kube-scheduler" cannot get resource "configmaps" in API group "" in the namespace "kube-system"
	W0308 03:11:55.933154       1 authentication.go:369] Continuing without authentication configuration. This may treat all requests as anonymous.
	W0308 03:11:55.933168       1 authentication.go:370] To require authentication configuration lookup to succeed, set --authentication-tolerate-lookup-failure=false
	I0308 03:11:56.030131       1 server.go:154] "Starting Kubernetes Scheduler" version="v1.28.4"
	I0308 03:11:56.031072       1 server.go:156] "Golang settings" GOGC="" GOMAXPROCS="" GOTRACEBACK=""
	I0308 03:11:56.035540       1 configmap_cafile_content.go:202] "Starting controller" name="client-ca::kube-system::extension-apiserver-authentication::client-ca-file"
	I0308 03:11:56.035725       1 shared_informer.go:311] Waiting for caches to sync for client-ca::kube-system::extension-apiserver-authentication::client-ca-file
	I0308 03:11:56.125103       1 secure_serving.go:213] Serving securely on 127.0.0.1:10259
	I0308 03:11:56.125354       1 tlsconfig.go:240] "Starting DynamicServingCertificateController"
	I0308 03:11:56.135899       1 shared_informer.go:318] Caches are synced for client-ca::kube-system::extension-apiserver-authentication::client-ca-file
	
	
	==> kube-scheduler [7d176a2ff745] <==
	E0308 03:11:01.903441       1 reflector.go:147] vendor/k8s.io/client-go/informers/factory.go:150: Failed to watch *v1.ReplicaSet: failed to list *v1.ReplicaSet: replicasets.apps is forbidden: User "system:kube-scheduler" cannot list resource "replicasets" in API group "apps" at the cluster scope
	W0308 03:11:01.919658       1 reflector.go:535] vendor/k8s.io/client-go/informers/factory.go:150: failed to list *v1.ReplicationController: replicationcontrollers is forbidden: User "system:kube-scheduler" cannot list resource "replicationcontrollers" in API group "" at the cluster scope
	E0308 03:11:01.919754       1 reflector.go:147] vendor/k8s.io/client-go/informers/factory.go:150: Failed to watch *v1.ReplicationController: failed to list *v1.ReplicationController: replicationcontrollers is forbidden: User "system:kube-scheduler" cannot list resource "replicationcontrollers" in API group "" at the cluster scope
	W0308 03:11:02.154354       1 reflector.go:535] vendor/k8s.io/client-go/informers/factory.go:150: failed to list *v1.CSIDriver: csidrivers.storage.k8s.io is forbidden: User "system:kube-scheduler" cannot list resource "csidrivers" in API group "storage.k8s.io" at the cluster scope
	E0308 03:11:02.154475       1 reflector.go:147] vendor/k8s.io/client-go/informers/factory.go:150: Failed to watch *v1.CSIDriver: failed to list *v1.CSIDriver: csidrivers.storage.k8s.io is forbidden: User "system:kube-scheduler" cannot list resource "csidrivers" in API group "storage.k8s.io" at the cluster scope
	W0308 03:11:02.192331       1 reflector.go:535] pkg/server/dynamiccertificates/configmap_cafile_content.go:206: failed to list *v1.ConfigMap: configmaps "extension-apiserver-authentication" is forbidden: User "system:kube-scheduler" cannot list resource "configmaps" in API group "" in the namespace "kube-system"
	E0308 03:11:02.192415       1 reflector.go:147] pkg/server/dynamiccertificates/configmap_cafile_content.go:206: Failed to watch *v1.ConfigMap: failed to list *v1.ConfigMap: configmaps "extension-apiserver-authentication" is forbidden: User "system:kube-scheduler" cannot list resource "configmaps" in API group "" in the namespace "kube-system"
	W0308 03:11:02.198954       1 reflector.go:535] vendor/k8s.io/client-go/informers/factory.go:150: failed to list *v1.Pod: pods is forbidden: User "system:kube-scheduler" cannot list resource "pods" in API group "" at the cluster scope
	E0308 03:11:02.199057       1 reflector.go:147] vendor/k8s.io/client-go/informers/factory.go:150: Failed to watch *v1.Pod: failed to list *v1.Pod: pods is forbidden: User "system:kube-scheduler" cannot list resource "pods" in API group "" at the cluster scope
	W0308 03:11:02.322647       1 reflector.go:535] vendor/k8s.io/client-go/informers/factory.go:150: failed to list *v1.PersistentVolumeClaim: persistentvolumeclaims is forbidden: User "system:kube-scheduler" cannot list resource "persistentvolumeclaims" in API group "" at the cluster scope
	E0308 03:11:02.322758       1 reflector.go:147] vendor/k8s.io/client-go/informers/factory.go:150: Failed to watch *v1.PersistentVolumeClaim: failed to list *v1.PersistentVolumeClaim: persistentvolumeclaims is forbidden: User "system:kube-scheduler" cannot list resource "persistentvolumeclaims" in API group "" at the cluster scope
	W0308 03:11:02.352798       1 reflector.go:535] vendor/k8s.io/client-go/informers/factory.go:150: failed to list *v1.Service: services is forbidden: User "system:kube-scheduler" cannot list resource "services" in API group "" at the cluster scope
	E0308 03:11:02.352894       1 reflector.go:147] vendor/k8s.io/client-go/informers/factory.go:150: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:kube-scheduler" cannot list resource "services" in API group "" at the cluster scope
	W0308 03:11:02.359437       1 reflector.go:535] vendor/k8s.io/client-go/informers/factory.go:150: failed to list *v1.CSINode: csinodes.storage.k8s.io is forbidden: User "system:kube-scheduler" cannot list resource "csinodes" in API group "storage.k8s.io" at the cluster scope
	E0308 03:11:02.359533       1 reflector.go:147] vendor/k8s.io/client-go/informers/factory.go:150: Failed to watch *v1.CSINode: failed to list *v1.CSINode: csinodes.storage.k8s.io is forbidden: User "system:kube-scheduler" cannot list resource "csinodes" in API group "storage.k8s.io" at the cluster scope
	W0308 03:11:02.366352       1 reflector.go:535] vendor/k8s.io/client-go/informers/factory.go:150: failed to list *v1.PersistentVolume: persistentvolumes is forbidden: User "system:kube-scheduler" cannot list resource "persistentvolumes" in API group "" at the cluster scope
	E0308 03:11:02.366444       1 reflector.go:147] vendor/k8s.io/client-go/informers/factory.go:150: Failed to watch *v1.PersistentVolume: failed to list *v1.PersistentVolume: persistentvolumes is forbidden: User "system:kube-scheduler" cannot list resource "persistentvolumes" in API group "" at the cluster scope
	W0308 03:11:02.396693       1 reflector.go:535] vendor/k8s.io/client-go/informers/factory.go:150: failed to list *v1.PodDisruptionBudget: poddisruptionbudgets.policy is forbidden: User "system:kube-scheduler" cannot list resource "poddisruptionbudgets" in API group "policy" at the cluster scope
	E0308 03:11:02.396782       1 reflector.go:147] vendor/k8s.io/client-go/informers/factory.go:150: Failed to watch *v1.PodDisruptionBudget: failed to list *v1.PodDisruptionBudget: poddisruptionbudgets.policy is forbidden: User "system:kube-scheduler" cannot list resource "poddisruptionbudgets" in API group "policy" at the cluster scope
	W0308 03:11:02.484084       1 reflector.go:535] vendor/k8s.io/client-go/informers/factory.go:150: failed to list *v1.CSIStorageCapacity: csistoragecapacities.storage.k8s.io is forbidden: User "system:kube-scheduler" cannot list resource "csistoragecapacities" in API group "storage.k8s.io" at the cluster scope
	E0308 03:11:02.484197       1 reflector.go:147] vendor/k8s.io/client-go/informers/factory.go:150: Failed to watch *v1.CSIStorageCapacity: failed to list *v1.CSIStorageCapacity: csistoragecapacities.storage.k8s.io is forbidden: User "system:kube-scheduler" cannot list resource "csistoragecapacities" in API group "storage.k8s.io" at the cluster scope
	I0308 03:11:04.741047       1 shared_informer.go:318] Caches are synced for client-ca::kube-system::extension-apiserver-authentication::client-ca-file
	I0308 03:11:32.533525       1 tlsconfig.go:255] "Shutting down DynamicServingCertificateController"
	E0308 03:11:32.533525       1 run.go:74] "command failed" err="finished without leader elect"
	I0308 03:11:32.533748       1 configmap_cafile_content.go:223] "Shutting down controller" name="client-ca::kube-system::extension-apiserver-authentication::client-ca-file"
	
	
	==> kubelet <==
	Mar 08 03:11:47 functional-131400 kubelet[2853]: I0308 03:11:47.852013    2853 status_manager.go:853] "Failed to get status for pod" podUID="e727987e59f3981370e6460b4cc3d8f3" pod="kube-system/kube-scheduler-functional-131400" err="Get \"https://control-plane.minikube.internal:8441/api/v1/namespaces/kube-system/pods/kube-scheduler-functional-131400\": dial tcp 192.168.49.2:8441: connect: connection refused"
	Mar 08 03:11:47 functional-131400 kubelet[2853]: I0308 03:11:47.853014    2853 status_manager.go:853] "Failed to get status for pod" podUID="7fc6fe1dbc9d535079868a69804c795e" pod="kube-system/kube-apiserver-functional-131400" err="Get \"https://control-plane.minikube.internal:8441/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400\": dial tcp 192.168.49.2:8441: connect: connection refused"
	Mar 08 03:11:47 functional-131400 kubelet[2853]: I0308 03:11:47.854080    2853 status_manager.go:853] "Failed to get status for pod" podUID="467b643e4a2b3af530c1cb8d98f83ddc" pod="kube-system/etcd-functional-131400" err="Get \"https://control-plane.minikube.internal:8441/api/v1/namespaces/kube-system/pods/etcd-functional-131400\": dial tcp 192.168.49.2:8441: connect: connection refused"
	Mar 08 03:11:47 functional-131400 kubelet[2853]: I0308 03:11:47.855609    2853 status_manager.go:853] "Failed to get status for pod" podUID="63288fa1-00ea-4f6b-bd9d-422237ed4213" pod="kube-system/kube-proxy-j7d7j" err="Get \"https://control-plane.minikube.internal:8441/api/v1/namespaces/kube-system/pods/kube-proxy-j7d7j\": dial tcp 192.168.49.2:8441: connect: connection refused"
	Mar 08 03:11:47 functional-131400 kubelet[2853]: I0308 03:11:47.856966    2853 status_manager.go:853] "Failed to get status for pod" podUID="6d6a4296-e51e-4cba-a4d7-00958ff0ecce" pod="kube-system/coredns-5dd5756b68-pmvrj" err="Get \"https://control-plane.minikube.internal:8441/api/v1/namespaces/kube-system/pods/coredns-5dd5756b68-pmvrj\": dial tcp 192.168.49.2:8441: connect: connection refused"
	Mar 08 03:11:47 functional-131400 kubelet[2853]: I0308 03:11:47.858723    2853 status_manager.go:853] "Failed to get status for pod" podUID="e34e2810-29e2-49ae-9cc6-6ac7a02461c4" pod="kube-system/storage-provisioner" err="Get \"https://control-plane.minikube.internal:8441/api/v1/namespaces/kube-system/pods/storage-provisioner\": dial tcp 192.168.49.2:8441: connect: connection refused"
	Mar 08 03:11:47 functional-131400 kubelet[2853]: I0308 03:11:47.859458    2853 status_manager.go:853] "Failed to get status for pod" podUID="e727987e59f3981370e6460b4cc3d8f3" pod="kube-system/kube-scheduler-functional-131400" err="Get \"https://control-plane.minikube.internal:8441/api/v1/namespaces/kube-system/pods/kube-scheduler-functional-131400\": dial tcp 192.168.49.2:8441: connect: connection refused"
	Mar 08 03:11:47 functional-131400 kubelet[2853]: I0308 03:11:47.860304    2853 status_manager.go:853] "Failed to get status for pod" podUID="7fc6fe1dbc9d535079868a69804c795e" pod="kube-system/kube-apiserver-functional-131400" err="Get \"https://control-plane.minikube.internal:8441/api/v1/namespaces/kube-system/pods/kube-apiserver-functional-131400\": dial tcp 192.168.49.2:8441: connect: connection refused"
	Mar 08 03:11:47 functional-131400 kubelet[2853]: I0308 03:11:47.860943    2853 status_manager.go:853] "Failed to get status for pod" podUID="2be4fadeb306c0377dc0bfd0b68b2d2d" pod="kube-system/kube-controller-manager-functional-131400" err="Get \"https://control-plane.minikube.internal:8441/api/v1/namespaces/kube-system/pods/kube-controller-manager-functional-131400\": dial tcp 192.168.49.2:8441: connect: connection refused"
	Mar 08 03:11:48 functional-131400 kubelet[2853]: E0308 03:11:48.539787    2853 event.go:289] Unable to write event: '&v1.Event{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"kube-apiserver-functional-131400.17baab6d570dbc8f", GenerateName:"", Namespace:"kube-system", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:<nil>, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, InvolvedObject:v1.ObjectReference{Kind:"Pod", Namespace:"kube-system", Name:"kube-apiserver-functional-131400", UID:"7fc6fe1dbc9d535079868a69804c795e", APIVersion:"v1", ResourceVersion:"", FieldPath:"spec.containers{kube-apiserver}"}, Reason:"Unhealthy", Message:"Readiness probe failed: HTTP probe failed with statuscode: 500", Source:v1.Event
Source{Component:"kubelet", Host:"functional-131400"}, FirstTimestamp:time.Date(2024, time.March, 8, 3, 11, 34, 640827535, time.Local), LastTimestamp:time.Date(2024, time.March, 8, 3, 11, 34, 640827535, time.Local), Count:1, Type:"Warning", EventTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), Series:(*v1.EventSeries)(nil), Action:"", Related:(*v1.ObjectReference)(nil), ReportingController:"kubelet", ReportingInstance:"functional-131400"}': 'Post "https://control-plane.minikube.internal:8441/api/v1/namespaces/kube-system/events": dial tcp 192.168.49.2:8441: connect: connection refused'(may retry after sleeping)
	Mar 08 03:11:48 functional-131400 kubelet[2853]: E0308 03:11:48.924123    2853 controller.go:146] "Failed to ensure lease exists, will retry" err="Get \"https://control-plane.minikube.internal:8441/apis/coordination.k8s.io/v1/namespaces/kube-node-lease/leases/functional-131400?timeout=10s\": dial tcp 192.168.49.2:8441: connect: connection refused" interval="6.4s"
	Mar 08 03:11:50 functional-131400 kubelet[2853]: I0308 03:11:50.156124    2853 pod_container_deletor.go:80] "Container not found in pod's containers" containerID="daa8526fefec654ef8738f50c5fe8dd682023c2c9e35026b1643b9225d31fa4b"
	Mar 08 03:11:51 functional-131400 kubelet[2853]: I0308 03:11:51.228756    2853 pod_container_deletor.go:80] "Container not found in pod's containers" containerID="247b26db9bad8d2e723e7e87b89efa10381b2b4d1a2a462b9dbf016aed501ce4"
	Mar 08 03:11:51 functional-131400 kubelet[2853]: I0308 03:11:51.734191    2853 pod_container_deletor.go:80] "Container not found in pod's containers" containerID="78103ec6884a5c9431196163b2f7d4b374121c1f1be86729afe0e409eb46777c"
	Mar 08 03:11:51 functional-131400 kubelet[2853]: I0308 03:11:51.840652    2853 pod_container_deletor.go:80] "Container not found in pod's containers" containerID="d2cb6058cfba502536c9cb02c1ff489042a1a9498a0e90efc730209af304b797"
	Mar 08 03:11:52 functional-131400 kubelet[2853]: I0308 03:11:52.029521    2853 pod_container_deletor.go:80] "Container not found in pod's containers" containerID="9720d1c35ec08f11ca2e6d073d9203c60337d03c2d605cb3a1628b2c67e7ef47"
	Mar 08 03:11:52 functional-131400 kubelet[2853]: I0308 03:11:52.234861    2853 pod_container_deletor.go:80] "Container not found in pod's containers" containerID="2f9be4fd82afb890e3a56fb9e088469ed8b89954c84ae525c04916754fb71c8f"
	Mar 08 03:11:53 functional-131400 kubelet[2853]: I0308 03:11:53.632116    2853 scope.go:117] "RemoveContainer" containerID="fd734a92cb4c37a70f0ef0658c02348328f3be5e7694234b9402d4edb01dfd89"
	Mar 08 03:11:53 functional-131400 kubelet[2853]: I0308 03:11:53.632542    2853 scope.go:117] "RemoveContainer" containerID="e32ada5cc9fbcce30dd48d60f9c19038195449c3cbdf84e41f47d7f66fcc3c6b"
	Mar 08 03:11:53 functional-131400 kubelet[2853]: E0308 03:11:53.633039    2853 pod_workers.go:1300] "Error syncing pod, skipping" err="failed to \"StartContainer\" for \"storage-provisioner\" with CrashLoopBackOff: \"back-off 10s restarting failed container=storage-provisioner pod=storage-provisioner_kube-system(e34e2810-29e2-49ae-9cc6-6ac7a02461c4)\"" pod="kube-system/storage-provisioner" podUID="e34e2810-29e2-49ae-9cc6-6ac7a02461c4"
	Mar 08 03:11:54 functional-131400 kubelet[2853]: I0308 03:11:54.772528    2853 scope.go:117] "RemoveContainer" containerID="e32ada5cc9fbcce30dd48d60f9c19038195449c3cbdf84e41f47d7f66fcc3c6b"
	Mar 08 03:11:54 functional-131400 kubelet[2853]: E0308 03:11:54.772974    2853 pod_workers.go:1300] "Error syncing pod, skipping" err="failed to \"StartContainer\" for \"storage-provisioner\" with CrashLoopBackOff: \"back-off 10s restarting failed container=storage-provisioner pod=storage-provisioner_kube-system(e34e2810-29e2-49ae-9cc6-6ac7a02461c4)\"" pod="kube-system/storage-provisioner" podUID="e34e2810-29e2-49ae-9cc6-6ac7a02461c4"
	Mar 08 03:11:55 functional-131400 kubelet[2853]: E0308 03:11:55.830915    2853 reflector.go:147] object-"kube-system"/"coredns": Failed to watch *v1.ConfigMap: unknown (get configmaps)
	Mar 08 03:11:55 functional-131400 kubelet[2853]: E0308 03:11:55.832628    2853 reflector.go:147] object-"kube-system"/"kube-proxy": Failed to watch *v1.ConfigMap: unknown (get configmaps)
	Mar 08 03:12:06 functional-131400 kubelet[2853]: I0308 03:12:06.539001    2853 scope.go:117] "RemoveContainer" containerID="e32ada5cc9fbcce30dd48d60f9c19038195449c3cbdf84e41f47d7f66fcc3c6b"
	
	
	==> storage-provisioner [035022b3628e] <==
	I0308 03:12:06.817456       1 storage_provisioner.go:116] Initializing the minikube storage provisioner...
	I0308 03:12:06.834605       1 storage_provisioner.go:141] Storage provisioner initialized, now starting service!
	I0308 03:12:06.834725       1 leaderelection.go:243] attempting to acquire leader lease kube-system/k8s.io-minikube-hostpath...
	I0308 03:12:24.251689       1 leaderelection.go:253] successfully acquired lease kube-system/k8s.io-minikube-hostpath
	I0308 03:12:24.252103       1 controller.go:835] Starting provisioner controller k8s.io/minikube-hostpath_functional-131400_d3733031-5bbb-4842-8e8a-b19750aac2eb!
	I0308 03:12:24.252204       1 event.go:282] Event(v1.ObjectReference{Kind:"Endpoints", Namespace:"kube-system", Name:"k8s.io-minikube-hostpath", UID:"da6c7548-1cd9-4cec-b97c-c0d18a887265", APIVersion:"v1", ResourceVersion:"531", FieldPath:""}): type: 'Normal' reason: 'LeaderElection' functional-131400_d3733031-5bbb-4842-8e8a-b19750aac2eb became leader
	I0308 03:12:24.352339       1 controller.go:884] Started provisioner controller k8s.io/minikube-hostpath_functional-131400_d3733031-5bbb-4842-8e8a-b19750aac2eb!
	
	
	==> storage-provisioner [e32ada5cc9fb] <==
	I0308 03:11:51.143262       1 storage_provisioner.go:116] Initializing the minikube storage provisioner...
	F0308 03:11:51.226137       1 main.go:39] error getting server version: Get "https://10.96.0.1:443/version?timeout=32s": dial tcp 10.96.0.1:443: connect: connection refused
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:12:30.393162   15344 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
helpers_test.go:254: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.APIServer}} -p functional-131400 -n functional-131400
helpers_test.go:254: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.APIServer}} -p functional-131400 -n functional-131400: (1.3190034s)
helpers_test.go:261: (dbg) Run:  kubectl --context functional-131400 get po -o=jsonpath={.items[*].metadata.name} -A --field-selector=status.phase!=Running
helpers_test.go:285: <<< TestFunctional/serial/MinikubeKubectlCmdDirectly FAILED: end of post-mortem logs <<<
helpers_test.go:286: ---------------------/post-mortem---------------------------------
--- FAIL: TestFunctional/serial/MinikubeKubectlCmdDirectly (6.45s)

                                                
                                    
x
+
TestFunctional/parallel/ConfigCmd (1.67s)

                                                
                                                
=== RUN   TestFunctional/parallel/ConfigCmd
=== PAUSE TestFunctional/parallel/ConfigCmd

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/ConfigCmd
functional_test.go:1195: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 config unset cpus
functional_test.go:1206: expected config error for "out/minikube-windows-amd64.exe -p functional-131400 config unset cpus" to be -""- but got *"W0308 03:13:35.065487   14636 main.go:291] Unable to resolve the current Docker CLI context \"default\": context \"default\": context not found: open C:\\Users\\jenkins.minikube4\\.docker\\contexts\\meta\\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\\meta.json: The system cannot find the path specified."*
functional_test.go:1195: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 config get cpus
functional_test.go:1195: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p functional-131400 config get cpus: exit status 14 (242.246ms)

                                                
                                                
** stderr ** 
	W0308 03:13:35.353544    8580 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	Error: specified key could not be found in config

                                                
                                                
** /stderr **
functional_test.go:1206: expected config error for "out/minikube-windows-amd64.exe -p functional-131400 config get cpus" to be -"Error: specified key could not be found in config"- but got *"W0308 03:13:35.353544    8580 main.go:291] Unable to resolve the current Docker CLI context \"default\": context \"default\": context not found: open C:\\Users\\jenkins.minikube4\\.docker\\contexts\\meta\\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\\meta.json: The system cannot find the path specified.\nError: specified key could not be found in config"*
functional_test.go:1195: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 config set cpus 2
functional_test.go:1206: expected config error for "out/minikube-windows-amd64.exe -p functional-131400 config set cpus 2" to be -"! These changes will take effect upon a minikube delete and then a minikube start"- but got *"W0308 03:13:35.613518    9240 main.go:291] Unable to resolve the current Docker CLI context \"default\": context \"default\": context not found: open C:\\Users\\jenkins.minikube4\\.docker\\contexts\\meta\\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\\meta.json: The system cannot find the path specified.\n! These changes will take effect upon a minikube delete and then a minikube start"*
functional_test.go:1195: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 config get cpus
functional_test.go:1206: expected config error for "out/minikube-windows-amd64.exe -p functional-131400 config get cpus" to be -""- but got *"W0308 03:13:35.871524    7784 main.go:291] Unable to resolve the current Docker CLI context \"default\": context \"default\": context not found: open C:\\Users\\jenkins.minikube4\\.docker\\contexts\\meta\\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\\meta.json: The system cannot find the path specified."*
functional_test.go:1195: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 config unset cpus
functional_test.go:1206: expected config error for "out/minikube-windows-amd64.exe -p functional-131400 config unset cpus" to be -""- but got *"W0308 03:13:36.158750    7340 main.go:291] Unable to resolve the current Docker CLI context \"default\": context \"default\": context not found: open C:\\Users\\jenkins.minikube4\\.docker\\contexts\\meta\\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\\meta.json: The system cannot find the path specified."*
functional_test.go:1195: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 config get cpus
functional_test.go:1195: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p functional-131400 config get cpus: exit status 14 (267.0086ms)

                                                
                                                
** stderr ** 
	W0308 03:13:36.458758   10216 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	Error: specified key could not be found in config

                                                
                                                
** /stderr **
functional_test.go:1206: expected config error for "out/minikube-windows-amd64.exe -p functional-131400 config get cpus" to be -"Error: specified key could not be found in config"- but got *"W0308 03:13:36.458758   10216 main.go:291] Unable to resolve the current Docker CLI context \"default\": context \"default\": context not found: open C:\\Users\\jenkins.minikube4\\.docker\\contexts\\meta\\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\\meta.json: The system cannot find the path specified.\nError: specified key could not be found in config"*
--- FAIL: TestFunctional/parallel/ConfigCmd (1.67s)

                                                
                                    

Test pass (316/347)

Order passed test Duration
3 TestDownloadOnly/v1.20.0/json-events 11.26
4 TestDownloadOnly/v1.20.0/preload-exists 0.07
7 TestDownloadOnly/v1.20.0/kubectl 0
8 TestDownloadOnly/v1.20.0/LogsDuration 0.36
9 TestDownloadOnly/v1.20.0/DeleteAll 2.49
10 TestDownloadOnly/v1.20.0/DeleteAlwaysSucceeds 1.58
12 TestDownloadOnly/v1.28.4/json-events 7.95
13 TestDownloadOnly/v1.28.4/preload-exists 0
16 TestDownloadOnly/v1.28.4/kubectl 0
17 TestDownloadOnly/v1.28.4/LogsDuration 0.29
18 TestDownloadOnly/v1.28.4/DeleteAll 2.28
19 TestDownloadOnly/v1.28.4/DeleteAlwaysSucceeds 1.3
21 TestDownloadOnly/v1.29.0-rc.2/json-events 8.31
22 TestDownloadOnly/v1.29.0-rc.2/preload-exists 0
25 TestDownloadOnly/v1.29.0-rc.2/kubectl 0
26 TestDownloadOnly/v1.29.0-rc.2/LogsDuration 0.27
27 TestDownloadOnly/v1.29.0-rc.2/DeleteAll 2.03
28 TestDownloadOnly/v1.29.0-rc.2/DeleteAlwaysSucceeds 1.29
29 TestDownloadOnlyKic 3.92
30 TestBinaryMirror 3.35
31 TestOffline 126.85
34 TestAddons/PreSetup/EnablingAddonOnNonExistingCluster 0.25
35 TestAddons/PreSetup/DisablingAddonOnNonExistingCluster 0.26
36 TestAddons/Setup 478.71
40 TestAddons/parallel/InspektorGadget 14.45
41 TestAddons/parallel/MetricsServer 10.09
42 TestAddons/parallel/HelmTiller 25.33
44 TestAddons/parallel/CSI 67.89
45 TestAddons/parallel/Headlamp 32.21
46 TestAddons/parallel/CloudSpanner 7.35
47 TestAddons/parallel/LocalPath 66.41
48 TestAddons/parallel/NvidiaDevicePlugin 7.51
49 TestAddons/parallel/Yakd 6.02
52 TestAddons/serial/GCPAuth/Namespaces 0.36
53 TestAddons/StoppedEnableDisable 14.28
54 TestCertOptions 100.92
56 TestDockerFlags 104.13
57 TestForceSystemdFlag 109.32
58 TestForceSystemdEnv 110.96
65 TestErrorSpam/start 4.06
66 TestErrorSpam/status 4.21
67 TestErrorSpam/pause 4.28
68 TestErrorSpam/unpause 4.86
69 TestErrorSpam/stop 14.27
72 TestFunctional/serial/CopySyncFile 0.03
73 TestFunctional/serial/StartWithProxy 88.81
74 TestFunctional/serial/AuditLog 0
75 TestFunctional/serial/SoftStart 44.22
76 TestFunctional/serial/KubeContext 0.13
77 TestFunctional/serial/KubectlGetPods 0.24
80 TestFunctional/serial/CacheCmd/cache/add_remote 7.02
81 TestFunctional/serial/CacheCmd/cache/add_local 3.81
82 TestFunctional/serial/CacheCmd/cache/CacheDelete 0.25
83 TestFunctional/serial/CacheCmd/cache/list 0.25
84 TestFunctional/serial/CacheCmd/cache/verify_cache_inside_node 1.2
85 TestFunctional/serial/CacheCmd/cache/cache_reload 5.23
86 TestFunctional/serial/CacheCmd/cache/delete 0.51
87 TestFunctional/serial/MinikubeKubectlCmd 0.44
89 TestFunctional/serial/ExtraConfig 47.75
90 TestFunctional/serial/ComponentHealth 0.19
91 TestFunctional/serial/LogsCmd 2.57
92 TestFunctional/serial/LogsFileCmd 2.82
93 TestFunctional/serial/InvalidService 6.34
97 TestFunctional/parallel/DryRun 2.65
98 TestFunctional/parallel/InternationalLanguage 1.15
99 TestFunctional/parallel/StatusCmd 4.75
104 TestFunctional/parallel/AddonsCmd 0.82
105 TestFunctional/parallel/PersistentVolumeClaim 60.99
107 TestFunctional/parallel/SSHCmd 2.5
108 TestFunctional/parallel/CpCmd 7.54
109 TestFunctional/parallel/MySQL 72.16
110 TestFunctional/parallel/FileSync 1.18
111 TestFunctional/parallel/CertSync 7.27
115 TestFunctional/parallel/NodeLabels 0.18
117 TestFunctional/parallel/NonActiveRuntimeDisabled 1.25
119 TestFunctional/parallel/License 3.23
121 TestFunctional/parallel/TunnelCmd/serial/RunSecondTunnel 1.43
122 TestFunctional/parallel/TunnelCmd/serial/StartTunnel 0
124 TestFunctional/parallel/TunnelCmd/serial/WaitService/Setup 16.59
125 TestFunctional/parallel/ServiceCmd/DeployApp 22.46
126 TestFunctional/parallel/TunnelCmd/serial/WaitService/IngressIP 0.19
131 TestFunctional/parallel/TunnelCmd/serial/DeleteTunnel 0.22
132 TestFunctional/parallel/ProfileCmd/profile_not_create 1.86
133 TestFunctional/parallel/ProfileCmd/profile_list 1.85
134 TestFunctional/parallel/ProfileCmd/profile_json_output 1.83
135 TestFunctional/parallel/ServiceCmd/List 1.73
136 TestFunctional/parallel/ServiceCmd/JSONOutput 1.63
137 TestFunctional/parallel/ServiceCmd/HTTPS 15.02
138 TestFunctional/parallel/ImageCommands/ImageListShort 1.06
139 TestFunctional/parallel/ImageCommands/ImageListTable 1.39
140 TestFunctional/parallel/ImageCommands/ImageListJson 1.11
141 TestFunctional/parallel/ImageCommands/ImageListYaml 1.27
142 TestFunctional/parallel/ImageCommands/ImageBuild 9.81
143 TestFunctional/parallel/ImageCommands/Setup 3.89
144 TestFunctional/parallel/ImageCommands/ImageLoadDaemon 13.79
145 TestFunctional/parallel/ServiceCmd/Format 15.02
146 TestFunctional/parallel/ImageCommands/ImageReloadDaemon 5.8
147 TestFunctional/parallel/ImageCommands/ImageTagAndLoadDaemon 12.02
148 TestFunctional/parallel/ServiceCmd/URL 15.02
149 TestFunctional/parallel/ImageCommands/ImageSaveToFile 3.65
150 TestFunctional/parallel/ImageCommands/ImageRemove 1.75
151 TestFunctional/parallel/DockerEnv/powershell 8.52
152 TestFunctional/parallel/ImageCommands/ImageLoadFromFile 5.25
153 TestFunctional/parallel/UpdateContextCmd/no_changes 0.69
154 TestFunctional/parallel/UpdateContextCmd/no_minikube_cluster 0.87
155 TestFunctional/parallel/UpdateContextCmd/no_clusters 0.73
156 TestFunctional/parallel/ImageCommands/ImageSaveDaemon 4.28
157 TestFunctional/parallel/Version/short 0.34
158 TestFunctional/parallel/Version/components 2.71
159 TestFunctional/delete_addon-resizer_images 0.47
160 TestFunctional/delete_my-image_image 0.17
161 TestFunctional/delete_minikube_cached_images 0.18
165 TestMutliControlPlane/serial/StartCluster 243.13
166 TestMutliControlPlane/serial/DeployApp 16.03
167 TestMutliControlPlane/serial/PingHostFromPods 3.53
168 TestMutliControlPlane/serial/AddWorkerNode 64.18
169 TestMutliControlPlane/serial/NodeLabels 0.19
170 TestMutliControlPlane/serial/HAppyAfterClusterStart 3.47
171 TestMutliControlPlane/serial/CopyFile 72.15
172 TestMutliControlPlane/serial/StopSecondaryNode 15.22
173 TestMutliControlPlane/serial/DegradedAfterControlPlaneNodeStop 2.61
174 TestMutliControlPlane/serial/RestartSecondaryNode 96.44
175 TestMutliControlPlane/serial/HAppyAfterSecondaryNodeRestart 3.56
176 TestMutliControlPlane/serial/RestartClusterKeepsNodes 190.31
177 TestMutliControlPlane/serial/DeleteSecondaryNode 23.18
178 TestMutliControlPlane/serial/DegradedAfterSecondaryNodeDelete 2.38
179 TestMutliControlPlane/serial/StopCluster 37.65
180 TestMutliControlPlane/serial/RestartCluster 106.33
181 TestMutliControlPlane/serial/DegradedAfterClusterRestart 2.4
182 TestMutliControlPlane/serial/AddSecondaryNode 93.2
183 TestMutliControlPlane/serial/HAppyAfterSecondaryNodeAdd 3.4
186 TestImageBuild/serial/Setup 70.56
187 TestImageBuild/serial/NormalBuild 3.77
188 TestImageBuild/serial/BuildWithBuildArg 2.47
189 TestImageBuild/serial/BuildWithDockerIgnore 3.03
190 TestImageBuild/serial/BuildWithSpecifiedDockerfile 2.29
194 TestJSONOutput/start/Command 100.42
195 TestJSONOutput/start/Audit 0
197 TestJSONOutput/start/parallel/DistinctCurrentSteps 0
198 TestJSONOutput/start/parallel/IncreasingCurrentSteps 0
200 TestJSONOutput/pause/Command 1.62
201 TestJSONOutput/pause/Audit 0
203 TestJSONOutput/pause/parallel/DistinctCurrentSteps 0
204 TestJSONOutput/pause/parallel/IncreasingCurrentSteps 0
206 TestJSONOutput/unpause/Command 1.42
207 TestJSONOutput/unpause/Audit 0
209 TestJSONOutput/unpause/parallel/DistinctCurrentSteps 0
210 TestJSONOutput/unpause/parallel/IncreasingCurrentSteps 0
212 TestJSONOutput/stop/Command 7.63
213 TestJSONOutput/stop/Audit 0
215 TestJSONOutput/stop/parallel/DistinctCurrentSteps 0
216 TestJSONOutput/stop/parallel/IncreasingCurrentSteps 0
217 TestErrorJSONOutput 1.37
219 TestKicCustomNetwork/create_custom_network 79.23
220 TestKicCustomNetwork/use_default_bridge_network 79.16
221 TestKicExistingNetwork 81.23
222 TestKicCustomSubnet 80.06
223 TestKicStaticIP 81.97
224 TestMainNoArgs 0.24
225 TestMinikubeProfile 154.38
228 TestMountStart/serial/StartWithMountFirst 19.97
229 TestMountStart/serial/VerifyMountFirst 1.11
230 TestMountStart/serial/StartWithMountSecond 18.87
231 TestMountStart/serial/VerifyMountSecond 1.09
232 TestMountStart/serial/DeleteFirst 4
233 TestMountStart/serial/VerifyMountPostDelete 1.12
234 TestMountStart/serial/Stop 2.45
235 TestMountStart/serial/RestartStopped 14
236 TestMountStart/serial/VerifyMountPostStop 1.11
239 TestMultiNode/serial/FreshStart2Nodes 150.73
240 TestMultiNode/serial/DeployApp2Nodes 26.09
241 TestMultiNode/serial/PingHostFrom2Pods 2.42
242 TestMultiNode/serial/AddNode 55.5
243 TestMultiNode/serial/MultiNodeLabels 0.18
244 TestMultiNode/serial/ProfileList 1.54
245 TestMultiNode/serial/CopyFile 39.9
246 TestMultiNode/serial/StopNode 6.61
247 TestMultiNode/serial/StartAfterStop 20.75
248 TestMultiNode/serial/RestartKeepsNodes 124.07
249 TestMultiNode/serial/DeleteNode 13.25
250 TestMultiNode/serial/StopMultiNode 25.14
251 TestMultiNode/serial/RestartMultiNode 44.69
252 TestMultiNode/serial/ValidateNameConflict 76.41
256 TestPreload 192.9
257 TestScheduledStopWindows 139.46
261 TestInsufficientStorage 48.84
262 TestRunningBinaryUpgrade 202.37
264 TestKubernetesUpgrade 321.82
265 TestMissingContainerUpgrade 411.03
267 TestNoKubernetes/serial/StartNoK8sWithVersion 0.36
279 TestNoKubernetes/serial/StartWithK8s 101.35
280 TestNoKubernetes/serial/StartWithStopK8s 33.64
281 TestStoppedBinaryUpgrade/Setup 0.83
282 TestStoppedBinaryUpgrade/Upgrade 351.51
283 TestNoKubernetes/serial/Start 32.7
284 TestNoKubernetes/serial/VerifyK8sNotRunning 1.57
285 TestNoKubernetes/serial/ProfileList 5.73
286 TestNoKubernetes/serial/Stop 3.18
287 TestNoKubernetes/serial/StartNoArgs 28.53
288 TestNoKubernetes/serial/VerifyK8sNotRunningSecond 1.57
289 TestStoppedBinaryUpgrade/MinikubeLogs 2.92
298 TestPause/serial/Start 124.56
299 TestNetworkPlugins/group/auto/Start 135.42
300 TestNetworkPlugins/group/kindnet/Start 141.54
301 TestPause/serial/SecondStartNoReconfiguration 48.12
302 TestNetworkPlugins/group/auto/KubeletFlags 1.41
303 TestNetworkPlugins/group/auto/NetCatPod 20.56
304 TestNetworkPlugins/group/calico/Start 197.6
305 TestPause/serial/Pause 4.09
306 TestNetworkPlugins/group/auto/DNS 2.42
307 TestNetworkPlugins/group/auto/Localhost 0.87
308 TestNetworkPlugins/group/auto/HairPin 0.44
309 TestPause/serial/VerifyStatus 1.51
310 TestPause/serial/Unpause 2.41
311 TestPause/serial/PauseAgain 2.3
312 TestPause/serial/DeletePaused 9.34
313 TestPause/serial/VerifyDeletedResources 4.38
314 TestNetworkPlugins/group/custom-flannel/Start 117.95
315 TestNetworkPlugins/group/kindnet/ControllerPod 5.03
316 TestNetworkPlugins/group/kindnet/KubeletFlags 1.28
317 TestNetworkPlugins/group/kindnet/NetCatPod 20.5
318 TestNetworkPlugins/group/false/Start 121.34
319 TestNetworkPlugins/group/kindnet/DNS 0.45
320 TestNetworkPlugins/group/kindnet/Localhost 0.36
321 TestNetworkPlugins/group/kindnet/HairPin 0.4
322 TestNetworkPlugins/group/custom-flannel/KubeletFlags 1.3
323 TestNetworkPlugins/group/custom-flannel/NetCatPod 21.27
324 TestNetworkPlugins/group/enable-default-cni/Start 104.73
325 TestNetworkPlugins/group/custom-flannel/DNS 1.02
326 TestNetworkPlugins/group/custom-flannel/Localhost 1.3
327 TestNetworkPlugins/group/custom-flannel/HairPin 0.38
328 TestNetworkPlugins/group/calico/ControllerPod 5.07
329 TestNetworkPlugins/group/calico/KubeletFlags 1.41
330 TestNetworkPlugins/group/false/KubeletFlags 1.41
331 TestNetworkPlugins/group/calico/NetCatPod 22.01
332 TestNetworkPlugins/group/false/NetCatPod 21.75
333 TestNetworkPlugins/group/calico/DNS 0.38
334 TestNetworkPlugins/group/calico/Localhost 0.35
335 TestNetworkPlugins/group/false/DNS 0.37
336 TestNetworkPlugins/group/calico/HairPin 0.38
337 TestNetworkPlugins/group/false/Localhost 0.39
338 TestNetworkPlugins/group/false/HairPin 0.37
339 TestNetworkPlugins/group/flannel/Start 142.33
340 TestNetworkPlugins/group/enable-default-cni/KubeletFlags 1.29
341 TestNetworkPlugins/group/enable-default-cni/NetCatPod 27.71
342 TestNetworkPlugins/group/enable-default-cni/DNS 0.45
343 TestNetworkPlugins/group/enable-default-cni/Localhost 0.32
344 TestNetworkPlugins/group/enable-default-cni/HairPin 0.37
345 TestNetworkPlugins/group/bridge/Start 108.57
346 TestNetworkPlugins/group/kubenet/Start 110.1
348 TestStartStop/group/old-k8s-version/serial/FirstStart 183.78
349 TestNetworkPlugins/group/flannel/ControllerPod 6.03
350 TestNetworkPlugins/group/flannel/KubeletFlags 1.49
351 TestNetworkPlugins/group/flannel/NetCatPod 23.74
352 TestNetworkPlugins/group/bridge/KubeletFlags 1.37
353 TestNetworkPlugins/group/bridge/NetCatPod 27.23
354 TestNetworkPlugins/group/kubenet/KubeletFlags 1.84
355 TestNetworkPlugins/group/kubenet/NetCatPod 32.92
356 TestNetworkPlugins/group/flannel/DNS 0.37
357 TestNetworkPlugins/group/flannel/Localhost 0.35
358 TestNetworkPlugins/group/flannel/HairPin 0.38
359 TestNetworkPlugins/group/bridge/DNS 5.33
360 TestNetworkPlugins/group/bridge/Localhost 0.34
361 TestNetworkPlugins/group/bridge/HairPin 0.37
362 TestNetworkPlugins/group/kubenet/DNS 0.38
363 TestNetworkPlugins/group/kubenet/Localhost 0.38
364 TestNetworkPlugins/group/kubenet/HairPin 0.35
366 TestStartStop/group/no-preload/serial/FirstStart 146.69
368 TestStartStop/group/embed-certs/serial/FirstStart 98.42
370 TestStartStop/group/default-k8s-diff-port/serial/FirstStart 129.6
371 TestStartStop/group/old-k8s-version/serial/DeployApp 17.28
372 TestStartStop/group/old-k8s-version/serial/EnableAddonWhileActive 4.12
373 TestStartStop/group/old-k8s-version/serial/Stop 14.8
374 TestStartStop/group/old-k8s-version/serial/EnableAddonAfterStop 1.33
375 TestStartStop/group/old-k8s-version/serial/SecondStart 407.41
376 TestStartStop/group/embed-certs/serial/DeployApp 12.06
377 TestStartStop/group/embed-certs/serial/EnableAddonWhileActive 8.75
378 TestStartStop/group/embed-certs/serial/Stop 13.11
379 TestStartStop/group/embed-certs/serial/EnableAddonAfterStop 1.06
380 TestStartStop/group/embed-certs/serial/SecondStart 291.16
381 TestStartStop/group/default-k8s-diff-port/serial/DeployApp 9.77
382 TestStartStop/group/no-preload/serial/DeployApp 10.92
383 TestStartStop/group/default-k8s-diff-port/serial/EnableAddonWhileActive 3.07
384 TestStartStop/group/default-k8s-diff-port/serial/Stop 13.52
385 TestStartStop/group/no-preload/serial/EnableAddonWhileActive 2.8
386 TestStartStop/group/no-preload/serial/Stop 13.49
387 TestStartStop/group/default-k8s-diff-port/serial/EnableAddonAfterStop 1.48
388 TestStartStop/group/default-k8s-diff-port/serial/SecondStart 287.14
389 TestStartStop/group/no-preload/serial/EnableAddonAfterStop 1.28
390 TestStartStop/group/no-preload/serial/SecondStart 287.8
391 TestStartStop/group/embed-certs/serial/UserAppExistsAfterStop 6.02
392 TestStartStop/group/embed-certs/serial/AddonExistsAfterStop 5.51
393 TestStartStop/group/embed-certs/serial/VerifyKubernetesImages 0.9
394 TestStartStop/group/embed-certs/serial/Pause 9.75
395 TestStartStop/group/default-k8s-diff-port/serial/UserAppExistsAfterStop 6.02
397 TestStartStop/group/newest-cni/serial/FirstStart 86.32
398 TestStartStop/group/no-preload/serial/UserAppExistsAfterStop 6.03
399 TestStartStop/group/default-k8s-diff-port/serial/AddonExistsAfterStop 5.37
400 TestStartStop/group/no-preload/serial/AddonExistsAfterStop 5.4
401 TestStartStop/group/default-k8s-diff-port/serial/VerifyKubernetesImages 0.86
402 TestStartStop/group/default-k8s-diff-port/serial/Pause 10.02
403 TestStartStop/group/no-preload/serial/VerifyKubernetesImages 0.89
404 TestStartStop/group/no-preload/serial/Pause 15.49
405 TestStartStop/group/old-k8s-version/serial/UserAppExistsAfterStop 6.02
406 TestStartStop/group/old-k8s-version/serial/AddonExistsAfterStop 6.53
407 TestStartStop/group/old-k8s-version/serial/VerifyKubernetesImages 0.92
408 TestStartStop/group/old-k8s-version/serial/Pause 9.67
409 TestStartStop/group/newest-cni/serial/DeployApp 0
410 TestStartStop/group/newest-cni/serial/EnableAddonWhileActive 3.08
411 TestStartStop/group/newest-cni/serial/Stop 7.49
412 TestStartStop/group/newest-cni/serial/EnableAddonAfterStop 1.07
413 TestStartStop/group/newest-cni/serial/SecondStart 32.09
414 TestStartStop/group/newest-cni/serial/UserAppExistsAfterStop 0
415 TestStartStop/group/newest-cni/serial/AddonExistsAfterStop 0
416 TestStartStop/group/newest-cni/serial/VerifyKubernetesImages 0.8
417 TestStartStop/group/newest-cni/serial/Pause 8.98
x
+
TestDownloadOnly/v1.20.0/json-events (11.26s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.20.0/json-events
aaa_download_only_test.go:81: (dbg) Run:  out/minikube-windows-amd64.exe start -o=json --download-only -p download-only-085500 --force --alsologtostderr --kubernetes-version=v1.20.0 --container-runtime=docker --driver=docker
aaa_download_only_test.go:81: (dbg) Done: out/minikube-windows-amd64.exe start -o=json --download-only -p download-only-085500 --force --alsologtostderr --kubernetes-version=v1.20.0 --container-runtime=docker --driver=docker: (11.2576334s)
--- PASS: TestDownloadOnly/v1.20.0/json-events (11.26s)

                                                
                                    
x
+
TestDownloadOnly/v1.20.0/preload-exists (0.07s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.20.0/preload-exists
--- PASS: TestDownloadOnly/v1.20.0/preload-exists (0.07s)

                                                
                                    
x
+
TestDownloadOnly/v1.20.0/kubectl (0s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.20.0/kubectl
--- PASS: TestDownloadOnly/v1.20.0/kubectl (0.00s)

                                                
                                    
x
+
TestDownloadOnly/v1.20.0/LogsDuration (0.36s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.20.0/LogsDuration
aaa_download_only_test.go:184: (dbg) Run:  out/minikube-windows-amd64.exe logs -p download-only-085500
aaa_download_only_test.go:184: (dbg) Non-zero exit: out/minikube-windows-amd64.exe logs -p download-only-085500: exit status 85 (360.0961ms)

                                                
                                                
-- stdout --
	
	==> Audit <==
	|---------|--------------------------------|----------------------|-------------------|---------|---------------------|----------|
	| Command |              Args              |       Profile        |       User        | Version |     Start Time      | End Time |
	|---------|--------------------------------|----------------------|-------------------|---------|---------------------|----------|
	| start   | -o=json --download-only        | download-only-085500 | minikube4\jenkins | v1.32.0 | 08 Mar 24 02:56 UTC |          |
	|         | -p download-only-085500        |                      |                   |         |                     |          |
	|         | --force --alsologtostderr      |                      |                   |         |                     |          |
	|         | --kubernetes-version=v1.20.0   |                      |                   |         |                     |          |
	|         | --container-runtime=docker     |                      |                   |         |                     |          |
	|         | --driver=docker                |                      |                   |         |                     |          |
	|---------|--------------------------------|----------------------|-------------------|---------|---------------------|----------|
	
	
	==> Last Start <==
	Log file created at: 2024/03/08 02:56:51
	Running on machine: minikube4
	Binary: Built with gc go1.22.0 for windows/amd64
	Log line format: [IWEF]mmdd hh:mm:ss.uuuuuu threadid file:line] msg
	I0308 02:56:51.646647    2524 out.go:291] Setting OutFile to fd 624 ...
	I0308 02:56:51.647654    2524 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 02:56:51.647654    2524 out.go:304] Setting ErrFile to fd 628...
	I0308 02:56:51.647654    2524 out.go:338] TERM=,COLORTERM=, which probably does not support color
	W0308 02:56:51.659707    2524 root.go:314] Error reading config file at C:\Users\jenkins.minikube4\minikube-integration\.minikube\config\config.json: open C:\Users\jenkins.minikube4\minikube-integration\.minikube\config\config.json: The system cannot find the path specified.
	I0308 02:56:51.668642    2524 out.go:298] Setting JSON to true
	I0308 02:56:51.670644    2524 start.go:129] hostinfo: {"hostname":"minikube4","uptime":7749,"bootTime":1709858862,"procs":207,"os":"windows","platform":"Microsoft Windows 10 Enterprise N","platformFamily":"Standalone Workstation","platformVersion":"10.0.19045.4046 Build 19045.4046","kernelVersion":"10.0.19045.4046 Build 19045.4046","kernelArch":"x86_64","virtualizationSystem":"","virtualizationRole":"","hostId":"df6bfb5f-73f2-4acb-9365-df7854ecbb28"}
	W0308 02:56:51.671639    2524 start.go:137] gopshost.Virtualization returned error: not implemented yet
	I0308 02:56:51.683656    2524 out.go:97] [download-only-085500] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
	W0308 02:56:51.683656    2524 preload.go:294] Failed to list preload files: open C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\preloaded-tarball: The system cannot find the file specified.
	I0308 02:56:51.683656    2524 notify.go:220] Checking for updates...
	I0308 02:56:51.685647    2524 out.go:169] KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	I0308 02:56:51.688650    2524 out.go:169] MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
	I0308 02:56:51.691650    2524 out.go:169] MINIKUBE_LOCATION=18333
	I0308 02:56:51.693649    2524 out.go:169] MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
	W0308 02:56:51.697645    2524 out.go:267] minikube skips various validations when --force is supplied; this may lead to unexpected behavior
	I0308 02:56:51.698650    2524 driver.go:392] Setting default libvirt URI to qemu:///system
	I0308 02:56:51.963111    2524 docker.go:122] docker version: linux-25.0.3:Docker Desktop 4.27.2 (137060)
	I0308 02:56:51.972288    2524 cli_runner.go:164] Run: docker system info --format "{{json .}}"
	I0308 02:56:53.298198    2524 cli_runner.go:217] Completed: docker system info --format "{{json .}}": (1.3258512s)
	I0308 02:56:53.298972    2524 info.go:266] docker info: {ID:c92f2ba1-df38-4a47-85e3-68e1162cada5 Containers:0 ContainersRunning:0 ContainersPaused:0 ContainersStopped:0 Images:0 Driver:overlay2 DriverStatus:[[Backing Filesystem extfs] [Supports d_type true] [Using metacopy false] [Native Overlay Diff true] [userxattr false]] SystemStatus:<nil> Plugins:{Volume:[local] Network:[bridge host ipvlan macvlan null overlay] Authorization:<nil> Log:[awslogs fluentd gcplogs gelf journald json-file local splunk syslog]} MemoryLimit:true SwapLimit:true KernelMemory:false KernelMemoryTCP:true CPUCfsPeriod:true CPUCfsQuota:true CPUShares:true CPUSet:true PidsLimit:true IPv4Forwarding:true BridgeNfIptables:true BridgeNfIP6Tables:true Debug:false NFd:44 OomKillDisable:true NGoroutines:76 SystemTime:2024-03-08 02:56:53.26023026 +0000 UTC LoggingDriver:json-file CgroupDriver:cgroupfs NEventsListener:10 KernelVersion:5.15.133.1-microsoft-standard-WSL2 OperatingSystem:Docker Desktop OSType:linux Architecture:x86_64 Inde
xServerAddress:https://index.docker.io/v1/ RegistryConfig:{AllowNondistributableArtifactsCIDRs:[] AllowNondistributableArtifactsHostnames:[] InsecureRegistryCIDRs:[127.0.0.0/8] IndexConfigs:{DockerIo:{Name:docker.io Mirrors:[] Secure:true Official:true}} Mirrors:[]} NCPU:16 MemTotal:33657516032 GenericResources:<nil> DockerRootDir:/var/lib/docker HTTPProxy:http.docker.internal:3128 HTTPSProxy:http.docker.internal:3128 NoProxy:hubproxy.docker.internal Name:docker-desktop Labels:[] ExperimentalBuild:false ServerVersion:25.0.3 ClusterStore: ClusterAdvertise: Runtimes:{Runc:{Path:runc}} DefaultRuntime:runc Swarm:{NodeID: NodeAddr: LocalNodeState:inactive ControlAvailable:false Error: RemoteManagers:<nil>} LiveRestoreEnabled:false Isolation: InitBinary:docker-init ContainerdCommit:{ID:ae07eda36dd25f8a1b98dfbf587313b99c0190bb Expected:ae07eda36dd25f8a1b98dfbf587313b99c0190bb} RuncCommit:{ID:v1.1.12-0-g51d5e94 Expected:v1.1.12-0-g51d5e94} InitCommit:{ID:de40ad0 Expected:de40ad0} SecurityOptions:[name=seccomp,profile
=unconfined] ProductLicense: Warnings:[WARNING: No blkio throttle.read_bps_device support WARNING: No blkio throttle.write_bps_device support WARNING: No blkio throttle.read_iops_device support WARNING: No blkio throttle.write_iops_device support WARNING: daemon is not using the default seccomp profile] ServerErrors:[] ClientInfo:{Debug:false Plugins:[map[Name:buildx Path:C:\Program Files\Docker\cli-plugins\docker-buildx.exe SchemaVersion:0.1.0 ShortDescription:Docker Buildx Vendor:Docker Inc. Version:v0.12.1-desktop.4] map[Name:compose Path:C:\Program Files\Docker\cli-plugins\docker-compose.exe SchemaVersion:0.1.0 ShortDescription:Docker Compose Vendor:Docker Inc. Version:v2.24.5-desktop.1] map[Name:debug Path:C:\Program Files\Docker\cli-plugins\docker-debug.exe SchemaVersion:0.1.0 ShortDescription:Get a shell into any image or container. Vendor:Docker Inc. Version:0.0.24] map[Name:dev Path:C:\Program Files\Docker\cli-plugins\docker-dev.exe SchemaVersion:0.1.0 ShortDescription:Docker Dev Environments Vendor:
Docker Inc. Version:v0.1.0] map[Name:extension Path:C:\Program Files\Docker\cli-plugins\docker-extension.exe SchemaVersion:0.1.0 ShortDescription:Manages Docker extensions Vendor:Docker Inc. Version:v0.2.21] map[Name:feedback Path:C:\Program Files\Docker\cli-plugins\docker-feedback.exe SchemaVersion:0.1.0 ShortDescription:Provide feedback, right in your terminal! Vendor:Docker Inc. Version:v1.0.4] map[Name:init Path:C:\Program Files\Docker\cli-plugins\docker-init.exe SchemaVersion:0.1.0 ShortDescription:Creates Docker-related starter files for your project Vendor:Docker Inc. Version:v1.0.0] map[Name:sbom Path:C:\Program Files\Docker\cli-plugins\docker-sbom.exe SchemaVersion:0.1.0 ShortDescription:View the packaged-based Software Bill Of Materials (SBOM) for an image URL:https://github.com/docker/sbom-cli-plugin Vendor:Anchore Inc. Version:0.6.0] map[Name:scan Path:C:\Program Files\Docker\cli-plugins\docker-scan.exe SchemaVersion:0.1.0 ShortDescription:Docker Scan Vendor:Docker Inc. Version:v0.26.0] map[Name:s
cout Path:C:\Program Files\Docker\cli-plugins\docker-scout.exe SchemaVersion:0.1.0 ShortDescription:Docker Scout Vendor:Docker Inc. Version:v1.4.1]] Warnings:<nil>}}
	I0308 02:56:53.303230    2524 out.go:97] Using the docker driver based on user configuration
	I0308 02:56:53.303230    2524 start.go:297] selected driver: docker
	I0308 02:56:53.303230    2524 start.go:901] validating driver "docker" against <nil>
	I0308 02:56:53.322712    2524 cli_runner.go:164] Run: docker system info --format "{{json .}}"
	I0308 02:56:53.681910    2524 info.go:266] docker info: {ID:c92f2ba1-df38-4a47-85e3-68e1162cada5 Containers:0 ContainersRunning:0 ContainersPaused:0 ContainersStopped:0 Images:0 Driver:overlay2 DriverStatus:[[Backing Filesystem extfs] [Supports d_type true] [Using metacopy false] [Native Overlay Diff true] [userxattr false]] SystemStatus:<nil> Plugins:{Volume:[local] Network:[bridge host ipvlan macvlan null overlay] Authorization:<nil> Log:[awslogs fluentd gcplogs gelf journald json-file local splunk syslog]} MemoryLimit:true SwapLimit:true KernelMemory:false KernelMemoryTCP:true CPUCfsPeriod:true CPUCfsQuota:true CPUShares:true CPUSet:true PidsLimit:true IPv4Forwarding:true BridgeNfIptables:true BridgeNfIP6Tables:true Debug:false NFd:44 OomKillDisable:true NGoroutines:76 SystemTime:2024-03-08 02:56:53.637659289 +0000 UTC LoggingDriver:json-file CgroupDriver:cgroupfs NEventsListener:10 KernelVersion:5.15.133.1-microsoft-standard-WSL2 OperatingSystem:Docker Desktop OSType:linux Architecture:x86_64 Ind
exServerAddress:https://index.docker.io/v1/ RegistryConfig:{AllowNondistributableArtifactsCIDRs:[] AllowNondistributableArtifactsHostnames:[] InsecureRegistryCIDRs:[127.0.0.0/8] IndexConfigs:{DockerIo:{Name:docker.io Mirrors:[] Secure:true Official:true}} Mirrors:[]} NCPU:16 MemTotal:33657516032 GenericResources:<nil> DockerRootDir:/var/lib/docker HTTPProxy:http.docker.internal:3128 HTTPSProxy:http.docker.internal:3128 NoProxy:hubproxy.docker.internal Name:docker-desktop Labels:[] ExperimentalBuild:false ServerVersion:25.0.3 ClusterStore: ClusterAdvertise: Runtimes:{Runc:{Path:runc}} DefaultRuntime:runc Swarm:{NodeID: NodeAddr: LocalNodeState:inactive ControlAvailable:false Error: RemoteManagers:<nil>} LiveRestoreEnabled:false Isolation: InitBinary:docker-init ContainerdCommit:{ID:ae07eda36dd25f8a1b98dfbf587313b99c0190bb Expected:ae07eda36dd25f8a1b98dfbf587313b99c0190bb} RuncCommit:{ID:v1.1.12-0-g51d5e94 Expected:v1.1.12-0-g51d5e94} InitCommit:{ID:de40ad0 Expected:de40ad0} SecurityOptions:[name=seccomp,profil
e=unconfined] ProductLicense: Warnings:[WARNING: No blkio throttle.read_bps_device support WARNING: No blkio throttle.write_bps_device support WARNING: No blkio throttle.read_iops_device support WARNING: No blkio throttle.write_iops_device support WARNING: daemon is not using the default seccomp profile] ServerErrors:[] ClientInfo:{Debug:false Plugins:[map[Name:buildx Path:C:\Program Files\Docker\cli-plugins\docker-buildx.exe SchemaVersion:0.1.0 ShortDescription:Docker Buildx Vendor:Docker Inc. Version:v0.12.1-desktop.4] map[Name:compose Path:C:\Program Files\Docker\cli-plugins\docker-compose.exe SchemaVersion:0.1.0 ShortDescription:Docker Compose Vendor:Docker Inc. Version:v2.24.5-desktop.1] map[Name:debug Path:C:\Program Files\Docker\cli-plugins\docker-debug.exe SchemaVersion:0.1.0 ShortDescription:Get a shell into any image or container. Vendor:Docker Inc. Version:0.0.24] map[Name:dev Path:C:\Program Files\Docker\cli-plugins\docker-dev.exe SchemaVersion:0.1.0 ShortDescription:Docker Dev Environments Vendor
:Docker Inc. Version:v0.1.0] map[Name:extension Path:C:\Program Files\Docker\cli-plugins\docker-extension.exe SchemaVersion:0.1.0 ShortDescription:Manages Docker extensions Vendor:Docker Inc. Version:v0.2.21] map[Name:feedback Path:C:\Program Files\Docker\cli-plugins\docker-feedback.exe SchemaVersion:0.1.0 ShortDescription:Provide feedback, right in your terminal! Vendor:Docker Inc. Version:v1.0.4] map[Name:init Path:C:\Program Files\Docker\cli-plugins\docker-init.exe SchemaVersion:0.1.0 ShortDescription:Creates Docker-related starter files for your project Vendor:Docker Inc. Version:v1.0.0] map[Name:sbom Path:C:\Program Files\Docker\cli-plugins\docker-sbom.exe SchemaVersion:0.1.0 ShortDescription:View the packaged-based Software Bill Of Materials (SBOM) for an image URL:https://github.com/docker/sbom-cli-plugin Vendor:Anchore Inc. Version:0.6.0] map[Name:scan Path:C:\Program Files\Docker\cli-plugins\docker-scan.exe SchemaVersion:0.1.0 ShortDescription:Docker Scan Vendor:Docker Inc. Version:v0.26.0] map[Name:
scout Path:C:\Program Files\Docker\cli-plugins\docker-scout.exe SchemaVersion:0.1.0 ShortDescription:Docker Scout Vendor:Docker Inc. Version:v1.4.1]] Warnings:<nil>}}
	I0308 02:56:53.682515    2524 start_flags.go:310] no existing cluster config was found, will generate one from the flags 
	I0308 02:56:53.785345    2524 start_flags.go:393] Using suggested 16300MB memory alloc based on sys=65534MB, container=32098MB
	I0308 02:56:53.786218    2524 start_flags.go:929] Wait components to verify : map[apiserver:true system_pods:true]
	I0308 02:56:53.792566    2524 out.go:169] Using Docker Desktop driver with root privileges
	I0308 02:56:53.794782    2524 cni.go:84] Creating CNI manager for ""
	I0308 02:56:53.794782    2524 cni.go:162] CNI unnecessary in this configuration, recommending no CNI
	I0308 02:56:53.794782    2524 start.go:340] cluster config:
	{Name:download-only-085500 KeepContext:false EmbedCerts:false MinikubeISO: KicBaseImage:gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 Memory:16300 CPUs:2 DiskSize:20000 Driver:docker HyperkitVpnKitSock: HyperkitVSockPorts:[] DockerEnv:[] ContainerVolumeMounts:[] InsecureRegistry:[] RegistryMirror:[] HostOnlyCIDR:192.168.59.1/24 HypervVirtualSwitch: HypervUseExternalSwitch:false HypervExternalAdapter: KVMNetwork:default KVMQemuURI:qemu:///system KVMGPU:false KVMHidden:false KVMNUMACount:1 APIServerPort:8443 DockerOpt:[] DisableDriverMounts:false NFSShare:[] NFSSharesRoot:/nfsshares UUID: NoVTXCheck:false DNSProxy:false HostDNSResolver:true HostOnlyNicType:virtio NatNicType:virtio SSHIPAddress: SSHUser:root SSHKey: SSHPort:22 KubernetesConfig:{KubernetesVersion:v1.20.0 ClusterName:download-only-085500 Namespace:default APIServerHAVIP: APIServerName:minikubeCA APIServerNames:[] APIServerIPs:[] DNSDomain:cluster.local C
ontainerRuntime:docker CRISocket: NetworkPlugin: FeatureGates: ServiceCIDR:10.96.0.0/12 ImageRepository: LoadBalancerStartIP: LoadBalancerEndIP: CustomIngressCert: RegistryAliases: ExtraOptions:[] ShouldLoadCachedImages:true EnableDefaultCNI:false CNI:} Nodes:[{Name: IP: Port:8443 KubernetesVersion:v1.20.0 ContainerRuntime:docker ControlPlane:true Worker:true}] Addons:map[] CustomAddonImages:map[] CustomAddonRegistries:map[] VerifyComponents:map[apiserver:true system_pods:true] StartHostTimeout:6m0s ScheduledStop:<nil> ExposedPorts:[] ListenAddress: Network: Subnet: MultiNodeRequested:false ExtraDisks:0 CertExpiration:26280h0m0s Mount:false MountString:C:\Users\jenkins.minikube4:/minikube-host Mount9PVersion:9p2000.L MountGID:docker MountIP: MountMSize:262144 MountOptions:[] MountPort:0 MountType:9p MountUID:docker BinaryMirror: DisableOptimizations:false DisableMetrics:false CustomQemuFirmwarePath: SocketVMnetClientPath: SocketVMnetPath: StaticIP: SSHAuthSock: SSHAgentPID:0 GPUs: AutoPauseInterval:1m0s}
	I0308 02:56:53.796383    2524 out.go:97] Starting "download-only-085500" primary control-plane node in "download-only-085500" cluster
	I0308 02:56:53.797438    2524 cache.go:121] Beginning downloading kic base image for docker with docker
	I0308 02:56:53.799044    2524 out.go:97] Pulling base image v0.0.42-1708944392-18244 ...
	I0308 02:56:53.799044    2524 preload.go:132] Checking if preload exists for k8s version v1.20.0 and runtime docker
	I0308 02:56:53.799044    2524 image.go:79] Checking for gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 in local docker daemon
	I0308 02:56:53.857192    2524 preload.go:119] Found remote preload: https://storage.googleapis.com/minikube-preloaded-volume-tarballs/v18/v1.20.0/preloaded-images-k8s-v18-v1.20.0-docker-overlay2-amd64.tar.lz4
	I0308 02:56:53.857192    2524 cache.go:56] Caching tarball of preloaded images
	I0308 02:56:53.857909    2524 preload.go:132] Checking if preload exists for k8s version v1.20.0 and runtime docker
	I0308 02:56:53.861405    2524 out.go:97] Downloading Kubernetes v1.20.0 preload ...
	I0308 02:56:53.861405    2524 preload.go:237] getting checksum for preloaded-images-k8s-v18-v1.20.0-docker-overlay2-amd64.tar.lz4 ...
	I0308 02:56:53.924214    2524 download.go:107] Downloading: https://storage.googleapis.com/minikube-preloaded-volume-tarballs/v18/v1.20.0/preloaded-images-k8s-v18-v1.20.0-docker-overlay2-amd64.tar.lz4?checksum=md5:9a82241e9b8b4ad2b5cca73108f2c7a3 -> C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\preloaded-tarball\preloaded-images-k8s-v18-v1.20.0-docker-overlay2-amd64.tar.lz4
	I0308 02:56:53.976229    2524 cache.go:149] Downloading gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 to local cache
	I0308 02:56:53.976489    2524 localpath.go:146] windows sanitize: C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\kic\amd64\kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08.tar -> C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\kic\amd64\kicbase-builds_v0.0.42-1708944392-18244@sha256_8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08.tar
	I0308 02:56:53.976802    2524 localpath.go:146] windows sanitize: C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\kic\amd64\kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08.tar -> C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\kic\amd64\kicbase-builds_v0.0.42-1708944392-18244@sha256_8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08.tar
	I0308 02:56:53.976802    2524 image.go:63] Checking for gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 in local cache directory
	I0308 02:56:53.977927    2524 image.go:118] Writing gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 to local cache
	I0308 02:56:57.760067    2524 preload.go:248] saving checksum for preloaded-images-k8s-v18-v1.20.0-docker-overlay2-amd64.tar.lz4 ...
	I0308 02:56:57.760471    2524 preload.go:255] verifying checksum of C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\preloaded-tarball\preloaded-images-k8s-v18-v1.20.0-docker-overlay2-amd64.tar.lz4 ...
	I0308 02:56:58.324482    2524 cache.go:152] successfully saved gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 as a tarball
	I0308 02:56:58.815242    2524 cache.go:59] Finished verifying existence of preloaded tar for v1.20.0 on docker
	I0308 02:56:58.815381    2524 profile.go:142] Saving config to C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\download-only-085500\config.json ...
	I0308 02:56:58.815948    2524 lock.go:35] WriteFile acquiring C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\download-only-085500\config.json: {Name:mk873a0347d285c3a83d7a45dc2a884c67c60ebe Clock:{} Delay:500ms Timeout:1m0s Cancel:<nil>}
	I0308 02:56:58.816620    2524 preload.go:132] Checking if preload exists for k8s version v1.20.0 and runtime docker
	I0308 02:56:58.817766    2524 download.go:107] Downloading: https://dl.k8s.io/release/v1.20.0/bin/windows/amd64/kubectl.exe?checksum=file:https://dl.k8s.io/release/v1.20.0/bin/windows/amd64/kubectl.exe.sha256 -> C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\windows\amd64\v1.20.0/kubectl.exe
	I0308 02:57:01.410052    2524 cache.go:194] Successfully downloaded all kic artifacts
	
	
	* The control-plane node download-only-085500 host does not exist
	  To start a cluster, run: "minikube start -p download-only-085500"

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 02:57:02.926215    3412 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
aaa_download_only_test.go:185: minikube logs failed with error: exit status 85
--- PASS: TestDownloadOnly/v1.20.0/LogsDuration (0.36s)

                                                
                                    
x
+
TestDownloadOnly/v1.20.0/DeleteAll (2.49s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.20.0/DeleteAll
aaa_download_only_test.go:197: (dbg) Run:  out/minikube-windows-amd64.exe delete --all
aaa_download_only_test.go:197: (dbg) Done: out/minikube-windows-amd64.exe delete --all: (2.4860554s)
--- PASS: TestDownloadOnly/v1.20.0/DeleteAll (2.49s)

                                                
                                    
x
+
TestDownloadOnly/v1.20.0/DeleteAlwaysSucceeds (1.58s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.20.0/DeleteAlwaysSucceeds
aaa_download_only_test.go:208: (dbg) Run:  out/minikube-windows-amd64.exe delete -p download-only-085500
aaa_download_only_test.go:208: (dbg) Done: out/minikube-windows-amd64.exe delete -p download-only-085500: (1.5761941s)
--- PASS: TestDownloadOnly/v1.20.0/DeleteAlwaysSucceeds (1.58s)

                                                
                                    
x
+
TestDownloadOnly/v1.28.4/json-events (7.95s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.28.4/json-events
aaa_download_only_test.go:81: (dbg) Run:  out/minikube-windows-amd64.exe start -o=json --download-only -p download-only-155500 --force --alsologtostderr --kubernetes-version=v1.28.4 --container-runtime=docker --driver=docker
aaa_download_only_test.go:81: (dbg) Done: out/minikube-windows-amd64.exe start -o=json --download-only -p download-only-155500 --force --alsologtostderr --kubernetes-version=v1.28.4 --container-runtime=docker --driver=docker: (7.9525756s)
--- PASS: TestDownloadOnly/v1.28.4/json-events (7.95s)

                                                
                                    
x
+
TestDownloadOnly/v1.28.4/preload-exists (0s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.28.4/preload-exists
--- PASS: TestDownloadOnly/v1.28.4/preload-exists (0.00s)

                                                
                                    
x
+
TestDownloadOnly/v1.28.4/kubectl (0s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.28.4/kubectl
--- PASS: TestDownloadOnly/v1.28.4/kubectl (0.00s)

                                                
                                    
x
+
TestDownloadOnly/v1.28.4/LogsDuration (0.29s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.28.4/LogsDuration
aaa_download_only_test.go:184: (dbg) Run:  out/minikube-windows-amd64.exe logs -p download-only-155500
aaa_download_only_test.go:184: (dbg) Non-zero exit: out/minikube-windows-amd64.exe logs -p download-only-155500: exit status 85 (287.75ms)

                                                
                                                
-- stdout --
	
	==> Audit <==
	|---------|--------------------------------|----------------------|-------------------|---------|---------------------|---------------------|
	| Command |              Args              |       Profile        |       User        | Version |     Start Time      |      End Time       |
	|---------|--------------------------------|----------------------|-------------------|---------|---------------------|---------------------|
	| start   | -o=json --download-only        | download-only-085500 | minikube4\jenkins | v1.32.0 | 08 Mar 24 02:56 UTC |                     |
	|         | -p download-only-085500        |                      |                   |         |                     |                     |
	|         | --force --alsologtostderr      |                      |                   |         |                     |                     |
	|         | --kubernetes-version=v1.20.0   |                      |                   |         |                     |                     |
	|         | --container-runtime=docker     |                      |                   |         |                     |                     |
	|         | --driver=docker                |                      |                   |         |                     |                     |
	| delete  | --all                          | minikube             | minikube4\jenkins | v1.32.0 | 08 Mar 24 02:57 UTC | 08 Mar 24 02:57 UTC |
	| delete  | -p download-only-085500        | download-only-085500 | minikube4\jenkins | v1.32.0 | 08 Mar 24 02:57 UTC | 08 Mar 24 02:57 UTC |
	| start   | -o=json --download-only        | download-only-155500 | minikube4\jenkins | v1.32.0 | 08 Mar 24 02:57 UTC |                     |
	|         | -p download-only-155500        |                      |                   |         |                     |                     |
	|         | --force --alsologtostderr      |                      |                   |         |                     |                     |
	|         | --kubernetes-version=v1.28.4   |                      |                   |         |                     |                     |
	|         | --container-runtime=docker     |                      |                   |         |                     |                     |
	|         | --driver=docker                |                      |                   |         |                     |                     |
	|---------|--------------------------------|----------------------|-------------------|---------|---------------------|---------------------|
	
	
	==> Last Start <==
	Log file created at: 2024/03/08 02:57:07
	Running on machine: minikube4
	Binary: Built with gc go1.22.0 for windows/amd64
	Log line format: [IWEF]mmdd hh:mm:ss.uuuuuu threadid file:line] msg
	I0308 02:57:07.411981   10132 out.go:291] Setting OutFile to fd 596 ...
	I0308 02:57:07.415504   10132 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 02:57:07.415504   10132 out.go:304] Setting ErrFile to fd 704...
	I0308 02:57:07.415504   10132 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 02:57:07.436079   10132 out.go:298] Setting JSON to true
	I0308 02:57:07.439143   10132 start.go:129] hostinfo: {"hostname":"minikube4","uptime":7765,"bootTime":1709858862,"procs":208,"os":"windows","platform":"Microsoft Windows 10 Enterprise N","platformFamily":"Standalone Workstation","platformVersion":"10.0.19045.4046 Build 19045.4046","kernelVersion":"10.0.19045.4046 Build 19045.4046","kernelArch":"x86_64","virtualizationSystem":"","virtualizationRole":"","hostId":"df6bfb5f-73f2-4acb-9365-df7854ecbb28"}
	W0308 02:57:07.439242   10132 start.go:137] gopshost.Virtualization returned error: not implemented yet
	I0308 02:57:07.637086   10132 out.go:97] [download-only-155500] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
	I0308 02:57:07.637724   10132 notify.go:220] Checking for updates...
	I0308 02:57:07.639807   10132 out.go:169] KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	I0308 02:57:07.641818   10132 out.go:169] MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
	I0308 02:57:07.644786   10132 out.go:169] MINIKUBE_LOCATION=18333
	I0308 02:57:07.647101   10132 out.go:169] MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
	W0308 02:57:07.651318   10132 out.go:267] minikube skips various validations when --force is supplied; this may lead to unexpected behavior
	I0308 02:57:07.652662   10132 driver.go:392] Setting default libvirt URI to qemu:///system
	I0308 02:57:07.919024   10132 docker.go:122] docker version: linux-25.0.3:Docker Desktop 4.27.2 (137060)
	I0308 02:57:07.929884   10132 cli_runner.go:164] Run: docker system info --format "{{json .}}"
	I0308 02:57:08.276458   10132 info.go:266] docker info: {ID:c92f2ba1-df38-4a47-85e3-68e1162cada5 Containers:0 ContainersRunning:0 ContainersPaused:0 ContainersStopped:0 Images:0 Driver:overlay2 DriverStatus:[[Backing Filesystem extfs] [Supports d_type true] [Using metacopy false] [Native Overlay Diff true] [userxattr false]] SystemStatus:<nil> Plugins:{Volume:[local] Network:[bridge host ipvlan macvlan null overlay] Authorization:<nil> Log:[awslogs fluentd gcplogs gelf journald json-file local splunk syslog]} MemoryLimit:true SwapLimit:true KernelMemory:false KernelMemoryTCP:true CPUCfsPeriod:true CPUCfsQuota:true CPUShares:true CPUSet:true PidsLimit:true IPv4Forwarding:true BridgeNfIptables:true BridgeNfIP6Tables:true Debug:false NFd:44 OomKillDisable:true NGoroutines:76 SystemTime:2024-03-08 02:57:08.235814679 +0000 UTC LoggingDriver:json-file CgroupDriver:cgroupfs NEventsListener:10 KernelVersion:5.15.133.1-microsoft-standard-WSL2 OperatingSystem:Docker Desktop OSType:linux Architecture:x86_64 Ind
exServerAddress:https://index.docker.io/v1/ RegistryConfig:{AllowNondistributableArtifactsCIDRs:[] AllowNondistributableArtifactsHostnames:[] InsecureRegistryCIDRs:[127.0.0.0/8] IndexConfigs:{DockerIo:{Name:docker.io Mirrors:[] Secure:true Official:true}} Mirrors:[]} NCPU:16 MemTotal:33657516032 GenericResources:<nil> DockerRootDir:/var/lib/docker HTTPProxy:http.docker.internal:3128 HTTPSProxy:http.docker.internal:3128 NoProxy:hubproxy.docker.internal Name:docker-desktop Labels:[] ExperimentalBuild:false ServerVersion:25.0.3 ClusterStore: ClusterAdvertise: Runtimes:{Runc:{Path:runc}} DefaultRuntime:runc Swarm:{NodeID: NodeAddr: LocalNodeState:inactive ControlAvailable:false Error: RemoteManagers:<nil>} LiveRestoreEnabled:false Isolation: InitBinary:docker-init ContainerdCommit:{ID:ae07eda36dd25f8a1b98dfbf587313b99c0190bb Expected:ae07eda36dd25f8a1b98dfbf587313b99c0190bb} RuncCommit:{ID:v1.1.12-0-g51d5e94 Expected:v1.1.12-0-g51d5e94} InitCommit:{ID:de40ad0 Expected:de40ad0} SecurityOptions:[name=seccomp,profil
e=unconfined] ProductLicense: Warnings:[WARNING: No blkio throttle.read_bps_device support WARNING: No blkio throttle.write_bps_device support WARNING: No blkio throttle.read_iops_device support WARNING: No blkio throttle.write_iops_device support WARNING: daemon is not using the default seccomp profile] ServerErrors:[] ClientInfo:{Debug:false Plugins:[map[Name:buildx Path:C:\Program Files\Docker\cli-plugins\docker-buildx.exe SchemaVersion:0.1.0 ShortDescription:Docker Buildx Vendor:Docker Inc. Version:v0.12.1-desktop.4] map[Name:compose Path:C:\Program Files\Docker\cli-plugins\docker-compose.exe SchemaVersion:0.1.0 ShortDescription:Docker Compose Vendor:Docker Inc. Version:v2.24.5-desktop.1] map[Name:debug Path:C:\Program Files\Docker\cli-plugins\docker-debug.exe SchemaVersion:0.1.0 ShortDescription:Get a shell into any image or container. Vendor:Docker Inc. Version:0.0.24] map[Name:dev Path:C:\Program Files\Docker\cli-plugins\docker-dev.exe SchemaVersion:0.1.0 ShortDescription:Docker Dev Environments Vendor
:Docker Inc. Version:v0.1.0] map[Name:extension Path:C:\Program Files\Docker\cli-plugins\docker-extension.exe SchemaVersion:0.1.0 ShortDescription:Manages Docker extensions Vendor:Docker Inc. Version:v0.2.21] map[Name:feedback Path:C:\Program Files\Docker\cli-plugins\docker-feedback.exe SchemaVersion:0.1.0 ShortDescription:Provide feedback, right in your terminal! Vendor:Docker Inc. Version:v1.0.4] map[Name:init Path:C:\Program Files\Docker\cli-plugins\docker-init.exe SchemaVersion:0.1.0 ShortDescription:Creates Docker-related starter files for your project Vendor:Docker Inc. Version:v1.0.0] map[Name:sbom Path:C:\Program Files\Docker\cli-plugins\docker-sbom.exe SchemaVersion:0.1.0 ShortDescription:View the packaged-based Software Bill Of Materials (SBOM) for an image URL:https://github.com/docker/sbom-cli-plugin Vendor:Anchore Inc. Version:0.6.0] map[Name:scan Path:C:\Program Files\Docker\cli-plugins\docker-scan.exe SchemaVersion:0.1.0 ShortDescription:Docker Scan Vendor:Docker Inc. Version:v0.26.0] map[Name:
scout Path:C:\Program Files\Docker\cli-plugins\docker-scout.exe SchemaVersion:0.1.0 ShortDescription:Docker Scout Vendor:Docker Inc. Version:v1.4.1]] Warnings:<nil>}}
	I0308 02:57:08.279333   10132 out.go:97] Using the docker driver based on user configuration
	I0308 02:57:08.279367   10132 start.go:297] selected driver: docker
	I0308 02:57:08.279367   10132 start.go:901] validating driver "docker" against <nil>
	I0308 02:57:08.302009   10132 cli_runner.go:164] Run: docker system info --format "{{json .}}"
	I0308 02:57:08.635087   10132 info.go:266] docker info: {ID:c92f2ba1-df38-4a47-85e3-68e1162cada5 Containers:0 ContainersRunning:0 ContainersPaused:0 ContainersStopped:0 Images:0 Driver:overlay2 DriverStatus:[[Backing Filesystem extfs] [Supports d_type true] [Using metacopy false] [Native Overlay Diff true] [userxattr false]] SystemStatus:<nil> Plugins:{Volume:[local] Network:[bridge host ipvlan macvlan null overlay] Authorization:<nil> Log:[awslogs fluentd gcplogs gelf journald json-file local splunk syslog]} MemoryLimit:true SwapLimit:true KernelMemory:false KernelMemoryTCP:true CPUCfsPeriod:true CPUCfsQuota:true CPUShares:true CPUSet:true PidsLimit:true IPv4Forwarding:true BridgeNfIptables:true BridgeNfIP6Tables:true Debug:false NFd:44 OomKillDisable:true NGoroutines:76 SystemTime:2024-03-08 02:57:08.595030284 +0000 UTC LoggingDriver:json-file CgroupDriver:cgroupfs NEventsListener:10 KernelVersion:5.15.133.1-microsoft-standard-WSL2 OperatingSystem:Docker Desktop OSType:linux Architecture:x86_64 Ind
exServerAddress:https://index.docker.io/v1/ RegistryConfig:{AllowNondistributableArtifactsCIDRs:[] AllowNondistributableArtifactsHostnames:[] InsecureRegistryCIDRs:[127.0.0.0/8] IndexConfigs:{DockerIo:{Name:docker.io Mirrors:[] Secure:true Official:true}} Mirrors:[]} NCPU:16 MemTotal:33657516032 GenericResources:<nil> DockerRootDir:/var/lib/docker HTTPProxy:http.docker.internal:3128 HTTPSProxy:http.docker.internal:3128 NoProxy:hubproxy.docker.internal Name:docker-desktop Labels:[] ExperimentalBuild:false ServerVersion:25.0.3 ClusterStore: ClusterAdvertise: Runtimes:{Runc:{Path:runc}} DefaultRuntime:runc Swarm:{NodeID: NodeAddr: LocalNodeState:inactive ControlAvailable:false Error: RemoteManagers:<nil>} LiveRestoreEnabled:false Isolation: InitBinary:docker-init ContainerdCommit:{ID:ae07eda36dd25f8a1b98dfbf587313b99c0190bb Expected:ae07eda36dd25f8a1b98dfbf587313b99c0190bb} RuncCommit:{ID:v1.1.12-0-g51d5e94 Expected:v1.1.12-0-g51d5e94} InitCommit:{ID:de40ad0 Expected:de40ad0} SecurityOptions:[name=seccomp,profil
e=unconfined] ProductLicense: Warnings:[WARNING: No blkio throttle.read_bps_device support WARNING: No blkio throttle.write_bps_device support WARNING: No blkio throttle.read_iops_device support WARNING: No blkio throttle.write_iops_device support WARNING: daemon is not using the default seccomp profile] ServerErrors:[] ClientInfo:{Debug:false Plugins:[map[Name:buildx Path:C:\Program Files\Docker\cli-plugins\docker-buildx.exe SchemaVersion:0.1.0 ShortDescription:Docker Buildx Vendor:Docker Inc. Version:v0.12.1-desktop.4] map[Name:compose Path:C:\Program Files\Docker\cli-plugins\docker-compose.exe SchemaVersion:0.1.0 ShortDescription:Docker Compose Vendor:Docker Inc. Version:v2.24.5-desktop.1] map[Name:debug Path:C:\Program Files\Docker\cli-plugins\docker-debug.exe SchemaVersion:0.1.0 ShortDescription:Get a shell into any image or container. Vendor:Docker Inc. Version:0.0.24] map[Name:dev Path:C:\Program Files\Docker\cli-plugins\docker-dev.exe SchemaVersion:0.1.0 ShortDescription:Docker Dev Environments Vendor
:Docker Inc. Version:v0.1.0] map[Name:extension Path:C:\Program Files\Docker\cli-plugins\docker-extension.exe SchemaVersion:0.1.0 ShortDescription:Manages Docker extensions Vendor:Docker Inc. Version:v0.2.21] map[Name:feedback Path:C:\Program Files\Docker\cli-plugins\docker-feedback.exe SchemaVersion:0.1.0 ShortDescription:Provide feedback, right in your terminal! Vendor:Docker Inc. Version:v1.0.4] map[Name:init Path:C:\Program Files\Docker\cli-plugins\docker-init.exe SchemaVersion:0.1.0 ShortDescription:Creates Docker-related starter files for your project Vendor:Docker Inc. Version:v1.0.0] map[Name:sbom Path:C:\Program Files\Docker\cli-plugins\docker-sbom.exe SchemaVersion:0.1.0 ShortDescription:View the packaged-based Software Bill Of Materials (SBOM) for an image URL:https://github.com/docker/sbom-cli-plugin Vendor:Anchore Inc. Version:0.6.0] map[Name:scan Path:C:\Program Files\Docker\cli-plugins\docker-scan.exe SchemaVersion:0.1.0 ShortDescription:Docker Scan Vendor:Docker Inc. Version:v0.26.0] map[Name:
scout Path:C:\Program Files\Docker\cli-plugins\docker-scout.exe SchemaVersion:0.1.0 ShortDescription:Docker Scout Vendor:Docker Inc. Version:v1.4.1]] Warnings:<nil>}}
	I0308 02:57:08.635184   10132 start_flags.go:310] no existing cluster config was found, will generate one from the flags 
	I0308 02:57:08.682181   10132 start_flags.go:393] Using suggested 16300MB memory alloc based on sys=65534MB, container=32098MB
	I0308 02:57:08.682908   10132 start_flags.go:929] Wait components to verify : map[apiserver:true system_pods:true]
	I0308 02:57:08.730125   10132 out.go:169] Using Docker Desktop driver with root privileges
	I0308 02:57:08.783126   10132 cni.go:84] Creating CNI manager for ""
	I0308 02:57:08.783189   10132 cni.go:158] "docker" driver + "docker" container runtime found on kubernetes v1.24+, recommending bridge
	I0308 02:57:08.783189   10132 start_flags.go:319] Found "bridge CNI" CNI - setting NetworkPlugin=cni
	I0308 02:57:08.783189   10132 start.go:340] cluster config:
	{Name:download-only-155500 KeepContext:false EmbedCerts:false MinikubeISO: KicBaseImage:gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 Memory:16300 CPUs:2 DiskSize:20000 Driver:docker HyperkitVpnKitSock: HyperkitVSockPorts:[] DockerEnv:[] ContainerVolumeMounts:[] InsecureRegistry:[] RegistryMirror:[] HostOnlyCIDR:192.168.59.1/24 HypervVirtualSwitch: HypervUseExternalSwitch:false HypervExternalAdapter: KVMNetwork:default KVMQemuURI:qemu:///system KVMGPU:false KVMHidden:false KVMNUMACount:1 APIServerPort:8443 DockerOpt:[] DisableDriverMounts:false NFSShare:[] NFSSharesRoot:/nfsshares UUID: NoVTXCheck:false DNSProxy:false HostDNSResolver:true HostOnlyNicType:virtio NatNicType:virtio SSHIPAddress: SSHUser:root SSHKey: SSHPort:22 KubernetesConfig:{KubernetesVersion:v1.28.4 ClusterName:download-only-155500 Namespace:default APIServerHAVIP: APIServerName:minikubeCA APIServerNames:[] APIServerIPs:[] DNSDomain:cluster.local C
ontainerRuntime:docker CRISocket: NetworkPlugin:cni FeatureGates: ServiceCIDR:10.96.0.0/12 ImageRepository: LoadBalancerStartIP: LoadBalancerEndIP: CustomIngressCert: RegistryAliases: ExtraOptions:[] ShouldLoadCachedImages:true EnableDefaultCNI:false CNI:} Nodes:[{Name: IP: Port:8443 KubernetesVersion:v1.28.4 ContainerRuntime:docker ControlPlane:true Worker:true}] Addons:map[] CustomAddonImages:map[] CustomAddonRegistries:map[] VerifyComponents:map[apiserver:true system_pods:true] StartHostTimeout:6m0s ScheduledStop:<nil> ExposedPorts:[] ListenAddress: Network: Subnet: MultiNodeRequested:false ExtraDisks:0 CertExpiration:26280h0m0s Mount:false MountString:C:\Users\jenkins.minikube4:/minikube-host Mount9PVersion:9p2000.L MountGID:docker MountIP: MountMSize:262144 MountOptions:[] MountPort:0 MountType:9p MountUID:docker BinaryMirror: DisableOptimizations:false DisableMetrics:false CustomQemuFirmwarePath: SocketVMnetClientPath: SocketVMnetPath: StaticIP: SSHAuthSock: SSHAgentPID:0 GPUs: AutoPauseInterval:1m0s}
	I0308 02:57:08.786050   10132 out.go:97] Starting "download-only-155500" primary control-plane node in "download-only-155500" cluster
	I0308 02:57:08.786050   10132 cache.go:121] Beginning downloading kic base image for docker with docker
	I0308 02:57:08.788222   10132 out.go:97] Pulling base image v0.0.42-1708944392-18244 ...
	I0308 02:57:08.788276   10132 preload.go:132] Checking if preload exists for k8s version v1.28.4 and runtime docker
	I0308 02:57:08.788276   10132 image.go:79] Checking for gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 in local docker daemon
	I0308 02:57:08.834436   10132 preload.go:119] Found remote preload: https://storage.googleapis.com/minikube-preloaded-volume-tarballs/v18/v1.28.4/preloaded-images-k8s-v18-v1.28.4-docker-overlay2-amd64.tar.lz4
	I0308 02:57:08.835349   10132 cache.go:56] Caching tarball of preloaded images
	I0308 02:57:08.835944   10132 preload.go:132] Checking if preload exists for k8s version v1.28.4 and runtime docker
	I0308 02:57:08.838378   10132 out.go:97] Downloading Kubernetes v1.28.4 preload ...
	I0308 02:57:08.838408   10132 preload.go:237] getting checksum for preloaded-images-k8s-v18-v1.28.4-docker-overlay2-amd64.tar.lz4 ...
	I0308 02:57:08.895578   10132 download.go:107] Downloading: https://storage.googleapis.com/minikube-preloaded-volume-tarballs/v18/v1.28.4/preloaded-images-k8s-v18-v1.28.4-docker-overlay2-amd64.tar.lz4?checksum=md5:7ebdea7754e21f51b865dbfc36b53b7d -> C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\preloaded-tarball\preloaded-images-k8s-v18-v1.28.4-docker-overlay2-amd64.tar.lz4
	I0308 02:57:08.976525   10132 cache.go:149] Downloading gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 to local cache
	I0308 02:57:08.976525   10132 localpath.go:146] windows sanitize: C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\kic\amd64\kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08.tar -> C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\kic\amd64\kicbase-builds_v0.0.42-1708944392-18244@sha256_8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08.tar
	I0308 02:57:08.977594   10132 localpath.go:146] windows sanitize: C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\kic\amd64\kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08.tar -> C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\kic\amd64\kicbase-builds_v0.0.42-1708944392-18244@sha256_8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08.tar
	I0308 02:57:08.977594   10132 image.go:63] Checking for gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 in local cache directory
	I0308 02:57:08.977808   10132 image.go:66] Found gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 in local cache directory, skipping pull
	I0308 02:57:08.977808   10132 image.go:105] gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 exists in cache, skipping pull
	I0308 02:57:08.977808   10132 cache.go:152] successfully saved gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 as a tarball
	I0308 02:57:12.305010   10132 preload.go:248] saving checksum for preloaded-images-k8s-v18-v1.28.4-docker-overlay2-amd64.tar.lz4 ...
	I0308 02:57:12.306040   10132 preload.go:255] verifying checksum of C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\preloaded-tarball\preloaded-images-k8s-v18-v1.28.4-docker-overlay2-amd64.tar.lz4 ...
	
	
	* The control-plane node download-only-155500 host does not exist
	  To start a cluster, run: "minikube start -p download-only-155500"

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 02:57:15.294847    6056 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
aaa_download_only_test.go:185: minikube logs failed with error: exit status 85
--- PASS: TestDownloadOnly/v1.28.4/LogsDuration (0.29s)

                                                
                                    
x
+
TestDownloadOnly/v1.28.4/DeleteAll (2.28s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.28.4/DeleteAll
aaa_download_only_test.go:197: (dbg) Run:  out/minikube-windows-amd64.exe delete --all
aaa_download_only_test.go:197: (dbg) Done: out/minikube-windows-amd64.exe delete --all: (2.2832832s)
--- PASS: TestDownloadOnly/v1.28.4/DeleteAll (2.28s)

                                                
                                    
x
+
TestDownloadOnly/v1.28.4/DeleteAlwaysSucceeds (1.3s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.28.4/DeleteAlwaysSucceeds
aaa_download_only_test.go:208: (dbg) Run:  out/minikube-windows-amd64.exe delete -p download-only-155500
aaa_download_only_test.go:208: (dbg) Done: out/minikube-windows-amd64.exe delete -p download-only-155500: (1.2993019s)
--- PASS: TestDownloadOnly/v1.28.4/DeleteAlwaysSucceeds (1.30s)

                                                
                                    
x
+
TestDownloadOnly/v1.29.0-rc.2/json-events (8.31s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.29.0-rc.2/json-events
aaa_download_only_test.go:81: (dbg) Run:  out/minikube-windows-amd64.exe start -o=json --download-only -p download-only-032000 --force --alsologtostderr --kubernetes-version=v1.29.0-rc.2 --container-runtime=docker --driver=docker
aaa_download_only_test.go:81: (dbg) Done: out/minikube-windows-amd64.exe start -o=json --download-only -p download-only-032000 --force --alsologtostderr --kubernetes-version=v1.29.0-rc.2 --container-runtime=docker --driver=docker: (8.3081129s)
--- PASS: TestDownloadOnly/v1.29.0-rc.2/json-events (8.31s)

                                                
                                    
x
+
TestDownloadOnly/v1.29.0-rc.2/preload-exists (0s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.29.0-rc.2/preload-exists
--- PASS: TestDownloadOnly/v1.29.0-rc.2/preload-exists (0.00s)

                                                
                                    
x
+
TestDownloadOnly/v1.29.0-rc.2/kubectl (0s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.29.0-rc.2/kubectl
--- PASS: TestDownloadOnly/v1.29.0-rc.2/kubectl (0.00s)

                                                
                                    
x
+
TestDownloadOnly/v1.29.0-rc.2/LogsDuration (0.27s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.29.0-rc.2/LogsDuration
aaa_download_only_test.go:184: (dbg) Run:  out/minikube-windows-amd64.exe logs -p download-only-032000
aaa_download_only_test.go:184: (dbg) Non-zero exit: out/minikube-windows-amd64.exe logs -p download-only-032000: exit status 85 (265.7314ms)

                                                
                                                
-- stdout --
	
	==> Audit <==
	|---------|-----------------------------------|----------------------|-------------------|---------|---------------------|---------------------|
	| Command |               Args                |       Profile        |       User        | Version |     Start Time      |      End Time       |
	|---------|-----------------------------------|----------------------|-------------------|---------|---------------------|---------------------|
	| start   | -o=json --download-only           | download-only-085500 | minikube4\jenkins | v1.32.0 | 08 Mar 24 02:56 UTC |                     |
	|         | -p download-only-085500           |                      |                   |         |                     |                     |
	|         | --force --alsologtostderr         |                      |                   |         |                     |                     |
	|         | --kubernetes-version=v1.20.0      |                      |                   |         |                     |                     |
	|         | --container-runtime=docker        |                      |                   |         |                     |                     |
	|         | --driver=docker                   |                      |                   |         |                     |                     |
	| delete  | --all                             | minikube             | minikube4\jenkins | v1.32.0 | 08 Mar 24 02:57 UTC | 08 Mar 24 02:57 UTC |
	| delete  | -p download-only-085500           | download-only-085500 | minikube4\jenkins | v1.32.0 | 08 Mar 24 02:57 UTC | 08 Mar 24 02:57 UTC |
	| start   | -o=json --download-only           | download-only-155500 | minikube4\jenkins | v1.32.0 | 08 Mar 24 02:57 UTC |                     |
	|         | -p download-only-155500           |                      |                   |         |                     |                     |
	|         | --force --alsologtostderr         |                      |                   |         |                     |                     |
	|         | --kubernetes-version=v1.28.4      |                      |                   |         |                     |                     |
	|         | --container-runtime=docker        |                      |                   |         |                     |                     |
	|         | --driver=docker                   |                      |                   |         |                     |                     |
	| delete  | --all                             | minikube             | minikube4\jenkins | v1.32.0 | 08 Mar 24 02:57 UTC | 08 Mar 24 02:57 UTC |
	| delete  | -p download-only-155500           | download-only-155500 | minikube4\jenkins | v1.32.0 | 08 Mar 24 02:57 UTC | 08 Mar 24 02:57 UTC |
	| start   | -o=json --download-only           | download-only-032000 | minikube4\jenkins | v1.32.0 | 08 Mar 24 02:57 UTC |                     |
	|         | -p download-only-032000           |                      |                   |         |                     |                     |
	|         | --force --alsologtostderr         |                      |                   |         |                     |                     |
	|         | --kubernetes-version=v1.29.0-rc.2 |                      |                   |         |                     |                     |
	|         | --container-runtime=docker        |                      |                   |         |                     |                     |
	|         | --driver=docker                   |                      |                   |         |                     |                     |
	|---------|-----------------------------------|----------------------|-------------------|---------|---------------------|---------------------|
	
	
	==> Last Start <==
	Log file created at: 2024/03/08 02:57:19
	Running on machine: minikube4
	Binary: Built with gc go1.22.0 for windows/amd64
	Log line format: [IWEF]mmdd hh:mm:ss.uuuuuu threadid file:line] msg
	I0308 02:57:19.246554   11340 out.go:291] Setting OutFile to fd 732 ...
	I0308 02:57:19.247097   11340 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 02:57:19.247097   11340 out.go:304] Setting ErrFile to fd 608...
	I0308 02:57:19.247097   11340 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 02:57:19.267868   11340 out.go:298] Setting JSON to true
	I0308 02:57:19.270341   11340 start.go:129] hostinfo: {"hostname":"minikube4","uptime":7777,"bootTime":1709858862,"procs":208,"os":"windows","platform":"Microsoft Windows 10 Enterprise N","platformFamily":"Standalone Workstation","platformVersion":"10.0.19045.4046 Build 19045.4046","kernelVersion":"10.0.19045.4046 Build 19045.4046","kernelArch":"x86_64","virtualizationSystem":"","virtualizationRole":"","hostId":"df6bfb5f-73f2-4acb-9365-df7854ecbb28"}
	W0308 02:57:19.270341   11340 start.go:137] gopshost.Virtualization returned error: not implemented yet
	I0308 02:57:19.275236   11340 out.go:97] [download-only-032000] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
	I0308 02:57:19.278289   11340 out.go:169] KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	I0308 02:57:19.275236   11340 notify.go:220] Checking for updates...
	I0308 02:57:19.282860   11340 out.go:169] MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
	I0308 02:57:19.285090   11340 out.go:169] MINIKUBE_LOCATION=18333
	I0308 02:57:19.286728   11340 out.go:169] MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
	W0308 02:57:19.291303   11340 out.go:267] minikube skips various validations when --force is supplied; this may lead to unexpected behavior
	I0308 02:57:19.292584   11340 driver.go:392] Setting default libvirt URI to qemu:///system
	I0308 02:57:19.574331   11340 docker.go:122] docker version: linux-25.0.3:Docker Desktop 4.27.2 (137060)
	I0308 02:57:19.584562   11340 cli_runner.go:164] Run: docker system info --format "{{json .}}"
	I0308 02:57:19.933681   11340 info.go:266] docker info: {ID:c92f2ba1-df38-4a47-85e3-68e1162cada5 Containers:0 ContainersRunning:0 ContainersPaused:0 ContainersStopped:0 Images:0 Driver:overlay2 DriverStatus:[[Backing Filesystem extfs] [Supports d_type true] [Using metacopy false] [Native Overlay Diff true] [userxattr false]] SystemStatus:<nil> Plugins:{Volume:[local] Network:[bridge host ipvlan macvlan null overlay] Authorization:<nil> Log:[awslogs fluentd gcplogs gelf journald json-file local splunk syslog]} MemoryLimit:true SwapLimit:true KernelMemory:false KernelMemoryTCP:true CPUCfsPeriod:true CPUCfsQuota:true CPUShares:true CPUSet:true PidsLimit:true IPv4Forwarding:true BridgeNfIptables:true BridgeNfIP6Tables:true Debug:false NFd:44 OomKillDisable:true NGoroutines:76 SystemTime:2024-03-08 02:57:19.889830798 +0000 UTC LoggingDriver:json-file CgroupDriver:cgroupfs NEventsListener:10 KernelVersion:5.15.133.1-microsoft-standard-WSL2 OperatingSystem:Docker Desktop OSType:linux Architecture:x86_64 Ind
exServerAddress:https://index.docker.io/v1/ RegistryConfig:{AllowNondistributableArtifactsCIDRs:[] AllowNondistributableArtifactsHostnames:[] InsecureRegistryCIDRs:[127.0.0.0/8] IndexConfigs:{DockerIo:{Name:docker.io Mirrors:[] Secure:true Official:true}} Mirrors:[]} NCPU:16 MemTotal:33657516032 GenericResources:<nil> DockerRootDir:/var/lib/docker HTTPProxy:http.docker.internal:3128 HTTPSProxy:http.docker.internal:3128 NoProxy:hubproxy.docker.internal Name:docker-desktop Labels:[] ExperimentalBuild:false ServerVersion:25.0.3 ClusterStore: ClusterAdvertise: Runtimes:{Runc:{Path:runc}} DefaultRuntime:runc Swarm:{NodeID: NodeAddr: LocalNodeState:inactive ControlAvailable:false Error: RemoteManagers:<nil>} LiveRestoreEnabled:false Isolation: InitBinary:docker-init ContainerdCommit:{ID:ae07eda36dd25f8a1b98dfbf587313b99c0190bb Expected:ae07eda36dd25f8a1b98dfbf587313b99c0190bb} RuncCommit:{ID:v1.1.12-0-g51d5e94 Expected:v1.1.12-0-g51d5e94} InitCommit:{ID:de40ad0 Expected:de40ad0} SecurityOptions:[name=seccomp,profil
e=unconfined] ProductLicense: Warnings:[WARNING: No blkio throttle.read_bps_device support WARNING: No blkio throttle.write_bps_device support WARNING: No blkio throttle.read_iops_device support WARNING: No blkio throttle.write_iops_device support WARNING: daemon is not using the default seccomp profile] ServerErrors:[] ClientInfo:{Debug:false Plugins:[map[Name:buildx Path:C:\Program Files\Docker\cli-plugins\docker-buildx.exe SchemaVersion:0.1.0 ShortDescription:Docker Buildx Vendor:Docker Inc. Version:v0.12.1-desktop.4] map[Name:compose Path:C:\Program Files\Docker\cli-plugins\docker-compose.exe SchemaVersion:0.1.0 ShortDescription:Docker Compose Vendor:Docker Inc. Version:v2.24.5-desktop.1] map[Name:debug Path:C:\Program Files\Docker\cli-plugins\docker-debug.exe SchemaVersion:0.1.0 ShortDescription:Get a shell into any image or container. Vendor:Docker Inc. Version:0.0.24] map[Name:dev Path:C:\Program Files\Docker\cli-plugins\docker-dev.exe SchemaVersion:0.1.0 ShortDescription:Docker Dev Environments Vendor
:Docker Inc. Version:v0.1.0] map[Name:extension Path:C:\Program Files\Docker\cli-plugins\docker-extension.exe SchemaVersion:0.1.0 ShortDescription:Manages Docker extensions Vendor:Docker Inc. Version:v0.2.21] map[Name:feedback Path:C:\Program Files\Docker\cli-plugins\docker-feedback.exe SchemaVersion:0.1.0 ShortDescription:Provide feedback, right in your terminal! Vendor:Docker Inc. Version:v1.0.4] map[Name:init Path:C:\Program Files\Docker\cli-plugins\docker-init.exe SchemaVersion:0.1.0 ShortDescription:Creates Docker-related starter files for your project Vendor:Docker Inc. Version:v1.0.0] map[Name:sbom Path:C:\Program Files\Docker\cli-plugins\docker-sbom.exe SchemaVersion:0.1.0 ShortDescription:View the packaged-based Software Bill Of Materials (SBOM) for an image URL:https://github.com/docker/sbom-cli-plugin Vendor:Anchore Inc. Version:0.6.0] map[Name:scan Path:C:\Program Files\Docker\cli-plugins\docker-scan.exe SchemaVersion:0.1.0 ShortDescription:Docker Scan Vendor:Docker Inc. Version:v0.26.0] map[Name:
scout Path:C:\Program Files\Docker\cli-plugins\docker-scout.exe SchemaVersion:0.1.0 ShortDescription:Docker Scout Vendor:Docker Inc. Version:v1.4.1]] Warnings:<nil>}}
	I0308 02:57:20.082018   11340 out.go:97] Using the docker driver based on user configuration
	I0308 02:57:20.082018   11340 start.go:297] selected driver: docker
	I0308 02:57:20.082227   11340 start.go:901] validating driver "docker" against <nil>
	I0308 02:57:20.098613   11340 cli_runner.go:164] Run: docker system info --format "{{json .}}"
	I0308 02:57:20.451136   11340 info.go:266] docker info: {ID:c92f2ba1-df38-4a47-85e3-68e1162cada5 Containers:0 ContainersRunning:0 ContainersPaused:0 ContainersStopped:0 Images:0 Driver:overlay2 DriverStatus:[[Backing Filesystem extfs] [Supports d_type true] [Using metacopy false] [Native Overlay Diff true] [userxattr false]] SystemStatus:<nil> Plugins:{Volume:[local] Network:[bridge host ipvlan macvlan null overlay] Authorization:<nil> Log:[awslogs fluentd gcplogs gelf journald json-file local splunk syslog]} MemoryLimit:true SwapLimit:true KernelMemory:false KernelMemoryTCP:true CPUCfsPeriod:true CPUCfsQuota:true CPUShares:true CPUSet:true PidsLimit:true IPv4Forwarding:true BridgeNfIptables:true BridgeNfIP6Tables:true Debug:false NFd:44 OomKillDisable:true NGoroutines:76 SystemTime:2024-03-08 02:57:20.397535465 +0000 UTC LoggingDriver:json-file CgroupDriver:cgroupfs NEventsListener:10 KernelVersion:5.15.133.1-microsoft-standard-WSL2 OperatingSystem:Docker Desktop OSType:linux Architecture:x86_64 Ind
exServerAddress:https://index.docker.io/v1/ RegistryConfig:{AllowNondistributableArtifactsCIDRs:[] AllowNondistributableArtifactsHostnames:[] InsecureRegistryCIDRs:[127.0.0.0/8] IndexConfigs:{DockerIo:{Name:docker.io Mirrors:[] Secure:true Official:true}} Mirrors:[]} NCPU:16 MemTotal:33657516032 GenericResources:<nil> DockerRootDir:/var/lib/docker HTTPProxy:http.docker.internal:3128 HTTPSProxy:http.docker.internal:3128 NoProxy:hubproxy.docker.internal Name:docker-desktop Labels:[] ExperimentalBuild:false ServerVersion:25.0.3 ClusterStore: ClusterAdvertise: Runtimes:{Runc:{Path:runc}} DefaultRuntime:runc Swarm:{NodeID: NodeAddr: LocalNodeState:inactive ControlAvailable:false Error: RemoteManagers:<nil>} LiveRestoreEnabled:false Isolation: InitBinary:docker-init ContainerdCommit:{ID:ae07eda36dd25f8a1b98dfbf587313b99c0190bb Expected:ae07eda36dd25f8a1b98dfbf587313b99c0190bb} RuncCommit:{ID:v1.1.12-0-g51d5e94 Expected:v1.1.12-0-g51d5e94} InitCommit:{ID:de40ad0 Expected:de40ad0} SecurityOptions:[name=seccomp,profil
e=unconfined] ProductLicense: Warnings:[WARNING: No blkio throttle.read_bps_device support WARNING: No blkio throttle.write_bps_device support WARNING: No blkio throttle.read_iops_device support WARNING: No blkio throttle.write_iops_device support WARNING: daemon is not using the default seccomp profile] ServerErrors:[] ClientInfo:{Debug:false Plugins:[map[Name:buildx Path:C:\Program Files\Docker\cli-plugins\docker-buildx.exe SchemaVersion:0.1.0 ShortDescription:Docker Buildx Vendor:Docker Inc. Version:v0.12.1-desktop.4] map[Name:compose Path:C:\Program Files\Docker\cli-plugins\docker-compose.exe SchemaVersion:0.1.0 ShortDescription:Docker Compose Vendor:Docker Inc. Version:v2.24.5-desktop.1] map[Name:debug Path:C:\Program Files\Docker\cli-plugins\docker-debug.exe SchemaVersion:0.1.0 ShortDescription:Get a shell into any image or container. Vendor:Docker Inc. Version:0.0.24] map[Name:dev Path:C:\Program Files\Docker\cli-plugins\docker-dev.exe SchemaVersion:0.1.0 ShortDescription:Docker Dev Environments Vendor
:Docker Inc. Version:v0.1.0] map[Name:extension Path:C:\Program Files\Docker\cli-plugins\docker-extension.exe SchemaVersion:0.1.0 ShortDescription:Manages Docker extensions Vendor:Docker Inc. Version:v0.2.21] map[Name:feedback Path:C:\Program Files\Docker\cli-plugins\docker-feedback.exe SchemaVersion:0.1.0 ShortDescription:Provide feedback, right in your terminal! Vendor:Docker Inc. Version:v1.0.4] map[Name:init Path:C:\Program Files\Docker\cli-plugins\docker-init.exe SchemaVersion:0.1.0 ShortDescription:Creates Docker-related starter files for your project Vendor:Docker Inc. Version:v1.0.0] map[Name:sbom Path:C:\Program Files\Docker\cli-plugins\docker-sbom.exe SchemaVersion:0.1.0 ShortDescription:View the packaged-based Software Bill Of Materials (SBOM) for an image URL:https://github.com/docker/sbom-cli-plugin Vendor:Anchore Inc. Version:0.6.0] map[Name:scan Path:C:\Program Files\Docker\cli-plugins\docker-scan.exe SchemaVersion:0.1.0 ShortDescription:Docker Scan Vendor:Docker Inc. Version:v0.26.0] map[Name:
scout Path:C:\Program Files\Docker\cli-plugins\docker-scout.exe SchemaVersion:0.1.0 ShortDescription:Docker Scout Vendor:Docker Inc. Version:v1.4.1]] Warnings:<nil>}}
	I0308 02:57:20.451136   11340 start_flags.go:310] no existing cluster config was found, will generate one from the flags 
	I0308 02:57:20.497397   11340 start_flags.go:393] Using suggested 16300MB memory alloc based on sys=65534MB, container=32098MB
	I0308 02:57:20.498788   11340 start_flags.go:929] Wait components to verify : map[apiserver:true system_pods:true]
	I0308 02:57:20.735706   11340 out.go:169] Using Docker Desktop driver with root privileges
	I0308 02:57:20.741370   11340 cni.go:84] Creating CNI manager for ""
	I0308 02:57:20.742272   11340 cni.go:158] "docker" driver + "docker" container runtime found on kubernetes v1.24+, recommending bridge
	I0308 02:57:20.742383   11340 start_flags.go:319] Found "bridge CNI" CNI - setting NetworkPlugin=cni
	I0308 02:57:20.742621   11340 start.go:340] cluster config:
	{Name:download-only-032000 KeepContext:false EmbedCerts:false MinikubeISO: KicBaseImage:gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 Memory:16300 CPUs:2 DiskSize:20000 Driver:docker HyperkitVpnKitSock: HyperkitVSockPorts:[] DockerEnv:[] ContainerVolumeMounts:[] InsecureRegistry:[] RegistryMirror:[] HostOnlyCIDR:192.168.59.1/24 HypervVirtualSwitch: HypervUseExternalSwitch:false HypervExternalAdapter: KVMNetwork:default KVMQemuURI:qemu:///system KVMGPU:false KVMHidden:false KVMNUMACount:1 APIServerPort:8443 DockerOpt:[] DisableDriverMounts:false NFSShare:[] NFSSharesRoot:/nfsshares UUID: NoVTXCheck:false DNSProxy:false HostDNSResolver:true HostOnlyNicType:virtio NatNicType:virtio SSHIPAddress: SSHUser:root SSHKey: SSHPort:22 KubernetesConfig:{KubernetesVersion:v1.29.0-rc.2 ClusterName:download-only-032000 Namespace:default APIServerHAVIP: APIServerName:minikubeCA APIServerNames:[] APIServerIPs:[] DNSDomain:cluster.lo
cal ContainerRuntime:docker CRISocket: NetworkPlugin:cni FeatureGates: ServiceCIDR:10.96.0.0/12 ImageRepository: LoadBalancerStartIP: LoadBalancerEndIP: CustomIngressCert: RegistryAliases: ExtraOptions:[] ShouldLoadCachedImages:true EnableDefaultCNI:false CNI:} Nodes:[{Name: IP: Port:8443 KubernetesVersion:v1.29.0-rc.2 ContainerRuntime:docker ControlPlane:true Worker:true}] Addons:map[] CustomAddonImages:map[] CustomAddonRegistries:map[] VerifyComponents:map[apiserver:true system_pods:true] StartHostTimeout:6m0s ScheduledStop:<nil> ExposedPorts:[] ListenAddress: Network: Subnet: MultiNodeRequested:false ExtraDisks:0 CertExpiration:26280h0m0s Mount:false MountString:C:\Users\jenkins.minikube4:/minikube-host Mount9PVersion:9p2000.L MountGID:docker MountIP: MountMSize:262144 MountOptions:[] MountPort:0 MountType:9p MountUID:docker BinaryMirror: DisableOptimizations:false DisableMetrics:false CustomQemuFirmwarePath: SocketVMnetClientPath: SocketVMnetPath: StaticIP: SSHAuthSock: SSHAgentPID:0 GPUs: AutoPauseInterv
al:1m0s}
	I0308 02:57:20.744849   11340 out.go:97] Starting "download-only-032000" primary control-plane node in "download-only-032000" cluster
	I0308 02:57:20.744920   11340 cache.go:121] Beginning downloading kic base image for docker with docker
	I0308 02:57:20.746608   11340 out.go:97] Pulling base image v0.0.42-1708944392-18244 ...
	I0308 02:57:20.746608   11340 preload.go:132] Checking if preload exists for k8s version v1.29.0-rc.2 and runtime docker
	I0308 02:57:20.747243   11340 image.go:79] Checking for gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 in local docker daemon
	I0308 02:57:20.811548   11340 preload.go:119] Found remote preload: https://storage.googleapis.com/minikube-preloaded-volume-tarballs/v18/v1.29.0-rc.2/preloaded-images-k8s-v18-v1.29.0-rc.2-docker-overlay2-amd64.tar.lz4
	I0308 02:57:20.812375   11340 cache.go:56] Caching tarball of preloaded images
	I0308 02:57:20.812475   11340 preload.go:132] Checking if preload exists for k8s version v1.29.0-rc.2 and runtime docker
	I0308 02:57:20.815073   11340 out.go:97] Downloading Kubernetes v1.29.0-rc.2 preload ...
	I0308 02:57:20.815110   11340 preload.go:237] getting checksum for preloaded-images-k8s-v18-v1.29.0-rc.2-docker-overlay2-amd64.tar.lz4 ...
	I0308 02:57:20.888451   11340 download.go:107] Downloading: https://storage.googleapis.com/minikube-preloaded-volume-tarballs/v18/v1.29.0-rc.2/preloaded-images-k8s-v18-v1.29.0-rc.2-docker-overlay2-amd64.tar.lz4?checksum=md5:47acda482c3add5b56147c92b8d7f468 -> C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\preloaded-tarball\preloaded-images-k8s-v18-v1.29.0-rc.2-docker-overlay2-amd64.tar.lz4
	I0308 02:57:20.922958   11340 cache.go:149] Downloading gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 to local cache
	I0308 02:57:20.922958   11340 localpath.go:146] windows sanitize: C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\kic\amd64\kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08.tar -> C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\kic\amd64\kicbase-builds_v0.0.42-1708944392-18244@sha256_8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08.tar
	I0308 02:57:20.922958   11340 localpath.go:146] windows sanitize: C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\kic\amd64\kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08.tar -> C:\Users\jenkins.minikube4\minikube-integration\.minikube\cache\kic\amd64\kicbase-builds_v0.0.42-1708944392-18244@sha256_8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08.tar
	I0308 02:57:20.922958   11340 image.go:63] Checking for gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 in local cache directory
	I0308 02:57:20.923495   11340 image.go:66] Found gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 in local cache directory, skipping pull
	I0308 02:57:20.923625   11340 image.go:105] gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 exists in cache, skipping pull
	I0308 02:57:20.923625   11340 cache.go:152] successfully saved gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 as a tarball
	
	
	* The control-plane node download-only-032000 host does not exist
	  To start a cluster, run: "minikube start -p download-only-032000"

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 02:57:27.479256   14012 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
aaa_download_only_test.go:185: minikube logs failed with error: exit status 85
--- PASS: TestDownloadOnly/v1.29.0-rc.2/LogsDuration (0.27s)

                                                
                                    
x
+
TestDownloadOnly/v1.29.0-rc.2/DeleteAll (2.03s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.29.0-rc.2/DeleteAll
aaa_download_only_test.go:197: (dbg) Run:  out/minikube-windows-amd64.exe delete --all
aaa_download_only_test.go:197: (dbg) Done: out/minikube-windows-amd64.exe delete --all: (2.0256989s)
--- PASS: TestDownloadOnly/v1.29.0-rc.2/DeleteAll (2.03s)

                                                
                                    
x
+
TestDownloadOnly/v1.29.0-rc.2/DeleteAlwaysSucceeds (1.29s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.29.0-rc.2/DeleteAlwaysSucceeds
aaa_download_only_test.go:208: (dbg) Run:  out/minikube-windows-amd64.exe delete -p download-only-032000
aaa_download_only_test.go:208: (dbg) Done: out/minikube-windows-amd64.exe delete -p download-only-032000: (1.2866734s)
--- PASS: TestDownloadOnly/v1.29.0-rc.2/DeleteAlwaysSucceeds (1.29s)

                                                
                                    
x
+
TestDownloadOnlyKic (3.92s)

                                                
                                                
=== RUN   TestDownloadOnlyKic
aaa_download_only_test.go:232: (dbg) Run:  out/minikube-windows-amd64.exe start --download-only -p download-docker-764400 --alsologtostderr --driver=docker
aaa_download_only_test.go:232: (dbg) Done: out/minikube-windows-amd64.exe start --download-only -p download-docker-764400 --alsologtostderr --driver=docker: (1.5568841s)
helpers_test.go:175: Cleaning up "download-docker-764400" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p download-docker-764400
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p download-docker-764400: (1.3211776s)
--- PASS: TestDownloadOnlyKic (3.92s)

                                                
                                    
x
+
TestBinaryMirror (3.35s)

                                                
                                                
=== RUN   TestBinaryMirror
aaa_download_only_test.go:314: (dbg) Run:  out/minikube-windows-amd64.exe start --download-only -p binary-mirror-741900 --alsologtostderr --binary-mirror http://127.0.0.1:62629 --driver=docker
aaa_download_only_test.go:314: (dbg) Done: out/minikube-windows-amd64.exe start --download-only -p binary-mirror-741900 --alsologtostderr --binary-mirror http://127.0.0.1:62629 --driver=docker: (1.7569163s)
helpers_test.go:175: Cleaning up "binary-mirror-741900" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p binary-mirror-741900
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p binary-mirror-741900: (1.3269458s)
--- PASS: TestBinaryMirror (3.35s)

                                                
                                    
x
+
TestOffline (126.85s)

                                                
                                                
=== RUN   TestOffline
=== PAUSE TestOffline

                                                
                                                

                                                
                                                
=== CONT  TestOffline
aab_offline_test.go:55: (dbg) Run:  out/minikube-windows-amd64.exe start -p offline-docker-396900 --alsologtostderr -v=1 --memory=2048 --wait=true --driver=docker
aab_offline_test.go:55: (dbg) Done: out/minikube-windows-amd64.exe start -p offline-docker-396900 --alsologtostderr -v=1 --memory=2048 --wait=true --driver=docker: (1m58.6720926s)
helpers_test.go:175: Cleaning up "offline-docker-396900" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p offline-docker-396900
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p offline-docker-396900: (8.1821134s)
--- PASS: TestOffline (126.85s)

                                                
                                    
x
+
TestAddons/PreSetup/EnablingAddonOnNonExistingCluster (0.25s)

                                                
                                                
=== RUN   TestAddons/PreSetup/EnablingAddonOnNonExistingCluster
=== PAUSE TestAddons/PreSetup/EnablingAddonOnNonExistingCluster

                                                
                                                

                                                
                                                
=== CONT  TestAddons/PreSetup/EnablingAddonOnNonExistingCluster
addons_test.go:928: (dbg) Run:  out/minikube-windows-amd64.exe addons enable dashboard -p addons-215800
addons_test.go:928: (dbg) Non-zero exit: out/minikube-windows-amd64.exe addons enable dashboard -p addons-215800: exit status 85 (250.4222ms)

                                                
                                                
-- stdout --
	* Profile "addons-215800" not found. Run "minikube profile list" to view all profiles.
	  To start a cluster, run: "minikube start -p addons-215800"

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 02:57:42.133157    7328 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
--- PASS: TestAddons/PreSetup/EnablingAddonOnNonExistingCluster (0.25s)

                                                
                                    
x
+
TestAddons/PreSetup/DisablingAddonOnNonExistingCluster (0.26s)

                                                
                                                
=== RUN   TestAddons/PreSetup/DisablingAddonOnNonExistingCluster
=== PAUSE TestAddons/PreSetup/DisablingAddonOnNonExistingCluster

                                                
                                                

                                                
                                                
=== CONT  TestAddons/PreSetup/DisablingAddonOnNonExistingCluster
addons_test.go:939: (dbg) Run:  out/minikube-windows-amd64.exe addons disable dashboard -p addons-215800
addons_test.go:939: (dbg) Non-zero exit: out/minikube-windows-amd64.exe addons disable dashboard -p addons-215800: exit status 85 (258.9353ms)

                                                
                                                
-- stdout --
	* Profile "addons-215800" not found. Run "minikube profile list" to view all profiles.
	  To start a cluster, run: "minikube start -p addons-215800"

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 02:57:42.132149   11572 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
--- PASS: TestAddons/PreSetup/DisablingAddonOnNonExistingCluster (0.26s)

                                                
                                    
x
+
TestAddons/Setup (478.71s)

                                                
                                                
=== RUN   TestAddons/Setup
addons_test.go:109: (dbg) Run:  out/minikube-windows-amd64.exe start -p addons-215800 --wait=true --memory=4000 --alsologtostderr --addons=registry --addons=metrics-server --addons=volumesnapshots --addons=csi-hostpath-driver --addons=gcp-auth --addons=cloud-spanner --addons=inspektor-gadget --addons=storage-provisioner-rancher --addons=nvidia-device-plugin --addons=yakd --driver=docker --addons=ingress --addons=ingress-dns --addons=helm-tiller
addons_test.go:109: (dbg) Done: out/minikube-windows-amd64.exe start -p addons-215800 --wait=true --memory=4000 --alsologtostderr --addons=registry --addons=metrics-server --addons=volumesnapshots --addons=csi-hostpath-driver --addons=gcp-auth --addons=cloud-spanner --addons=inspektor-gadget --addons=storage-provisioner-rancher --addons=nvidia-device-plugin --addons=yakd --driver=docker --addons=ingress --addons=ingress-dns --addons=helm-tiller: (7m58.7069561s)
--- PASS: TestAddons/Setup (478.71s)

                                                
                                    
x
+
TestAddons/parallel/InspektorGadget (14.45s)

                                                
                                                
=== RUN   TestAddons/parallel/InspektorGadget
=== PAUSE TestAddons/parallel/InspektorGadget

                                                
                                                

                                                
                                                
=== CONT  TestAddons/parallel/InspektorGadget
addons_test.go:838: (dbg) TestAddons/parallel/InspektorGadget: waiting 8m0s for pods matching "k8s-app=gadget" in namespace "gadget" ...
helpers_test.go:344: "gadget-8fxcs" [dfb5b430-d933-4f4c-b6f0-a7fd9a21226e] Running / Ready:ContainersNotReady (containers with unready status: [gadget]) / ContainersReady:ContainersNotReady (containers with unready status: [gadget])
addons_test.go:838: (dbg) TestAddons/parallel/InspektorGadget: k8s-app=gadget healthy within 6.0198784s
addons_test.go:841: (dbg) Run:  out/minikube-windows-amd64.exe addons disable inspektor-gadget -p addons-215800
addons_test.go:841: (dbg) Done: out/minikube-windows-amd64.exe addons disable inspektor-gadget -p addons-215800: (8.4266065s)
--- PASS: TestAddons/parallel/InspektorGadget (14.45s)

                                                
                                    
x
+
TestAddons/parallel/MetricsServer (10.09s)

                                                
                                                
=== RUN   TestAddons/parallel/MetricsServer
=== PAUSE TestAddons/parallel/MetricsServer

                                                
                                                

                                                
                                                
=== CONT  TestAddons/parallel/MetricsServer
addons_test.go:407: metrics-server stabilized in 56.0635ms
addons_test.go:409: (dbg) TestAddons/parallel/MetricsServer: waiting 6m0s for pods matching "k8s-app=metrics-server" in namespace "kube-system" ...
helpers_test.go:344: "metrics-server-69cf46c98-zhgvl" [62d17d6e-e6d2-4156-9499-1735fa4d1711] Running
addons_test.go:409: (dbg) TestAddons/parallel/MetricsServer: k8s-app=metrics-server healthy within 5.02114s
addons_test.go:415: (dbg) Run:  kubectl --context addons-215800 top pods -n kube-system
addons_test.go:432: (dbg) Run:  out/minikube-windows-amd64.exe -p addons-215800 addons disable metrics-server --alsologtostderr -v=1
addons_test.go:432: (dbg) Done: out/minikube-windows-amd64.exe -p addons-215800 addons disable metrics-server --alsologtostderr -v=1: (4.7700938s)
--- PASS: TestAddons/parallel/MetricsServer (10.09s)

                                                
                                    
x
+
TestAddons/parallel/HelmTiller (25.33s)

                                                
                                                
=== RUN   TestAddons/parallel/HelmTiller
=== PAUSE TestAddons/parallel/HelmTiller

                                                
                                                

                                                
                                                
=== CONT  TestAddons/parallel/HelmTiller
addons_test.go:456: tiller-deploy stabilized in 10.0031ms
addons_test.go:458: (dbg) TestAddons/parallel/HelmTiller: waiting 6m0s for pods matching "app=helm" in namespace "kube-system" ...
helpers_test.go:344: "tiller-deploy-7b677967b9-q9xk8" [dd5de9b3-72cb-4d5f-85d1-7834f38a8611] Running
addons_test.go:458: (dbg) TestAddons/parallel/HelmTiller: app=helm healthy within 5.0795596s
addons_test.go:473: (dbg) Run:  kubectl --context addons-215800 run --rm helm-test --restart=Never --image=docker.io/alpine/helm:2.16.3 -it --namespace=kube-system -- version
addons_test.go:473: (dbg) Done: kubectl --context addons-215800 run --rm helm-test --restart=Never --image=docker.io/alpine/helm:2.16.3 -it --namespace=kube-system -- version: (17.0449366s)
addons_test.go:490: (dbg) Run:  out/minikube-windows-amd64.exe -p addons-215800 addons disable helm-tiller --alsologtostderr -v=1
addons_test.go:490: (dbg) Done: out/minikube-windows-amd64.exe -p addons-215800 addons disable helm-tiller --alsologtostderr -v=1: (3.1717582s)
--- PASS: TestAddons/parallel/HelmTiller (25.33s)

                                                
                                    
x
+
TestAddons/parallel/CSI (67.89s)

                                                
                                                
=== RUN   TestAddons/parallel/CSI
=== PAUSE TestAddons/parallel/CSI

                                                
                                                

                                                
                                                
=== CONT  TestAddons/parallel/CSI
addons_test.go:561: csi-hostpath-driver pods stabilized in 16.746ms
addons_test.go:564: (dbg) Run:  kubectl --context addons-215800 create -f testdata\csi-hostpath-driver\pvc.yaml
addons_test.go:569: (dbg) TestAddons/parallel/CSI: waiting 6m0s for pvc "hpvc" in namespace "default" ...
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc -o jsonpath={.status.phase} -n default
addons_test.go:574: (dbg) Run:  kubectl --context addons-215800 create -f testdata\csi-hostpath-driver\pv-pod.yaml
addons_test.go:579: (dbg) TestAddons/parallel/CSI: waiting 6m0s for pods matching "app=task-pv-pod" in namespace "default" ...
helpers_test.go:344: "task-pv-pod" [b1cb10cc-03bc-4a31-b428-4f0695bc98fd] Pending
helpers_test.go:344: "task-pv-pod" [b1cb10cc-03bc-4a31-b428-4f0695bc98fd] Pending / Ready:ContainersNotReady (containers with unready status: [task-pv-container]) / ContainersReady:ContainersNotReady (containers with unready status: [task-pv-container])
helpers_test.go:344: "task-pv-pod" [b1cb10cc-03bc-4a31-b428-4f0695bc98fd] Running
addons_test.go:579: (dbg) TestAddons/parallel/CSI: app=task-pv-pod healthy within 23.0206914s
addons_test.go:584: (dbg) Run:  kubectl --context addons-215800 create -f testdata\csi-hostpath-driver\snapshot.yaml
addons_test.go:589: (dbg) TestAddons/parallel/CSI: waiting 6m0s for volume snapshot "new-snapshot-demo" in namespace "default" ...
helpers_test.go:419: (dbg) Run:  kubectl --context addons-215800 get volumesnapshot new-snapshot-demo -o jsonpath={.status.readyToUse} -n default
helpers_test.go:419: (dbg) Run:  kubectl --context addons-215800 get volumesnapshot new-snapshot-demo -o jsonpath={.status.readyToUse} -n default
addons_test.go:594: (dbg) Run:  kubectl --context addons-215800 delete pod task-pv-pod
addons_test.go:594: (dbg) Done: kubectl --context addons-215800 delete pod task-pv-pod: (1.8093975s)
addons_test.go:600: (dbg) Run:  kubectl --context addons-215800 delete pvc hpvc
addons_test.go:606: (dbg) Run:  kubectl --context addons-215800 create -f testdata\csi-hostpath-driver\pvc-restore.yaml
addons_test.go:611: (dbg) TestAddons/parallel/CSI: waiting 6m0s for pvc "hpvc-restore" in namespace "default" ...
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc-restore -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc-restore -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc-restore -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc-restore -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc-restore -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc-restore -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc-restore -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc-restore -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc-restore -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc-restore -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc hpvc-restore -o jsonpath={.status.phase} -n default
addons_test.go:616: (dbg) Run:  kubectl --context addons-215800 create -f testdata\csi-hostpath-driver\pv-pod-restore.yaml
addons_test.go:621: (dbg) TestAddons/parallel/CSI: waiting 6m0s for pods matching "app=task-pv-pod-restore" in namespace "default" ...
helpers_test.go:344: "task-pv-pod-restore" [d801b87b-f24f-43a0-9437-9f1682bc0def] Pending
helpers_test.go:344: "task-pv-pod-restore" [d801b87b-f24f-43a0-9437-9f1682bc0def] Pending / Ready:ContainersNotReady (containers with unready status: [task-pv-container]) / ContainersReady:ContainersNotReady (containers with unready status: [task-pv-container])
helpers_test.go:344: "task-pv-pod-restore" [d801b87b-f24f-43a0-9437-9f1682bc0def] Running
addons_test.go:621: (dbg) TestAddons/parallel/CSI: app=task-pv-pod-restore healthy within 9.0396409s
addons_test.go:626: (dbg) Run:  kubectl --context addons-215800 delete pod task-pv-pod-restore
addons_test.go:626: (dbg) Done: kubectl --context addons-215800 delete pod task-pv-pod-restore: (1.3014211s)
addons_test.go:630: (dbg) Run:  kubectl --context addons-215800 delete pvc hpvc-restore
addons_test.go:634: (dbg) Run:  kubectl --context addons-215800 delete volumesnapshot new-snapshot-demo
addons_test.go:638: (dbg) Run:  out/minikube-windows-amd64.exe -p addons-215800 addons disable csi-hostpath-driver --alsologtostderr -v=1
addons_test.go:638: (dbg) Done: out/minikube-windows-amd64.exe -p addons-215800 addons disable csi-hostpath-driver --alsologtostderr -v=1: (8.5888706s)
addons_test.go:642: (dbg) Run:  out/minikube-windows-amd64.exe -p addons-215800 addons disable volumesnapshots --alsologtostderr -v=1
addons_test.go:642: (dbg) Done: out/minikube-windows-amd64.exe -p addons-215800 addons disable volumesnapshots --alsologtostderr -v=1: (1.9992973s)
--- PASS: TestAddons/parallel/CSI (67.89s)

                                                
                                    
x
+
TestAddons/parallel/Headlamp (32.21s)

                                                
                                                
=== RUN   TestAddons/parallel/Headlamp
=== PAUSE TestAddons/parallel/Headlamp

                                                
                                                

                                                
                                                
=== CONT  TestAddons/parallel/Headlamp
addons_test.go:824: (dbg) Run:  out/minikube-windows-amd64.exe addons enable headlamp -p addons-215800 --alsologtostderr -v=1
addons_test.go:824: (dbg) Done: out/minikube-windows-amd64.exe addons enable headlamp -p addons-215800 --alsologtostderr -v=1: (4.1725434s)
addons_test.go:829: (dbg) TestAddons/parallel/Headlamp: waiting 8m0s for pods matching "app.kubernetes.io/name=headlamp" in namespace "headlamp" ...
helpers_test.go:344: "headlamp-7ddfbb94ff-s4rzf" [84fc1f33-107c-4a15-b493-841575c0faec] Pending
helpers_test.go:344: "headlamp-7ddfbb94ff-s4rzf" [84fc1f33-107c-4a15-b493-841575c0faec] Pending / Ready:ContainersNotReady (containers with unready status: [headlamp]) / ContainersReady:ContainersNotReady (containers with unready status: [headlamp])
helpers_test.go:344: "headlamp-7ddfbb94ff-s4rzf" [84fc1f33-107c-4a15-b493-841575c0faec] Running
addons_test.go:829: (dbg) TestAddons/parallel/Headlamp: app.kubernetes.io/name=headlamp healthy within 28.0343181s
--- PASS: TestAddons/parallel/Headlamp (32.21s)

                                                
                                    
x
+
TestAddons/parallel/CloudSpanner (7.35s)

                                                
                                                
=== RUN   TestAddons/parallel/CloudSpanner
=== PAUSE TestAddons/parallel/CloudSpanner

                                                
                                                

                                                
                                                
=== CONT  TestAddons/parallel/CloudSpanner
addons_test.go:857: (dbg) TestAddons/parallel/CloudSpanner: waiting 6m0s for pods matching "app=cloud-spanner-emulator" in namespace "default" ...
helpers_test.go:344: "cloud-spanner-emulator-6548d5df46-b6hl8" [a90169a8-aaf9-48be-8e86-f365276d817c] Running
addons_test.go:857: (dbg) TestAddons/parallel/CloudSpanner: app=cloud-spanner-emulator healthy within 5.0179145s
addons_test.go:860: (dbg) Run:  out/minikube-windows-amd64.exe addons disable cloud-spanner -p addons-215800
addons_test.go:860: (dbg) Done: out/minikube-windows-amd64.exe addons disable cloud-spanner -p addons-215800: (2.3116241s)
--- PASS: TestAddons/parallel/CloudSpanner (7.35s)

                                                
                                    
x
+
TestAddons/parallel/LocalPath (66.41s)

                                                
                                                
=== RUN   TestAddons/parallel/LocalPath
=== PAUSE TestAddons/parallel/LocalPath

                                                
                                                

                                                
                                                
=== CONT  TestAddons/parallel/LocalPath
addons_test.go:873: (dbg) Run:  kubectl --context addons-215800 apply -f testdata\storage-provisioner-rancher\pvc.yaml
addons_test.go:879: (dbg) Run:  kubectl --context addons-215800 apply -f testdata\storage-provisioner-rancher\pod.yaml
addons_test.go:883: (dbg) TestAddons/parallel/LocalPath: waiting 5m0s for pvc "test-pvc" in namespace "default" ...
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc test-pvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc test-pvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc test-pvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc test-pvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc test-pvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc test-pvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc test-pvc -o jsonpath={.status.phase} -n default
helpers_test.go:394: (dbg) Run:  kubectl --context addons-215800 get pvc test-pvc -o jsonpath={.status.phase} -n default
addons_test.go:886: (dbg) TestAddons/parallel/LocalPath: waiting 3m0s for pods matching "run=test-local-path" in namespace "default" ...
helpers_test.go:344: "test-local-path" [304f541f-8f03-441f-8ad7-6497df6e3a84] Pending / Ready:ContainersNotReady (containers with unready status: [busybox]) / ContainersReady:ContainersNotReady (containers with unready status: [busybox])
helpers_test.go:344: "test-local-path" [304f541f-8f03-441f-8ad7-6497df6e3a84] Pending: Initialized:PodCompleted / Ready:PodCompleted / ContainersReady:PodCompleted
helpers_test.go:344: "test-local-path" [304f541f-8f03-441f-8ad7-6497df6e3a84] Succeeded: Initialized:PodCompleted / Ready:PodCompleted / ContainersReady:PodCompleted
addons_test.go:886: (dbg) TestAddons/parallel/LocalPath: run=test-local-path healthy within 8.02382s
addons_test.go:891: (dbg) Run:  kubectl --context addons-215800 get pvc test-pvc -o=json
addons_test.go:900: (dbg) Run:  out/minikube-windows-amd64.exe -p addons-215800 ssh "cat /opt/local-path-provisioner/pvc-08497cf1-8c5a-41c3-b5b1-335805ac0326_default_test-pvc/file1"
addons_test.go:900: (dbg) Done: out/minikube-windows-amd64.exe -p addons-215800 ssh "cat /opt/local-path-provisioner/pvc-08497cf1-8c5a-41c3-b5b1-335805ac0326_default_test-pvc/file1": (1.4293527s)
addons_test.go:912: (dbg) Run:  kubectl --context addons-215800 delete pod test-local-path
addons_test.go:916: (dbg) Run:  kubectl --context addons-215800 delete pvc test-pvc
addons_test.go:920: (dbg) Run:  out/minikube-windows-amd64.exe -p addons-215800 addons disable storage-provisioner-rancher --alsologtostderr -v=1
addons_test.go:920: (dbg) Done: out/minikube-windows-amd64.exe -p addons-215800 addons disable storage-provisioner-rancher --alsologtostderr -v=1: (47.9898274s)
--- PASS: TestAddons/parallel/LocalPath (66.41s)

                                                
                                    
x
+
TestAddons/parallel/NvidiaDevicePlugin (7.51s)

                                                
                                                
=== RUN   TestAddons/parallel/NvidiaDevicePlugin
=== PAUSE TestAddons/parallel/NvidiaDevicePlugin

                                                
                                                

                                                
                                                
=== CONT  TestAddons/parallel/NvidiaDevicePlugin
addons_test.go:952: (dbg) TestAddons/parallel/NvidiaDevicePlugin: waiting 6m0s for pods matching "name=nvidia-device-plugin-ds" in namespace "kube-system" ...
helpers_test.go:344: "nvidia-device-plugin-daemonset-68llj" [9ec3f5ae-b732-4b95-97f2-f1ca5db9fefd] Running
addons_test.go:952: (dbg) TestAddons/parallel/NvidiaDevicePlugin: name=nvidia-device-plugin-ds healthy within 6.0179991s
addons_test.go:955: (dbg) Run:  out/minikube-windows-amd64.exe addons disable nvidia-device-plugin -p addons-215800
addons_test.go:955: (dbg) Done: out/minikube-windows-amd64.exe addons disable nvidia-device-plugin -p addons-215800: (1.490309s)
--- PASS: TestAddons/parallel/NvidiaDevicePlugin (7.51s)

                                                
                                    
x
+
TestAddons/parallel/Yakd (6.02s)

                                                
                                                
=== RUN   TestAddons/parallel/Yakd
=== PAUSE TestAddons/parallel/Yakd

                                                
                                                

                                                
                                                
=== CONT  TestAddons/parallel/Yakd
addons_test.go:963: (dbg) TestAddons/parallel/Yakd: waiting 2m0s for pods matching "app.kubernetes.io/name=yakd-dashboard" in namespace "yakd-dashboard" ...
helpers_test.go:344: "yakd-dashboard-9947fc6bf-ptwxr" [0bd9423a-1597-4aa3-8415-ef9ea443733b] Running
addons_test.go:963: (dbg) TestAddons/parallel/Yakd: app.kubernetes.io/name=yakd-dashboard healthy within 6.0157838s
--- PASS: TestAddons/parallel/Yakd (6.02s)

                                                
                                    
x
+
TestAddons/serial/GCPAuth/Namespaces (0.36s)

                                                
                                                
=== RUN   TestAddons/serial/GCPAuth/Namespaces
addons_test.go:650: (dbg) Run:  kubectl --context addons-215800 create ns new-namespace
addons_test.go:664: (dbg) Run:  kubectl --context addons-215800 get secret gcp-auth -n new-namespace
--- PASS: TestAddons/serial/GCPAuth/Namespaces (0.36s)

                                                
                                    
x
+
TestAddons/StoppedEnableDisable (14.28s)

                                                
                                                
=== RUN   TestAddons/StoppedEnableDisable
addons_test.go:172: (dbg) Run:  out/minikube-windows-amd64.exe stop -p addons-215800
addons_test.go:172: (dbg) Done: out/minikube-windows-amd64.exe stop -p addons-215800: (12.6646351s)
addons_test.go:176: (dbg) Run:  out/minikube-windows-amd64.exe addons enable dashboard -p addons-215800
addons_test.go:180: (dbg) Run:  out/minikube-windows-amd64.exe addons disable dashboard -p addons-215800
addons_test.go:185: (dbg) Run:  out/minikube-windows-amd64.exe addons disable gvisor -p addons-215800
--- PASS: TestAddons/StoppedEnableDisable (14.28s)

                                                
                                    
x
+
TestCertOptions (100.92s)

                                                
                                                
=== RUN   TestCertOptions
=== PAUSE TestCertOptions

                                                
                                                

                                                
                                                
=== CONT  TestCertOptions
cert_options_test.go:49: (dbg) Run:  out/minikube-windows-amd64.exe start -p cert-options-513000 --memory=2048 --apiserver-ips=127.0.0.1 --apiserver-ips=192.168.15.15 --apiserver-names=localhost --apiserver-names=www.google.com --apiserver-port=8555 --driver=docker --apiserver-name=localhost
cert_options_test.go:49: (dbg) Done: out/minikube-windows-amd64.exe start -p cert-options-513000 --memory=2048 --apiserver-ips=127.0.0.1 --apiserver-ips=192.168.15.15 --apiserver-names=localhost --apiserver-names=www.google.com --apiserver-port=8555 --driver=docker --apiserver-name=localhost: (1m31.7627265s)
cert_options_test.go:60: (dbg) Run:  out/minikube-windows-amd64.exe -p cert-options-513000 ssh "openssl x509 -text -noout -in /var/lib/minikube/certs/apiserver.crt"
cert_options_test.go:60: (dbg) Done: out/minikube-windows-amd64.exe -p cert-options-513000 ssh "openssl x509 -text -noout -in /var/lib/minikube/certs/apiserver.crt": (1.2687387s)
cert_options_test.go:100: (dbg) Run:  out/minikube-windows-amd64.exe ssh -p cert-options-513000 -- "sudo cat /etc/kubernetes/admin.conf"
cert_options_test.go:100: (dbg) Done: out/minikube-windows-amd64.exe ssh -p cert-options-513000 -- "sudo cat /etc/kubernetes/admin.conf": (1.2285199s)
helpers_test.go:175: Cleaning up "cert-options-513000" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p cert-options-513000
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p cert-options-513000: (6.4376472s)
--- PASS: TestCertOptions (100.92s)

                                                
                                    
x
+
TestDockerFlags (104.13s)

                                                
                                                
=== RUN   TestDockerFlags
=== PAUSE TestDockerFlags

                                                
                                                

                                                
                                                
=== CONT  TestDockerFlags
docker_test.go:51: (dbg) Run:  out/minikube-windows-amd64.exe start -p docker-flags-380600 --cache-images=false --memory=2048 --install-addons=false --wait=false --docker-env=FOO=BAR --docker-env=BAZ=BAT --docker-opt=debug --docker-opt=icc=true --alsologtostderr -v=5 --driver=docker
E0308 04:13:36.777930    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
docker_test.go:51: (dbg) Done: out/minikube-windows-amd64.exe start -p docker-flags-380600 --cache-images=false --memory=2048 --install-addons=false --wait=false --docker-env=FOO=BAR --docker-env=BAZ=BAT --docker-opt=debug --docker-opt=icc=true --alsologtostderr -v=5 --driver=docker: (1m35.3059214s)
docker_test.go:56: (dbg) Run:  out/minikube-windows-amd64.exe -p docker-flags-380600 ssh "sudo systemctl show docker --property=Environment --no-pager"
docker_test.go:56: (dbg) Done: out/minikube-windows-amd64.exe -p docker-flags-380600 ssh "sudo systemctl show docker --property=Environment --no-pager": (1.3360217s)
docker_test.go:67: (dbg) Run:  out/minikube-windows-amd64.exe -p docker-flags-380600 ssh "sudo systemctl show docker --property=ExecStart --no-pager"
docker_test.go:67: (dbg) Done: out/minikube-windows-amd64.exe -p docker-flags-380600 ssh "sudo systemctl show docker --property=ExecStart --no-pager": (1.2620951s)
helpers_test.go:175: Cleaning up "docker-flags-380600" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p docker-flags-380600
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p docker-flags-380600: (6.2257154s)
--- PASS: TestDockerFlags (104.13s)

                                                
                                    
x
+
TestForceSystemdFlag (109.32s)

                                                
                                                
=== RUN   TestForceSystemdFlag
=== PAUSE TestForceSystemdFlag

                                                
                                                

                                                
                                                
=== CONT  TestForceSystemdFlag
docker_test.go:91: (dbg) Run:  out/minikube-windows-amd64.exe start -p force-systemd-flag-550500 --memory=2048 --force-systemd --alsologtostderr -v=5 --driver=docker
docker_test.go:91: (dbg) Done: out/minikube-windows-amd64.exe start -p force-systemd-flag-550500 --memory=2048 --force-systemd --alsologtostderr -v=5 --driver=docker: (1m41.1341804s)
docker_test.go:110: (dbg) Run:  out/minikube-windows-amd64.exe -p force-systemd-flag-550500 ssh "docker info --format {{.CgroupDriver}}"
docker_test.go:110: (dbg) Done: out/minikube-windows-amd64.exe -p force-systemd-flag-550500 ssh "docker info --format {{.CgroupDriver}}": (1.4458252s)
helpers_test.go:175: Cleaning up "force-systemd-flag-550500" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p force-systemd-flag-550500
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p force-systemd-flag-550500: (6.741437s)
--- PASS: TestForceSystemdFlag (109.32s)

                                                
                                    
x
+
TestForceSystemdEnv (110.96s)

                                                
                                                
=== RUN   TestForceSystemdEnv
=== PAUSE TestForceSystemdEnv

                                                
                                                

                                                
                                                
=== CONT  TestForceSystemdEnv
docker_test.go:155: (dbg) Run:  out/minikube-windows-amd64.exe start -p force-systemd-env-575200 --memory=2048 --alsologtostderr -v=5 --driver=docker
docker_test.go:155: (dbg) Done: out/minikube-windows-amd64.exe start -p force-systemd-env-575200 --memory=2048 --alsologtostderr -v=5 --driver=docker: (1m42.3164229s)
docker_test.go:110: (dbg) Run:  out/minikube-windows-amd64.exe -p force-systemd-env-575200 ssh "docker info --format {{.CgroupDriver}}"
docker_test.go:110: (dbg) Done: out/minikube-windows-amd64.exe -p force-systemd-env-575200 ssh "docker info --format {{.CgroupDriver}}": (1.488558s)
helpers_test.go:175: Cleaning up "force-systemd-env-575200" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p force-systemd-env-575200
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p force-systemd-env-575200: (7.1527187s)
--- PASS: TestForceSystemdEnv (110.96s)

                                                
                                    
x
+
TestErrorSpam/start (4.06s)

                                                
                                                
=== RUN   TestErrorSpam/start
error_spam_test.go:216: Cleaning up 1 logfile(s) ...
error_spam_test.go:159: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 start --dry-run
error_spam_test.go:159: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 start --dry-run: (1.3778231s)
error_spam_test.go:159: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 start --dry-run
error_spam_test.go:159: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 start --dry-run: (1.3116584s)
error_spam_test.go:182: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 start --dry-run
error_spam_test.go:182: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 start --dry-run: (1.3692292s)
--- PASS: TestErrorSpam/start (4.06s)

                                                
                                    
x
+
TestErrorSpam/status (4.21s)

                                                
                                                
=== RUN   TestErrorSpam/status
error_spam_test.go:216: Cleaning up 0 logfile(s) ...
error_spam_test.go:159: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 status
error_spam_test.go:159: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 status: (1.256633s)
error_spam_test.go:159: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 status
error_spam_test.go:159: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 status: (1.278969s)
error_spam_test.go:182: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 status
error_spam_test.go:182: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 status: (1.6613752s)
--- PASS: TestErrorSpam/status (4.21s)

                                                
                                    
x
+
TestErrorSpam/pause (4.28s)

                                                
                                                
=== RUN   TestErrorSpam/pause
error_spam_test.go:216: Cleaning up 0 logfile(s) ...
error_spam_test.go:159: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 pause
error_spam_test.go:159: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 pause: (1.7451654s)
error_spam_test.go:159: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 pause
error_spam_test.go:159: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 pause: (1.2939833s)
error_spam_test.go:182: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 pause
error_spam_test.go:182: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 pause: (1.2427321s)
--- PASS: TestErrorSpam/pause (4.28s)

                                                
                                    
x
+
TestErrorSpam/unpause (4.86s)

                                                
                                                
=== RUN   TestErrorSpam/unpause
error_spam_test.go:216: Cleaning up 0 logfile(s) ...
error_spam_test.go:159: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 unpause
error_spam_test.go:159: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 unpause: (1.4605084s)
error_spam_test.go:159: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 unpause
error_spam_test.go:159: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 unpause: (1.3956506s)
error_spam_test.go:182: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 unpause
error_spam_test.go:182: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 unpause: (1.9967827s)
--- PASS: TestErrorSpam/unpause (4.86s)

                                                
                                    
x
+
TestErrorSpam/stop (14.27s)

                                                
                                                
=== RUN   TestErrorSpam/stop
error_spam_test.go:216: Cleaning up 0 logfile(s) ...
error_spam_test.go:159: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 stop
error_spam_test.go:159: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 stop: (7.2079805s)
error_spam_test.go:159: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 stop
error_spam_test.go:159: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 stop: (3.2289951s)
error_spam_test.go:182: (dbg) Run:  out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 stop
error_spam_test.go:182: (dbg) Done: out/minikube-windows-amd64.exe -p nospam-587900 --log_dir C:\Users\jenkins.minikube4\AppData\Local\Temp\nospam-587900 stop: (3.8287787s)
--- PASS: TestErrorSpam/stop (14.27s)

                                                
                                    
x
+
TestFunctional/serial/CopySyncFile (0.03s)

                                                
                                                
=== RUN   TestFunctional/serial/CopySyncFile
functional_test.go:1851: local sync path: C:\Users\jenkins.minikube4\minikube-integration\.minikube\files\etc\test\nested\copy\6728\hosts
--- PASS: TestFunctional/serial/CopySyncFile (0.03s)

                                                
                                    
x
+
TestFunctional/serial/StartWithProxy (88.81s)

                                                
                                                
=== RUN   TestFunctional/serial/StartWithProxy
functional_test.go:2230: (dbg) Run:  out/minikube-windows-amd64.exe start -p functional-131400 --memory=4000 --apiserver-port=8441 --wait=all --driver=docker
E0308 03:10:41.040841    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 03:10:41.055982    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 03:10:41.071241    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 03:10:41.101429    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 03:10:41.147654    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 03:10:41.239604    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 03:10:41.409768    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 03:10:41.735288    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 03:10:42.378209    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 03:10:43.672242    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 03:10:46.246398    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 03:10:51.373561    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 03:11:01.621070    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 03:11:22.114487    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
functional_test.go:2230: (dbg) Done: out/minikube-windows-amd64.exe start -p functional-131400 --memory=4000 --apiserver-port=8441 --wait=all --driver=docker: (1m28.8029072s)
--- PASS: TestFunctional/serial/StartWithProxy (88.81s)

                                                
                                    
x
+
TestFunctional/serial/AuditLog (0s)

                                                
                                                
=== RUN   TestFunctional/serial/AuditLog
--- PASS: TestFunctional/serial/AuditLog (0.00s)

                                                
                                    
x
+
TestFunctional/serial/SoftStart (44.22s)

                                                
                                                
=== RUN   TestFunctional/serial/SoftStart
functional_test.go:655: (dbg) Run:  out/minikube-windows-amd64.exe start -p functional-131400 --alsologtostderr -v=8
E0308 03:12:03.077222    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
functional_test.go:655: (dbg) Done: out/minikube-windows-amd64.exe start -p functional-131400 --alsologtostderr -v=8: (44.2202264s)
functional_test.go:659: soft start took 44.2210168s for "functional-131400" cluster.
--- PASS: TestFunctional/serial/SoftStart (44.22s)

                                                
                                    
x
+
TestFunctional/serial/KubeContext (0.13s)

                                                
                                                
=== RUN   TestFunctional/serial/KubeContext
functional_test.go:677: (dbg) Run:  kubectl config current-context
--- PASS: TestFunctional/serial/KubeContext (0.13s)

                                                
                                    
x
+
TestFunctional/serial/KubectlGetPods (0.24s)

                                                
                                                
=== RUN   TestFunctional/serial/KubectlGetPods
functional_test.go:692: (dbg) Run:  kubectl --context functional-131400 get po -A
--- PASS: TestFunctional/serial/KubectlGetPods (0.24s)

                                                
                                    
x
+
TestFunctional/serial/CacheCmd/cache/add_remote (7.02s)

                                                
                                                
=== RUN   TestFunctional/serial/CacheCmd/cache/add_remote
functional_test.go:1045: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 cache add registry.k8s.io/pause:3.1
functional_test.go:1045: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 cache add registry.k8s.io/pause:3.1: (2.451409s)
functional_test.go:1045: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 cache add registry.k8s.io/pause:3.3
functional_test.go:1045: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 cache add registry.k8s.io/pause:3.3: (2.3292165s)
functional_test.go:1045: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 cache add registry.k8s.io/pause:latest
functional_test.go:1045: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 cache add registry.k8s.io/pause:latest: (2.2369467s)
--- PASS: TestFunctional/serial/CacheCmd/cache/add_remote (7.02s)

                                                
                                    
x
+
TestFunctional/serial/CacheCmd/cache/add_local (3.81s)

                                                
                                                
=== RUN   TestFunctional/serial/CacheCmd/cache/add_local
functional_test.go:1073: (dbg) Run:  docker build -t minikube-local-cache-test:functional-131400 C:\Users\jenkins.minikube4\AppData\Local\Temp\TestFunctionalserialCacheCmdcacheadd_local1722617381\001
functional_test.go:1073: (dbg) Done: docker build -t minikube-local-cache-test:functional-131400 C:\Users\jenkins.minikube4\AppData\Local\Temp\TestFunctionalserialCacheCmdcacheadd_local1722617381\001: (1.6958287s)
functional_test.go:1085: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 cache add minikube-local-cache-test:functional-131400
functional_test.go:1085: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 cache add minikube-local-cache-test:functional-131400: (1.6623427s)
functional_test.go:1090: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 cache delete minikube-local-cache-test:functional-131400
functional_test.go:1079: (dbg) Run:  docker rmi minikube-local-cache-test:functional-131400
--- PASS: TestFunctional/serial/CacheCmd/cache/add_local (3.81s)

                                                
                                    
x
+
TestFunctional/serial/CacheCmd/cache/CacheDelete (0.25s)

                                                
                                                
=== RUN   TestFunctional/serial/CacheCmd/cache/CacheDelete
functional_test.go:1098: (dbg) Run:  out/minikube-windows-amd64.exe cache delete registry.k8s.io/pause:3.3
--- PASS: TestFunctional/serial/CacheCmd/cache/CacheDelete (0.25s)

                                                
                                    
x
+
TestFunctional/serial/CacheCmd/cache/list (0.25s)

                                                
                                                
=== RUN   TestFunctional/serial/CacheCmd/cache/list
functional_test.go:1106: (dbg) Run:  out/minikube-windows-amd64.exe cache list
--- PASS: TestFunctional/serial/CacheCmd/cache/list (0.25s)

                                                
                                    
x
+
TestFunctional/serial/CacheCmd/cache/verify_cache_inside_node (1.2s)

                                                
                                                
=== RUN   TestFunctional/serial/CacheCmd/cache/verify_cache_inside_node
functional_test.go:1120: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh sudo crictl images
functional_test.go:1120: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh sudo crictl images: (1.203784s)
--- PASS: TestFunctional/serial/CacheCmd/cache/verify_cache_inside_node (1.20s)

                                                
                                    
x
+
TestFunctional/serial/CacheCmd/cache/cache_reload (5.23s)

                                                
                                                
=== RUN   TestFunctional/serial/CacheCmd/cache/cache_reload
functional_test.go:1143: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh sudo docker rmi registry.k8s.io/pause:latest
functional_test.go:1143: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh sudo docker rmi registry.k8s.io/pause:latest: (1.1399987s)
functional_test.go:1149: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh sudo crictl inspecti registry.k8s.io/pause:latest
functional_test.go:1149: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p functional-131400 ssh sudo crictl inspecti registry.k8s.io/pause:latest: exit status 1 (1.162873s)

                                                
                                                
-- stdout --
	FATA[0000] no such image "registry.k8s.io/pause:latest" present 

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:12:23.866345   10140 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	ssh: Process exited with status 1

                                                
                                                
** /stderr **
functional_test.go:1154: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 cache reload
functional_test.go:1154: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 cache reload: (1.7505829s)
functional_test.go:1159: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh sudo crictl inspecti registry.k8s.io/pause:latest
functional_test.go:1159: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh sudo crictl inspecti registry.k8s.io/pause:latest: (1.1760071s)
--- PASS: TestFunctional/serial/CacheCmd/cache/cache_reload (5.23s)

                                                
                                    
x
+
TestFunctional/serial/CacheCmd/cache/delete (0.51s)

                                                
                                                
=== RUN   TestFunctional/serial/CacheCmd/cache/delete
functional_test.go:1168: (dbg) Run:  out/minikube-windows-amd64.exe cache delete registry.k8s.io/pause:3.1
functional_test.go:1168: (dbg) Run:  out/minikube-windows-amd64.exe cache delete registry.k8s.io/pause:latest
--- PASS: TestFunctional/serial/CacheCmd/cache/delete (0.51s)

                                                
                                    
x
+
TestFunctional/serial/MinikubeKubectlCmd (0.44s)

                                                
                                                
=== RUN   TestFunctional/serial/MinikubeKubectlCmd
functional_test.go:712: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 kubectl -- --context functional-131400 get pods
--- PASS: TestFunctional/serial/MinikubeKubectlCmd (0.44s)

                                                
                                    
x
+
TestFunctional/serial/ExtraConfig (47.75s)

                                                
                                                
=== RUN   TestFunctional/serial/ExtraConfig
functional_test.go:753: (dbg) Run:  out/minikube-windows-amd64.exe start -p functional-131400 --extra-config=apiserver.enable-admission-plugins=NamespaceAutoProvision --wait=all
functional_test.go:753: (dbg) Done: out/minikube-windows-amd64.exe start -p functional-131400 --extra-config=apiserver.enable-admission-plugins=NamespaceAutoProvision --wait=all: (47.7453497s)
functional_test.go:757: restart took 47.7466196s for "functional-131400" cluster.
--- PASS: TestFunctional/serial/ExtraConfig (47.75s)

                                                
                                    
x
+
TestFunctional/serial/ComponentHealth (0.19s)

                                                
                                                
=== RUN   TestFunctional/serial/ComponentHealth
functional_test.go:806: (dbg) Run:  kubectl --context functional-131400 get po -l tier=control-plane -n kube-system -o=json
functional_test.go:821: etcd phase: Running
functional_test.go:831: etcd status: Ready
functional_test.go:821: kube-apiserver phase: Running
functional_test.go:831: kube-apiserver status: Ready
functional_test.go:821: kube-controller-manager phase: Running
functional_test.go:831: kube-controller-manager status: Ready
functional_test.go:821: kube-scheduler phase: Running
functional_test.go:831: kube-scheduler status: Ready
--- PASS: TestFunctional/serial/ComponentHealth (0.19s)

                                                
                                    
x
+
TestFunctional/serial/LogsCmd (2.57s)

                                                
                                                
=== RUN   TestFunctional/serial/LogsCmd
functional_test.go:1232: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 logs
E0308 03:13:25.012734    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
functional_test.go:1232: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 logs: (2.5643238s)
--- PASS: TestFunctional/serial/LogsCmd (2.57s)

                                                
                                    
x
+
TestFunctional/serial/LogsFileCmd (2.82s)

                                                
                                                
=== RUN   TestFunctional/serial/LogsFileCmd
functional_test.go:1246: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 logs --file C:\Users\jenkins.minikube4\AppData\Local\Temp\TestFunctionalserialLogsFileCmd3677926634\001\logs.txt
functional_test.go:1246: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 logs --file C:\Users\jenkins.minikube4\AppData\Local\Temp\TestFunctionalserialLogsFileCmd3677926634\001\logs.txt: (2.8196972s)
--- PASS: TestFunctional/serial/LogsFileCmd (2.82s)

                                                
                                    
x
+
TestFunctional/serial/InvalidService (6.34s)

                                                
                                                
=== RUN   TestFunctional/serial/InvalidService
functional_test.go:2317: (dbg) Run:  kubectl --context functional-131400 apply -f testdata\invalidsvc.yaml
functional_test.go:2331: (dbg) Run:  out/minikube-windows-amd64.exe service invalid-svc -p functional-131400
functional_test.go:2331: (dbg) Non-zero exit: out/minikube-windows-amd64.exe service invalid-svc -p functional-131400: exit status 115 (1.5735554s)

                                                
                                                
-- stdout --
	|-----------|-------------|-------------|---------------------------|
	| NAMESPACE |    NAME     | TARGET PORT |            URL            |
	|-----------|-------------|-------------|---------------------------|
	| default   | invalid-svc |          80 | http://192.168.49.2:31519 |
	|-----------|-------------|-------------|---------------------------|
	
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:13:32.155635    2520 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	X Exiting due to SVC_UNREACHABLE: service not available: no running pod for service invalid-svc found
	* 
	╭─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
	│                                                                                                                         │
	│    * If the above advice does not help, please let us know:                                                             │
	│      https://github.com/kubernetes/minikube/issues/new/choose                                                           │
	│                                                                                                                         │
	│    * Please run `minikube logs --file=logs.txt` and attach logs.txt to the GitHub issue.                                │
	│    * Please also attach the following file to the GitHub issue:                                                         │
	│    * - C:\Users\jenkins.minikube4\AppData\Local\Temp\minikube_service_9c977cb937a5c6299cc91c983e64e702e081bf76_0.log    │
	│                                                                                                                         │
	╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

                                                
                                                
** /stderr **
functional_test.go:2323: (dbg) Run:  kubectl --context functional-131400 delete -f testdata\invalidsvc.yaml
functional_test.go:2323: (dbg) Done: kubectl --context functional-131400 delete -f testdata\invalidsvc.yaml: (1.2925469s)
--- PASS: TestFunctional/serial/InvalidService (6.34s)

                                                
                                    
x
+
TestFunctional/parallel/DryRun (2.65s)

                                                
                                                
=== RUN   TestFunctional/parallel/DryRun
=== PAUSE TestFunctional/parallel/DryRun

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/DryRun
functional_test.go:970: (dbg) Run:  out/minikube-windows-amd64.exe start -p functional-131400 --dry-run --memory 250MB --alsologtostderr --driver=docker
functional_test.go:970: (dbg) Non-zero exit: out/minikube-windows-amd64.exe start -p functional-131400 --dry-run --memory 250MB --alsologtostderr --driver=docker: exit status 23 (1.1531737s)

                                                
                                                
-- stdout --
	* [functional-131400] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
	  - KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	  - MINIKUBE_FORCE_SYSTEMD=
	  - MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
	  - MINIKUBE_LOCATION=18333
	  - MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
	* Using the docker driver based on existing profile
	
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:14:05.878694    9596 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	I0308 03:14:05.955706    9596 out.go:291] Setting OutFile to fd 972 ...
	I0308 03:14:05.956718    9596 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 03:14:05.956718    9596 out.go:304] Setting ErrFile to fd 1020...
	I0308 03:14:05.956718    9596 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 03:14:05.981709    9596 out.go:298] Setting JSON to false
	I0308 03:14:05.986709    9596 start.go:129] hostinfo: {"hostname":"minikube4","uptime":8783,"bootTime":1709858862,"procs":206,"os":"windows","platform":"Microsoft Windows 10 Enterprise N","platformFamily":"Standalone Workstation","platformVersion":"10.0.19045.4046 Build 19045.4046","kernelVersion":"10.0.19045.4046 Build 19045.4046","kernelArch":"x86_64","virtualizationSystem":"","virtualizationRole":"","hostId":"df6bfb5f-73f2-4acb-9365-df7854ecbb28"}
	W0308 03:14:05.986709    9596 start.go:137] gopshost.Virtualization returned error: not implemented yet
	I0308 03:14:05.991706    9596 out.go:177] * [functional-131400] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
	I0308 03:14:05.995714    9596 out.go:177]   - KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	I0308 03:14:05.993709    9596 notify.go:220] Checking for updates...
	I0308 03:14:06.001701    9596 out.go:177]   - MINIKUBE_FORCE_SYSTEMD=
	I0308 03:14:06.005708    9596 out.go:177]   - MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
	I0308 03:14:06.007704    9596 out.go:177]   - MINIKUBE_LOCATION=18333
	I0308 03:14:06.009707    9596 out.go:177]   - MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
	I0308 03:14:06.011704    9596 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
	I0308 03:14:06.012710    9596 driver.go:392] Setting default libvirt URI to qemu:///system
	I0308 03:14:06.347488    9596 docker.go:122] docker version: linux-25.0.3:Docker Desktop 4.27.2 (137060)
	I0308 03:14:06.361494    9596 cli_runner.go:164] Run: docker system info --format "{{json .}}"
	I0308 03:14:06.793663    9596 info.go:266] docker info: {ID:c92f2ba1-df38-4a47-85e3-68e1162cada5 Containers:1 ContainersRunning:1 ContainersPaused:0 ContainersStopped:0 Images:1 Driver:overlay2 DriverStatus:[[Backing Filesystem extfs] [Supports d_type true] [Using metacopy false] [Native Overlay Diff true] [userxattr false]] SystemStatus:<nil> Plugins:{Volume:[local] Network:[bridge host ipvlan macvlan null overlay] Authorization:<nil> Log:[awslogs fluentd gcplogs gelf journald json-file local splunk syslog]} MemoryLimit:true SwapLimit:true KernelMemory:false KernelMemoryTCP:true CPUCfsPeriod:true CPUCfsQuota:true CPUShares:true CPUSet:true PidsLimit:true IPv4Forwarding:true BridgeNfIptables:true BridgeNfIP6Tables:true Debug:false NFd:57 OomKillDisable:true NGoroutines:84 SystemTime:2024-03-08 03:14:06.741023705 +0000 UTC LoggingDriver:json-file CgroupDriver:cgroupfs NEventsListener:10 KernelVersion:5.15.133.1-microsoft-standard-WSL2 OperatingSystem:Docker Desktop OSType:linux Architecture:x86_64 Ind
exServerAddress:https://index.docker.io/v1/ RegistryConfig:{AllowNondistributableArtifactsCIDRs:[] AllowNondistributableArtifactsHostnames:[] InsecureRegistryCIDRs:[127.0.0.0/8] IndexConfigs:{DockerIo:{Name:docker.io Mirrors:[] Secure:true Official:true}} Mirrors:[]} NCPU:16 MemTotal:33657516032 GenericResources:<nil> DockerRootDir:/var/lib/docker HTTPProxy:http.docker.internal:3128 HTTPSProxy:http.docker.internal:3128 NoProxy:hubproxy.docker.internal Name:docker-desktop Labels:[] ExperimentalBuild:false ServerVersion:25.0.3 ClusterStore: ClusterAdvertise: Runtimes:{Runc:{Path:runc}} DefaultRuntime:runc Swarm:{NodeID: NodeAddr: LocalNodeState:inactive ControlAvailable:false Error: RemoteManagers:<nil>} LiveRestoreEnabled:false Isolation: InitBinary:docker-init ContainerdCommit:{ID:ae07eda36dd25f8a1b98dfbf587313b99c0190bb Expected:ae07eda36dd25f8a1b98dfbf587313b99c0190bb} RuncCommit:{ID:v1.1.12-0-g51d5e94 Expected:v1.1.12-0-g51d5e94} InitCommit:{ID:de40ad0 Expected:de40ad0} SecurityOptions:[name=seccomp,profil
e=unconfined] ProductLicense: Warnings:[WARNING: No blkio throttle.read_bps_device support WARNING: No blkio throttle.write_bps_device support WARNING: No blkio throttle.read_iops_device support WARNING: No blkio throttle.write_iops_device support WARNING: daemon is not using the default seccomp profile] ServerErrors:[] ClientInfo:{Debug:false Plugins:[map[Name:buildx Path:C:\Program Files\Docker\cli-plugins\docker-buildx.exe SchemaVersion:0.1.0 ShortDescription:Docker Buildx Vendor:Docker Inc. Version:v0.12.1-desktop.4] map[Name:compose Path:C:\Program Files\Docker\cli-plugins\docker-compose.exe SchemaVersion:0.1.0 ShortDescription:Docker Compose Vendor:Docker Inc. Version:v2.24.5-desktop.1] map[Name:debug Path:C:\Program Files\Docker\cli-plugins\docker-debug.exe SchemaVersion:0.1.0 ShortDescription:Get a shell into any image or container. Vendor:Docker Inc. Version:0.0.24] map[Name:dev Path:C:\Program Files\Docker\cli-plugins\docker-dev.exe SchemaVersion:0.1.0 ShortDescription:Docker Dev Environments Vendor
:Docker Inc. Version:v0.1.0] map[Name:extension Path:C:\Program Files\Docker\cli-plugins\docker-extension.exe SchemaVersion:0.1.0 ShortDescription:Manages Docker extensions Vendor:Docker Inc. Version:v0.2.21] map[Name:feedback Path:C:\Program Files\Docker\cli-plugins\docker-feedback.exe SchemaVersion:0.1.0 ShortDescription:Provide feedback, right in your terminal! Vendor:Docker Inc. Version:v1.0.4] map[Name:init Path:C:\Program Files\Docker\cli-plugins\docker-init.exe SchemaVersion:0.1.0 ShortDescription:Creates Docker-related starter files for your project Vendor:Docker Inc. Version:v1.0.0] map[Name:sbom Path:C:\Program Files\Docker\cli-plugins\docker-sbom.exe SchemaVersion:0.1.0 ShortDescription:View the packaged-based Software Bill Of Materials (SBOM) for an image URL:https://github.com/docker/sbom-cli-plugin Vendor:Anchore Inc. Version:0.6.0] map[Name:scan Path:C:\Program Files\Docker\cli-plugins\docker-scan.exe SchemaVersion:0.1.0 ShortDescription:Docker Scan Vendor:Docker Inc. Version:v0.26.0] map[Name:
scout Path:C:\Program Files\Docker\cli-plugins\docker-scout.exe SchemaVersion:0.1.0 ShortDescription:Docker Scout Vendor:Docker Inc. Version:v1.4.1]] Warnings:<nil>}}
	I0308 03:14:06.796660    9596 out.go:177] * Using the docker driver based on existing profile
	I0308 03:14:06.800654    9596 start.go:297] selected driver: docker
	I0308 03:14:06.800654    9596 start.go:901] validating driver "docker" against &{Name:functional-131400 KeepContext:false EmbedCerts:false MinikubeISO: KicBaseImage:gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 Memory:4000 CPUs:2 DiskSize:20000 Driver:docker HyperkitVpnKitSock: HyperkitVSockPorts:[] DockerEnv:[] ContainerVolumeMounts:[] InsecureRegistry:[] RegistryMirror:[] HostOnlyCIDR:192.168.59.1/24 HypervVirtualSwitch: HypervUseExternalSwitch:false HypervExternalAdapter: KVMNetwork:default KVMQemuURI:qemu:///system KVMGPU:false KVMHidden:false KVMNUMACount:1 APIServerPort:8441 DockerOpt:[] DisableDriverMounts:false NFSShare:[] NFSSharesRoot:/nfsshares UUID: NoVTXCheck:false DNSProxy:false HostDNSResolver:true HostOnlyNicType:virtio NatNicType:virtio SSHIPAddress: SSHUser:root SSHKey: SSHPort:22 KubernetesConfig:{KubernetesVersion:v1.28.4 ClusterName:functional-131400 Namespace:default APIServerHAVIP: APIServerNa
me:minikubeCA APIServerNames:[] APIServerIPs:[] DNSDomain:cluster.local ContainerRuntime:docker CRISocket: NetworkPlugin:cni FeatureGates: ServiceCIDR:10.96.0.0/12 ImageRepository: LoadBalancerStartIP: LoadBalancerEndIP: CustomIngressCert: RegistryAliases: ExtraOptions:[{Component:apiserver Key:enable-admission-plugins Value:NamespaceAutoProvision}] ShouldLoadCachedImages:true EnableDefaultCNI:false CNI:} Nodes:[{Name: IP:192.168.49.2 Port:8441 KubernetesVersion:v1.28.4 ContainerRuntime:docker ControlPlane:true Worker:true}] Addons:map[default-storageclass:true storage-provisioner:true] CustomAddonImages:map[] CustomAddonRegistries:map[] VerifyComponents:map[apiserver:true apps_running:true default_sa:true extra:true kubelet:true node_ready:true system_pods:true] StartHostTimeout:6m0s ScheduledStop:<nil> ExposedPorts:[] ListenAddress: Network: Subnet: MultiNodeRequested:false ExtraDisks:0 CertExpiration:26280h0m0s Mount:false MountString:C:\Users\jenkins.minikube4:/minikube-host Mount9PVersion:9p2000.L MountG
ID:docker MountIP: MountMSize:262144 MountOptions:[] MountPort:0 MountType:9p MountUID:docker BinaryMirror: DisableOptimizations:false DisableMetrics:false CustomQemuFirmwarePath: SocketVMnetClientPath: SocketVMnetPath: StaticIP: SSHAuthSock: SSHAgentPID:0 GPUs: AutoPauseInterval:1m0s}
	I0308 03:14:06.800654    9596 start.go:912] status for docker: {Installed:true Healthy:true Running:false NeedsImprovement:false Error:<nil> Reason: Fix: Doc: Version:}
	I0308 03:14:06.851926    9596 out.go:177] 
	W0308 03:14:06.853932    9596 out.go:239] X Exiting due to RSRC_INSUFFICIENT_REQ_MEMORY: Requested memory allocation 250MiB is less than the usable minimum of 1800MB
	X Exiting due to RSRC_INSUFFICIENT_REQ_MEMORY: Requested memory allocation 250MiB is less than the usable minimum of 1800MB
	I0308 03:14:06.856927    9596 out.go:177] 

                                                
                                                
** /stderr **
functional_test.go:987: (dbg) Run:  out/minikube-windows-amd64.exe start -p functional-131400 --dry-run --alsologtostderr -v=1 --driver=docker
functional_test.go:987: (dbg) Done: out/minikube-windows-amd64.exe start -p functional-131400 --dry-run --alsologtostderr -v=1 --driver=docker: (1.4967223s)
--- PASS: TestFunctional/parallel/DryRun (2.65s)

                                                
                                    
x
+
TestFunctional/parallel/InternationalLanguage (1.15s)

                                                
                                                
=== RUN   TestFunctional/parallel/InternationalLanguage
=== PAUSE TestFunctional/parallel/InternationalLanguage

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/InternationalLanguage
functional_test.go:1016: (dbg) Run:  out/minikube-windows-amd64.exe start -p functional-131400 --dry-run --memory 250MB --alsologtostderr --driver=docker
functional_test.go:1016: (dbg) Non-zero exit: out/minikube-windows-amd64.exe start -p functional-131400 --dry-run --memory 250MB --alsologtostderr --driver=docker: exit status 23 (1.1472569s)

                                                
                                                
-- stdout --
	* [functional-131400] minikube v1.32.0 sur Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
	  - KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	  - MINIKUBE_FORCE_SYSTEMD=
	  - MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
	  - MINIKUBE_LOCATION=18333
	  - MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
	* Utilisation du pilote docker basé sur le profil existant
	
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:14:05.043104    1880 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	I0308 03:14:05.121085    1880 out.go:291] Setting OutFile to fd 896 ...
	I0308 03:14:05.121085    1880 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 03:14:05.121085    1880 out.go:304] Setting ErrFile to fd 816...
	I0308 03:14:05.121085    1880 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 03:14:05.141088    1880 out.go:298] Setting JSON to false
	I0308 03:14:05.145075    1880 start.go:129] hostinfo: {"hostname":"minikube4","uptime":8783,"bootTime":1709858862,"procs":204,"os":"windows","platform":"Microsoft Windows 10 Enterprise N","platformFamily":"Standalone Workstation","platformVersion":"10.0.19045.4046 Build 19045.4046","kernelVersion":"10.0.19045.4046 Build 19045.4046","kernelArch":"x86_64","virtualizationSystem":"","virtualizationRole":"","hostId":"df6bfb5f-73f2-4acb-9365-df7854ecbb28"}
	W0308 03:14:05.145075    1880 start.go:137] gopshost.Virtualization returned error: not implemented yet
	I0308 03:14:05.149080    1880 out.go:177] * [functional-131400] minikube v1.32.0 sur Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
	I0308 03:14:05.153093    1880 out.go:177]   - KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	I0308 03:14:05.152097    1880 notify.go:220] Checking for updates...
	I0308 03:14:05.155093    1880 out.go:177]   - MINIKUBE_FORCE_SYSTEMD=
	I0308 03:14:05.157100    1880 out.go:177]   - MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
	I0308 03:14:05.160088    1880 out.go:177]   - MINIKUBE_LOCATION=18333
	I0308 03:14:05.162085    1880 out.go:177]   - MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
	I0308 03:14:05.165093    1880 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
	I0308 03:14:05.167187    1880 driver.go:392] Setting default libvirt URI to qemu:///system
	I0308 03:14:05.455103    1880 docker.go:122] docker version: linux-25.0.3:Docker Desktop 4.27.2 (137060)
	I0308 03:14:05.466100    1880 cli_runner.go:164] Run: docker system info --format "{{json .}}"
	I0308 03:14:05.869719    1880 info.go:266] docker info: {ID:c92f2ba1-df38-4a47-85e3-68e1162cada5 Containers:1 ContainersRunning:1 ContainersPaused:0 ContainersStopped:0 Images:1 Driver:overlay2 DriverStatus:[[Backing Filesystem extfs] [Supports d_type true] [Using metacopy false] [Native Overlay Diff true] [userxattr false]] SystemStatus:<nil> Plugins:{Volume:[local] Network:[bridge host ipvlan macvlan null overlay] Authorization:<nil> Log:[awslogs fluentd gcplogs gelf journald json-file local splunk syslog]} MemoryLimit:true SwapLimit:true KernelMemory:false KernelMemoryTCP:true CPUCfsPeriod:true CPUCfsQuota:true CPUShares:true CPUSet:true PidsLimit:true IPv4Forwarding:true BridgeNfIptables:true BridgeNfIP6Tables:true Debug:false NFd:57 OomKillDisable:true NGoroutines:84 SystemTime:2024-03-08 03:14:05.825343539 +0000 UTC LoggingDriver:json-file CgroupDriver:cgroupfs NEventsListener:10 KernelVersion:5.15.133.1-microsoft-standard-WSL2 OperatingSystem:Docker Desktop OSType:linux Architecture:x86_64 Ind
exServerAddress:https://index.docker.io/v1/ RegistryConfig:{AllowNondistributableArtifactsCIDRs:[] AllowNondistributableArtifactsHostnames:[] InsecureRegistryCIDRs:[127.0.0.0/8] IndexConfigs:{DockerIo:{Name:docker.io Mirrors:[] Secure:true Official:true}} Mirrors:[]} NCPU:16 MemTotal:33657516032 GenericResources:<nil> DockerRootDir:/var/lib/docker HTTPProxy:http.docker.internal:3128 HTTPSProxy:http.docker.internal:3128 NoProxy:hubproxy.docker.internal Name:docker-desktop Labels:[] ExperimentalBuild:false ServerVersion:25.0.3 ClusterStore: ClusterAdvertise: Runtimes:{Runc:{Path:runc}} DefaultRuntime:runc Swarm:{NodeID: NodeAddr: LocalNodeState:inactive ControlAvailable:false Error: RemoteManagers:<nil>} LiveRestoreEnabled:false Isolation: InitBinary:docker-init ContainerdCommit:{ID:ae07eda36dd25f8a1b98dfbf587313b99c0190bb Expected:ae07eda36dd25f8a1b98dfbf587313b99c0190bb} RuncCommit:{ID:v1.1.12-0-g51d5e94 Expected:v1.1.12-0-g51d5e94} InitCommit:{ID:de40ad0 Expected:de40ad0} SecurityOptions:[name=seccomp,profil
e=unconfined] ProductLicense: Warnings:[WARNING: No blkio throttle.read_bps_device support WARNING: No blkio throttle.write_bps_device support WARNING: No blkio throttle.read_iops_device support WARNING: No blkio throttle.write_iops_device support WARNING: daemon is not using the default seccomp profile] ServerErrors:[] ClientInfo:{Debug:false Plugins:[map[Name:buildx Path:C:\Program Files\Docker\cli-plugins\docker-buildx.exe SchemaVersion:0.1.0 ShortDescription:Docker Buildx Vendor:Docker Inc. Version:v0.12.1-desktop.4] map[Name:compose Path:C:\Program Files\Docker\cli-plugins\docker-compose.exe SchemaVersion:0.1.0 ShortDescription:Docker Compose Vendor:Docker Inc. Version:v2.24.5-desktop.1] map[Name:debug Path:C:\Program Files\Docker\cli-plugins\docker-debug.exe SchemaVersion:0.1.0 ShortDescription:Get a shell into any image or container. Vendor:Docker Inc. Version:0.0.24] map[Name:dev Path:C:\Program Files\Docker\cli-plugins\docker-dev.exe SchemaVersion:0.1.0 ShortDescription:Docker Dev Environments Vendor
:Docker Inc. Version:v0.1.0] map[Name:extension Path:C:\Program Files\Docker\cli-plugins\docker-extension.exe SchemaVersion:0.1.0 ShortDescription:Manages Docker extensions Vendor:Docker Inc. Version:v0.2.21] map[Name:feedback Path:C:\Program Files\Docker\cli-plugins\docker-feedback.exe SchemaVersion:0.1.0 ShortDescription:Provide feedback, right in your terminal! Vendor:Docker Inc. Version:v1.0.4] map[Name:init Path:C:\Program Files\Docker\cli-plugins\docker-init.exe SchemaVersion:0.1.0 ShortDescription:Creates Docker-related starter files for your project Vendor:Docker Inc. Version:v1.0.0] map[Name:sbom Path:C:\Program Files\Docker\cli-plugins\docker-sbom.exe SchemaVersion:0.1.0 ShortDescription:View the packaged-based Software Bill Of Materials (SBOM) for an image URL:https://github.com/docker/sbom-cli-plugin Vendor:Anchore Inc. Version:0.6.0] map[Name:scan Path:C:\Program Files\Docker\cli-plugins\docker-scan.exe SchemaVersion:0.1.0 ShortDescription:Docker Scan Vendor:Docker Inc. Version:v0.26.0] map[Name:
scout Path:C:\Program Files\Docker\cli-plugins\docker-scout.exe SchemaVersion:0.1.0 ShortDescription:Docker Scout Vendor:Docker Inc. Version:v1.4.1]] Warnings:<nil>}}
	I0308 03:14:05.873709    1880 out.go:177] * Utilisation du pilote docker basé sur le profil existant
	I0308 03:14:05.875717    1880 start.go:297] selected driver: docker
	I0308 03:14:05.875717    1880 start.go:901] validating driver "docker" against &{Name:functional-131400 KeepContext:false EmbedCerts:false MinikubeISO: KicBaseImage:gcr.io/k8s-minikube/kicbase-builds:v0.0.42-1708944392-18244@sha256:8610dac8144c3f59a6cf50871eb10395cea122e148262744231a04c396033b08 Memory:4000 CPUs:2 DiskSize:20000 Driver:docker HyperkitVpnKitSock: HyperkitVSockPorts:[] DockerEnv:[] ContainerVolumeMounts:[] InsecureRegistry:[] RegistryMirror:[] HostOnlyCIDR:192.168.59.1/24 HypervVirtualSwitch: HypervUseExternalSwitch:false HypervExternalAdapter: KVMNetwork:default KVMQemuURI:qemu:///system KVMGPU:false KVMHidden:false KVMNUMACount:1 APIServerPort:8441 DockerOpt:[] DisableDriverMounts:false NFSShare:[] NFSSharesRoot:/nfsshares UUID: NoVTXCheck:false DNSProxy:false HostDNSResolver:true HostOnlyNicType:virtio NatNicType:virtio SSHIPAddress: SSHUser:root SSHKey: SSHPort:22 KubernetesConfig:{KubernetesVersion:v1.28.4 ClusterName:functional-131400 Namespace:default APIServerHAVIP: APIServerNa
me:minikubeCA APIServerNames:[] APIServerIPs:[] DNSDomain:cluster.local ContainerRuntime:docker CRISocket: NetworkPlugin:cni FeatureGates: ServiceCIDR:10.96.0.0/12 ImageRepository: LoadBalancerStartIP: LoadBalancerEndIP: CustomIngressCert: RegistryAliases: ExtraOptions:[{Component:apiserver Key:enable-admission-plugins Value:NamespaceAutoProvision}] ShouldLoadCachedImages:true EnableDefaultCNI:false CNI:} Nodes:[{Name: IP:192.168.49.2 Port:8441 KubernetesVersion:v1.28.4 ContainerRuntime:docker ControlPlane:true Worker:true}] Addons:map[default-storageclass:true storage-provisioner:true] CustomAddonImages:map[] CustomAddonRegistries:map[] VerifyComponents:map[apiserver:true apps_running:true default_sa:true extra:true kubelet:true node_ready:true system_pods:true] StartHostTimeout:6m0s ScheduledStop:<nil> ExposedPorts:[] ListenAddress: Network: Subnet: MultiNodeRequested:false ExtraDisks:0 CertExpiration:26280h0m0s Mount:false MountString:C:\Users\jenkins.minikube4:/minikube-host Mount9PVersion:9p2000.L MountG
ID:docker MountIP: MountMSize:262144 MountOptions:[] MountPort:0 MountType:9p MountUID:docker BinaryMirror: DisableOptimizations:false DisableMetrics:false CustomQemuFirmwarePath: SocketVMnetClientPath: SocketVMnetPath: StaticIP: SSHAuthSock: SSHAgentPID:0 GPUs: AutoPauseInterval:1m0s}
	I0308 03:14:05.876698    1880 start.go:912] status for docker: {Installed:true Healthy:true Running:false NeedsImprovement:false Error:<nil> Reason: Fix: Doc: Version:}
	I0308 03:14:05.995714    1880 out.go:177] 
	W0308 03:14:05.997709    1880 out.go:239] X Fermeture en raison de RSRC_INSUFFICIENT_REQ_MEMORY : L'allocation de mémoire demandée 250 Mio est inférieure au minimum utilisable de 1800 Mo
	X Fermeture en raison de RSRC_INSUFFICIENT_REQ_MEMORY : L'allocation de mémoire demandée 250 Mio est inférieure au minimum utilisable de 1800 Mo
	I0308 03:14:06.001701    1880 out.go:177] 

                                                
                                                
** /stderr **
--- PASS: TestFunctional/parallel/InternationalLanguage (1.15s)

                                                
                                    
x
+
TestFunctional/parallel/StatusCmd (4.75s)

                                                
                                                
=== RUN   TestFunctional/parallel/StatusCmd
=== PAUSE TestFunctional/parallel/StatusCmd

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/StatusCmd
functional_test.go:850: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 status
functional_test.go:850: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 status: (1.5903114s)
functional_test.go:856: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 status -f host:{{.Host}},kublet:{{.Kubelet}},apiserver:{{.APIServer}},kubeconfig:{{.Kubeconfig}}
functional_test.go:856: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 status -f host:{{.Host}},kublet:{{.Kubelet}},apiserver:{{.APIServer}},kubeconfig:{{.Kubeconfig}}: (1.6486604s)
functional_test.go:868: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 status -o json
functional_test.go:868: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 status -o json: (1.5083716s)
--- PASS: TestFunctional/parallel/StatusCmd (4.75s)

                                                
                                    
x
+
TestFunctional/parallel/AddonsCmd (0.82s)

                                                
                                                
=== RUN   TestFunctional/parallel/AddonsCmd
=== PAUSE TestFunctional/parallel/AddonsCmd

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/AddonsCmd
functional_test.go:1686: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 addons list
functional_test.go:1698: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 addons list -o json
--- PASS: TestFunctional/parallel/AddonsCmd (0.82s)

                                                
                                    
x
+
TestFunctional/parallel/PersistentVolumeClaim (60.99s)

                                                
                                                
=== RUN   TestFunctional/parallel/PersistentVolumeClaim
=== PAUSE TestFunctional/parallel/PersistentVolumeClaim

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/PersistentVolumeClaim
functional_test_pvc_test.go:44: (dbg) TestFunctional/parallel/PersistentVolumeClaim: waiting 4m0s for pods matching "integration-test=storage-provisioner" in namespace "kube-system" ...
helpers_test.go:344: "storage-provisioner" [e34e2810-29e2-49ae-9cc6-6ac7a02461c4] Running
functional_test_pvc_test.go:44: (dbg) TestFunctional/parallel/PersistentVolumeClaim: integration-test=storage-provisioner healthy within 5.0318028s
functional_test_pvc_test.go:49: (dbg) Run:  kubectl --context functional-131400 get storageclass -o=json
functional_test_pvc_test.go:69: (dbg) Run:  kubectl --context functional-131400 apply -f testdata/storage-provisioner/pvc.yaml
functional_test_pvc_test.go:76: (dbg) Run:  kubectl --context functional-131400 get pvc myclaim -o=json
functional_test_pvc_test.go:125: (dbg) Run:  kubectl --context functional-131400 apply -f testdata/storage-provisioner/pod.yaml
functional_test_pvc_test.go:130: (dbg) TestFunctional/parallel/PersistentVolumeClaim: waiting 3m0s for pods matching "test=storage-provisioner" in namespace "default" ...
helpers_test.go:344: "sp-pod" [647a46c3-a643-45ae-84fe-49d8d789dab2] Pending
helpers_test.go:344: "sp-pod" [647a46c3-a643-45ae-84fe-49d8d789dab2] Pending / Ready:ContainersNotReady (containers with unready status: [myfrontend]) / ContainersReady:ContainersNotReady (containers with unready status: [myfrontend])
helpers_test.go:344: "sp-pod" [647a46c3-a643-45ae-84fe-49d8d789dab2] Running
functional_test_pvc_test.go:130: (dbg) TestFunctional/parallel/PersistentVolumeClaim: test=storage-provisioner healthy within 43.0185589s
functional_test_pvc_test.go:100: (dbg) Run:  kubectl --context functional-131400 exec sp-pod -- touch /tmp/mount/foo
functional_test_pvc_test.go:106: (dbg) Run:  kubectl --context functional-131400 delete -f testdata/storage-provisioner/pod.yaml
functional_test_pvc_test.go:106: (dbg) Done: kubectl --context functional-131400 delete -f testdata/storage-provisioner/pod.yaml: (1.5178581s)
functional_test_pvc_test.go:125: (dbg) Run:  kubectl --context functional-131400 apply -f testdata/storage-provisioner/pod.yaml
functional_test_pvc_test.go:130: (dbg) TestFunctional/parallel/PersistentVolumeClaim: waiting 3m0s for pods matching "test=storage-provisioner" in namespace "default" ...
helpers_test.go:344: "sp-pod" [13fd341c-dc73-4661-b459-2a526ee99ffd] Pending
helpers_test.go:344: "sp-pod" [13fd341c-dc73-4661-b459-2a526ee99ffd] Pending / Ready:ContainersNotReady (containers with unready status: [myfrontend]) / ContainersReady:ContainersNotReady (containers with unready status: [myfrontend])
helpers_test.go:344: "sp-pod" [13fd341c-dc73-4661-b459-2a526ee99ffd] Running
functional_test_pvc_test.go:130: (dbg) TestFunctional/parallel/PersistentVolumeClaim: test=storage-provisioner healthy within 9.0252055s
functional_test_pvc_test.go:114: (dbg) Run:  kubectl --context functional-131400 exec sp-pod -- ls /tmp/mount
--- PASS: TestFunctional/parallel/PersistentVolumeClaim (60.99s)

                                                
                                    
x
+
TestFunctional/parallel/SSHCmd (2.5s)

                                                
                                                
=== RUN   TestFunctional/parallel/SSHCmd
=== PAUSE TestFunctional/parallel/SSHCmd

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/SSHCmd
functional_test.go:1721: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh "echo hello"
functional_test.go:1721: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh "echo hello": (1.2076297s)
functional_test.go:1738: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh "cat /etc/hostname"
functional_test.go:1738: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh "cat /etc/hostname": (1.2941274s)
--- PASS: TestFunctional/parallel/SSHCmd (2.50s)

                                                
                                    
x
+
TestFunctional/parallel/CpCmd (7.54s)

                                                
                                                
=== RUN   TestFunctional/parallel/CpCmd
=== PAUSE TestFunctional/parallel/CpCmd

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/CpCmd
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 cp testdata\cp-test.txt /home/docker/cp-test.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 cp testdata\cp-test.txt /home/docker/cp-test.txt: (1.0454324s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh -n functional-131400 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh -n functional-131400 "sudo cat /home/docker/cp-test.txt": (1.342198s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 cp functional-131400:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestFunctionalparallelCpCmd2808094043\001\cp-test.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 cp functional-131400:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestFunctionalparallelCpCmd2808094043\001\cp-test.txt: (1.2729179s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh -n functional-131400 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh -n functional-131400 "sudo cat /home/docker/cp-test.txt": (1.2419936s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 cp testdata\cp-test.txt /tmp/does/not/exist/cp-test.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 cp testdata\cp-test.txt /tmp/does/not/exist/cp-test.txt: (1.2386249s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh -n functional-131400 "sudo cat /tmp/does/not/exist/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh -n functional-131400 "sudo cat /tmp/does/not/exist/cp-test.txt": (1.3945989s)
--- PASS: TestFunctional/parallel/CpCmd (7.54s)

                                                
                                    
x
+
TestFunctional/parallel/MySQL (72.16s)

                                                
                                                
=== RUN   TestFunctional/parallel/MySQL
=== PAUSE TestFunctional/parallel/MySQL

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/MySQL
functional_test.go:1789: (dbg) Run:  kubectl --context functional-131400 replace --force -f testdata\mysql.yaml
functional_test.go:1795: (dbg) TestFunctional/parallel/MySQL: waiting 10m0s for pods matching "app=mysql" in namespace "default" ...
helpers_test.go:344: "mysql-859648c796-lxcr6" [306848c9-7d96-435a-b11b-2778d54b1d8d] Pending
helpers_test.go:344: "mysql-859648c796-lxcr6" [306848c9-7d96-435a-b11b-2778d54b1d8d] Pending / Ready:ContainersNotReady (containers with unready status: [mysql]) / ContainersReady:ContainersNotReady (containers with unready status: [mysql])
helpers_test.go:344: "mysql-859648c796-lxcr6" [306848c9-7d96-435a-b11b-2778d54b1d8d] Running
functional_test.go:1795: (dbg) TestFunctional/parallel/MySQL: app=mysql healthy within 57.0111057s
functional_test.go:1803: (dbg) Run:  kubectl --context functional-131400 exec mysql-859648c796-lxcr6 -- mysql -ppassword -e "show databases;"
functional_test.go:1803: (dbg) Non-zero exit: kubectl --context functional-131400 exec mysql-859648c796-lxcr6 -- mysql -ppassword -e "show databases;": exit status 1 (281.7669ms)

                                                
                                                
** stderr ** 
	mysql: [Warning] Using a password on the command line interface can be insecure.
	ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
	command terminated with exit code 1

                                                
                                                
** /stderr **
functional_test.go:1803: (dbg) Run:  kubectl --context functional-131400 exec mysql-859648c796-lxcr6 -- mysql -ppassword -e "show databases;"
functional_test.go:1803: (dbg) Non-zero exit: kubectl --context functional-131400 exec mysql-859648c796-lxcr6 -- mysql -ppassword -e "show databases;": exit status 1 (318.0938ms)

                                                
                                                
** stderr ** 
	mysql: [Warning] Using a password on the command line interface can be insecure.
	ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
	command terminated with exit code 1

                                                
                                                
** /stderr **
functional_test.go:1803: (dbg) Run:  kubectl --context functional-131400 exec mysql-859648c796-lxcr6 -- mysql -ppassword -e "show databases;"
functional_test.go:1803: (dbg) Non-zero exit: kubectl --context functional-131400 exec mysql-859648c796-lxcr6 -- mysql -ppassword -e "show databases;": exit status 1 (348.2917ms)

                                                
                                                
** stderr ** 
	mysql: [Warning] Using a password on the command line interface can be insecure.
	ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
	command terminated with exit code 1

                                                
                                                
** /stderr **
functional_test.go:1803: (dbg) Run:  kubectl --context functional-131400 exec mysql-859648c796-lxcr6 -- mysql -ppassword -e "show databases;"
functional_test.go:1803: (dbg) Non-zero exit: kubectl --context functional-131400 exec mysql-859648c796-lxcr6 -- mysql -ppassword -e "show databases;": exit status 1 (346.5407ms)

                                                
                                                
** stderr ** 
	mysql: [Warning] Using a password on the command line interface can be insecure.
	ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
	command terminated with exit code 1

                                                
                                                
** /stderr **
functional_test.go:1803: (dbg) Run:  kubectl --context functional-131400 exec mysql-859648c796-lxcr6 -- mysql -ppassword -e "show databases;"
functional_test.go:1803: (dbg) Non-zero exit: kubectl --context functional-131400 exec mysql-859648c796-lxcr6 -- mysql -ppassword -e "show databases;": exit status 1 (270.4766ms)

                                                
                                                
** stderr ** 
	mysql: [Warning] Using a password on the command line interface can be insecure.
	ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
	command terminated with exit code 1

                                                
                                                
** /stderr **
functional_test.go:1803: (dbg) Run:  kubectl --context functional-131400 exec mysql-859648c796-lxcr6 -- mysql -ppassword -e "show databases;"
E0308 03:16:08.865412    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
--- PASS: TestFunctional/parallel/MySQL (72.16s)

                                                
                                    
x
+
TestFunctional/parallel/FileSync (1.18s)

                                                
                                                
=== RUN   TestFunctional/parallel/FileSync
=== PAUSE TestFunctional/parallel/FileSync

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/FileSync
functional_test.go:1925: Checking for existence of /etc/test/nested/copy/6728/hosts within VM
functional_test.go:1927: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo cat /etc/test/nested/copy/6728/hosts"
functional_test.go:1927: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo cat /etc/test/nested/copy/6728/hosts": (1.1849083s)
functional_test.go:1932: file sync test content: Test file for checking file sync process
--- PASS: TestFunctional/parallel/FileSync (1.18s)

                                                
                                    
x
+
TestFunctional/parallel/CertSync (7.27s)

                                                
                                                
=== RUN   TestFunctional/parallel/CertSync
=== PAUSE TestFunctional/parallel/CertSync

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/CertSync
functional_test.go:1968: Checking for existence of /etc/ssl/certs/6728.pem within VM
functional_test.go:1969: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo cat /etc/ssl/certs/6728.pem"
functional_test.go:1969: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo cat /etc/ssl/certs/6728.pem": (1.0871704s)
functional_test.go:1968: Checking for existence of /usr/share/ca-certificates/6728.pem within VM
functional_test.go:1969: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo cat /usr/share/ca-certificates/6728.pem"
functional_test.go:1969: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo cat /usr/share/ca-certificates/6728.pem": (1.0974662s)
functional_test.go:1968: Checking for existence of /etc/ssl/certs/51391683.0 within VM
functional_test.go:1969: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo cat /etc/ssl/certs/51391683.0"
functional_test.go:1969: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo cat /etc/ssl/certs/51391683.0": (1.1350743s)
functional_test.go:1995: Checking for existence of /etc/ssl/certs/67282.pem within VM
functional_test.go:1996: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo cat /etc/ssl/certs/67282.pem"
functional_test.go:1996: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo cat /etc/ssl/certs/67282.pem": (1.5717301s)
functional_test.go:1995: Checking for existence of /usr/share/ca-certificates/67282.pem within VM
functional_test.go:1996: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo cat /usr/share/ca-certificates/67282.pem"
functional_test.go:1996: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo cat /usr/share/ca-certificates/67282.pem": (1.1904021s)
functional_test.go:1995: Checking for existence of /etc/ssl/certs/3ec20f2e.0 within VM
functional_test.go:1996: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo cat /etc/ssl/certs/3ec20f2e.0"
functional_test.go:1996: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo cat /etc/ssl/certs/3ec20f2e.0": (1.1828977s)
--- PASS: TestFunctional/parallel/CertSync (7.27s)

                                                
                                    
x
+
TestFunctional/parallel/NodeLabels (0.18s)

                                                
                                                
=== RUN   TestFunctional/parallel/NodeLabels
=== PAUSE TestFunctional/parallel/NodeLabels

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/NodeLabels
functional_test.go:218: (dbg) Run:  kubectl --context functional-131400 get nodes --output=go-template "--template='{{range $k, $v := (index .items 0).metadata.labels}}{{$k}} {{end}}'"
--- PASS: TestFunctional/parallel/NodeLabels (0.18s)

                                                
                                    
x
+
TestFunctional/parallel/NonActiveRuntimeDisabled (1.25s)

                                                
                                                
=== RUN   TestFunctional/parallel/NonActiveRuntimeDisabled
=== PAUSE TestFunctional/parallel/NonActiveRuntimeDisabled

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/NonActiveRuntimeDisabled
functional_test.go:2023: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo systemctl is-active crio"
functional_test.go:2023: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p functional-131400 ssh "sudo systemctl is-active crio": exit status 1 (1.2486431s)

                                                
                                                
-- stdout --
	inactive

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:13:35.058499    7620 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	ssh: Process exited with status 3

                                                
                                                
** /stderr **
--- PASS: TestFunctional/parallel/NonActiveRuntimeDisabled (1.25s)

                                                
                                    
x
+
TestFunctional/parallel/License (3.23s)

                                                
                                                
=== RUN   TestFunctional/parallel/License
=== PAUSE TestFunctional/parallel/License

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/License
functional_test.go:2284: (dbg) Run:  out/minikube-windows-amd64.exe license
functional_test.go:2284: (dbg) Done: out/minikube-windows-amd64.exe license: (3.2181022s)
--- PASS: TestFunctional/parallel/License (3.23s)

                                                
                                    
x
+
TestFunctional/parallel/TunnelCmd/serial/RunSecondTunnel (1.43s)

                                                
                                                
=== RUN   TestFunctional/parallel/TunnelCmd/serial/RunSecondTunnel
functional_test_tunnel_test.go:154: (dbg) daemon: [out/minikube-windows-amd64.exe -p functional-131400 tunnel --alsologtostderr]
functional_test_tunnel_test.go:154: (dbg) daemon: [out/minikube-windows-amd64.exe -p functional-131400 tunnel --alsologtostderr]
functional_test_tunnel_test.go:194: (dbg) stopping [out/minikube-windows-amd64.exe -p functional-131400 tunnel --alsologtostderr] ...
helpers_test.go:490: unable to find parent, assuming dead: process does not exist
functional_test_tunnel_test.go:194: (dbg) stopping [out/minikube-windows-amd64.exe -p functional-131400 tunnel --alsologtostderr] ...
helpers_test.go:508: unable to kill pid 9412: OpenProcess: The parameter is incorrect.
helpers_test.go:508: unable to kill pid 2644: OpenProcess: The parameter is incorrect.
--- PASS: TestFunctional/parallel/TunnelCmd/serial/RunSecondTunnel (1.43s)

                                                
                                    
x
+
TestFunctional/parallel/TunnelCmd/serial/StartTunnel (0s)

                                                
                                                
=== RUN   TestFunctional/parallel/TunnelCmd/serial/StartTunnel
functional_test_tunnel_test.go:129: (dbg) daemon: [out/minikube-windows-amd64.exe -p functional-131400 tunnel --alsologtostderr]
--- PASS: TestFunctional/parallel/TunnelCmd/serial/StartTunnel (0.00s)

                                                
                                    
x
+
TestFunctional/parallel/TunnelCmd/serial/WaitService/Setup (16.59s)

                                                
                                                
=== RUN   TestFunctional/parallel/TunnelCmd/serial/WaitService/Setup
functional_test_tunnel_test.go:212: (dbg) Run:  kubectl --context functional-131400 apply -f testdata\testsvc.yaml
functional_test_tunnel_test.go:216: (dbg) TestFunctional/parallel/TunnelCmd/serial/WaitService/Setup: waiting 4m0s for pods matching "run=nginx-svc" in namespace "default" ...
helpers_test.go:344: "nginx-svc" [147d39e2-8257-40c6-8f33-623b6d034264] Pending / Ready:ContainersNotReady (containers with unready status: [nginx]) / ContainersReady:ContainersNotReady (containers with unready status: [nginx])
helpers_test.go:344: "nginx-svc" [147d39e2-8257-40c6-8f33-623b6d034264] Running
functional_test_tunnel_test.go:216: (dbg) TestFunctional/parallel/TunnelCmd/serial/WaitService/Setup: run=nginx-svc healthy within 16.011901s
--- PASS: TestFunctional/parallel/TunnelCmd/serial/WaitService/Setup (16.59s)

                                                
                                    
x
+
TestFunctional/parallel/ServiceCmd/DeployApp (22.46s)

                                                
                                                
=== RUN   TestFunctional/parallel/ServiceCmd/DeployApp
functional_test.go:1435: (dbg) Run:  kubectl --context functional-131400 create deployment hello-node --image=registry.k8s.io/echoserver:1.8
functional_test.go:1441: (dbg) Run:  kubectl --context functional-131400 expose deployment hello-node --type=NodePort --port=8080
functional_test.go:1446: (dbg) TestFunctional/parallel/ServiceCmd/DeployApp: waiting 10m0s for pods matching "app=hello-node" in namespace "default" ...
helpers_test.go:344: "hello-node-d7447cc7f-crjr4" [8f798ab9-ae7f-4508-a9c0-45bbd1948f0a] Pending / Ready:ContainersNotReady (containers with unready status: [echoserver]) / ContainersReady:ContainersNotReady (containers with unready status: [echoserver])
helpers_test.go:344: "hello-node-d7447cc7f-crjr4" [8f798ab9-ae7f-4508-a9c0-45bbd1948f0a] Running
functional_test.go:1446: (dbg) TestFunctional/parallel/ServiceCmd/DeployApp: app=hello-node healthy within 22.0423945s
--- PASS: TestFunctional/parallel/ServiceCmd/DeployApp (22.46s)

                                                
                                    
x
+
TestFunctional/parallel/TunnelCmd/serial/WaitService/IngressIP (0.19s)

                                                
                                                
=== RUN   TestFunctional/parallel/TunnelCmd/serial/WaitService/IngressIP
functional_test_tunnel_test.go:234: (dbg) Run:  kubectl --context functional-131400 get svc nginx-svc -o jsonpath={.status.loadBalancer.ingress[0].ip}
--- PASS: TestFunctional/parallel/TunnelCmd/serial/WaitService/IngressIP (0.19s)

                                                
                                    
x
+
TestFunctional/parallel/TunnelCmd/serial/DeleteTunnel (0.22s)

                                                
                                                
=== RUN   TestFunctional/parallel/TunnelCmd/serial/DeleteTunnel
functional_test_tunnel_test.go:434: (dbg) stopping [out/minikube-windows-amd64.exe -p functional-131400 tunnel --alsologtostderr] ...
helpers_test.go:508: unable to kill pid 8536: TerminateProcess: Access is denied.
helpers_test.go:508: unable to kill pid 3556: TerminateProcess: Access is denied.
--- PASS: TestFunctional/parallel/TunnelCmd/serial/DeleteTunnel (0.22s)

                                                
                                    
x
+
TestFunctional/parallel/ProfileCmd/profile_not_create (1.86s)

                                                
                                                
=== RUN   TestFunctional/parallel/ProfileCmd/profile_not_create
functional_test.go:1266: (dbg) Run:  out/minikube-windows-amd64.exe profile lis
functional_test.go:1271: (dbg) Run:  out/minikube-windows-amd64.exe profile list --output json
functional_test.go:1271: (dbg) Done: out/minikube-windows-amd64.exe profile list --output json: (1.4037723s)
--- PASS: TestFunctional/parallel/ProfileCmd/profile_not_create (1.86s)

                                                
                                    
x
+
TestFunctional/parallel/ProfileCmd/profile_list (1.85s)

                                                
                                                
=== RUN   TestFunctional/parallel/ProfileCmd/profile_list
functional_test.go:1306: (dbg) Run:  out/minikube-windows-amd64.exe profile list
functional_test.go:1306: (dbg) Done: out/minikube-windows-amd64.exe profile list: (1.5910366s)
functional_test.go:1311: Took "1.5911491s" to run "out/minikube-windows-amd64.exe profile list"
functional_test.go:1320: (dbg) Run:  out/minikube-windows-amd64.exe profile list -l
functional_test.go:1325: Took "254.2941ms" to run "out/minikube-windows-amd64.exe profile list -l"
--- PASS: TestFunctional/parallel/ProfileCmd/profile_list (1.85s)

                                                
                                    
x
+
TestFunctional/parallel/ProfileCmd/profile_json_output (1.83s)

                                                
                                                
=== RUN   TestFunctional/parallel/ProfileCmd/profile_json_output
functional_test.go:1357: (dbg) Run:  out/minikube-windows-amd64.exe profile list -o json
functional_test.go:1357: (dbg) Done: out/minikube-windows-amd64.exe profile list -o json: (1.5232728s)
functional_test.go:1362: Took "1.5233297s" to run "out/minikube-windows-amd64.exe profile list -o json"
functional_test.go:1370: (dbg) Run:  out/minikube-windows-amd64.exe profile list -o json --light
functional_test.go:1375: Took "302.6313ms" to run "out/minikube-windows-amd64.exe profile list -o json --light"
--- PASS: TestFunctional/parallel/ProfileCmd/profile_json_output (1.83s)

                                                
                                    
x
+
TestFunctional/parallel/ServiceCmd/List (1.73s)

                                                
                                                
=== RUN   TestFunctional/parallel/ServiceCmd/List
functional_test.go:1455: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 service list
functional_test.go:1455: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 service list: (1.7324205s)
--- PASS: TestFunctional/parallel/ServiceCmd/List (1.73s)

                                                
                                    
x
+
TestFunctional/parallel/ServiceCmd/JSONOutput (1.63s)

                                                
                                                
=== RUN   TestFunctional/parallel/ServiceCmd/JSONOutput
functional_test.go:1485: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 service list -o json
functional_test.go:1485: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 service list -o json: (1.632013s)
functional_test.go:1490: Took "1.632013s" to run "out/minikube-windows-amd64.exe -p functional-131400 service list -o json"
--- PASS: TestFunctional/parallel/ServiceCmd/JSONOutput (1.63s)

                                                
                                    
x
+
TestFunctional/parallel/ServiceCmd/HTTPS (15.02s)

                                                
                                                
=== RUN   TestFunctional/parallel/ServiceCmd/HTTPS
functional_test.go:1505: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 service --namespace=default --https --url hello-node
functional_test.go:1505: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p functional-131400 service --namespace=default --https --url hello-node: exit status 1 (15.0165361s)

                                                
                                                
-- stdout --
	https://127.0.0.1:63693

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:14:08.406738    3532 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	! Because you are using a Docker driver on windows, the terminal needs to be open to run it.

                                                
                                                
** /stderr **
functional_test.go:1518: found endpoint: https://127.0.0.1:63693
--- PASS: TestFunctional/parallel/ServiceCmd/HTTPS (15.02s)

                                                
                                    
x
+
TestFunctional/parallel/ImageCommands/ImageListShort (1.06s)

                                                
                                                
=== RUN   TestFunctional/parallel/ImageCommands/ImageListShort
=== PAUSE TestFunctional/parallel/ImageCommands/ImageListShort

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/ImageCommands/ImageListShort
functional_test.go:260: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image ls --format short --alsologtostderr
functional_test.go:260: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 image ls --format short --alsologtostderr: (1.0603785s)
functional_test.go:265: (dbg) Stdout: out/minikube-windows-amd64.exe -p functional-131400 image ls --format short --alsologtostderr:
registry.k8s.io/pause:latest
registry.k8s.io/pause:3.9
registry.k8s.io/pause:3.3
registry.k8s.io/pause:3.1
registry.k8s.io/kube-scheduler:v1.28.4
registry.k8s.io/kube-proxy:v1.28.4
registry.k8s.io/kube-controller-manager:v1.28.4
registry.k8s.io/kube-apiserver:v1.28.4
registry.k8s.io/etcd:3.5.9-0
registry.k8s.io/echoserver:1.8
registry.k8s.io/coredns/coredns:v1.10.1
gcr.io/k8s-minikube/storage-provisioner:v5
gcr.io/google-containers/addon-resizer:functional-131400
docker.io/library/nginx:latest
docker.io/library/nginx:alpine
docker.io/library/minikube-local-cache-test:functional-131400
functional_test.go:268: (dbg) Stderr: out/minikube-windows-amd64.exe -p functional-131400 image ls --format short --alsologtostderr:
W0308 03:14:59.323304    8116 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
I0308 03:14:59.428308    8116 out.go:291] Setting OutFile to fd 976 ...
I0308 03:14:59.429334    8116 out.go:338] TERM=,COLORTERM=, which probably does not support color
I0308 03:14:59.429334    8116 out.go:304] Setting ErrFile to fd 956...
I0308 03:14:59.429334    8116 out.go:338] TERM=,COLORTERM=, which probably does not support color
I0308 03:14:59.450314    8116 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
I0308 03:14:59.451313    8116 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
I0308 03:14:59.484330    8116 cli_runner.go:164] Run: docker container inspect functional-131400 --format={{.State.Status}}
I0308 03:14:59.741336    8116 ssh_runner.go:195] Run: systemctl --version
I0308 03:14:59.755369    8116 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
I0308 03:14:59.975343    8116 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:63407 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\functional-131400\id_rsa Username:docker}
I0308 03:15:00.129719    8116 ssh_runner.go:195] Run: docker images --no-trunc --format "{{json .}}"
--- PASS: TestFunctional/parallel/ImageCommands/ImageListShort (1.06s)

                                                
                                    
x
+
TestFunctional/parallel/ImageCommands/ImageListTable (1.39s)

                                                
                                                
=== RUN   TestFunctional/parallel/ImageCommands/ImageListTable
=== PAUSE TestFunctional/parallel/ImageCommands/ImageListTable

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/ImageCommands/ImageListTable
functional_test.go:260: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image ls --format table --alsologtostderr
functional_test.go:260: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 image ls --format table --alsologtostderr: (1.3876646s)
functional_test.go:265: (dbg) Stdout: out/minikube-windows-amd64.exe -p functional-131400 image ls --format table --alsologtostderr:
|---------------------------------------------|-------------------|---------------|--------|
|                    Image                    |        Tag        |   Image ID    |  Size  |
|---------------------------------------------|-------------------|---------------|--------|
| registry.k8s.io/kube-controller-manager     | v1.28.4           | d058aa5ab969c | 122MB  |
| registry.k8s.io/pause                       | 3.9               | e6f1816883972 | 744kB  |
| gcr.io/k8s-minikube/storage-provisioner     | v5                | 6e38f40d628db | 31.5MB |
| docker.io/library/nginx                     | latest            | e4720093a3c13 | 187MB  |
| registry.k8s.io/pause                       | 3.3               | 0184c1613d929 | 683kB  |
| registry.k8s.io/pause                       | 3.1               | da86e6ba6ca19 | 742kB  |
| registry.k8s.io/pause                       | latest            | 350b164e7ae1d | 240kB  |
| docker.io/library/minikube-local-cache-test | functional-131400 | 5d17b566f9d87 | 30B    |
| registry.k8s.io/echoserver                  | 1.8               | 82e4c8a736a4f | 95.4MB |
| registry.k8s.io/kube-proxy                  | v1.28.4           | 83f6cc407eed8 | 73.2MB |
| registry.k8s.io/kube-apiserver              | v1.28.4           | 7fe0e6f37db33 | 126MB  |
| registry.k8s.io/kube-scheduler              | v1.28.4           | e3db313c6dbc0 | 60.1MB |
| registry.k8s.io/etcd                        | 3.5.9-0           | 73deb9a3f7025 | 294MB  |
| registry.k8s.io/coredns/coredns             | v1.10.1           | ead0a4a53df89 | 53.6MB |
| gcr.io/google-containers/addon-resizer      | functional-131400 | ffd4cfbbe753e | 32.9MB |
| docker.io/library/nginx                     | alpine            | 6913ed9ec8d00 | 42.6MB |
|---------------------------------------------|-------------------|---------------|--------|
functional_test.go:268: (dbg) Stderr: out/minikube-windows-amd64.exe -p functional-131400 image ls --format table --alsologtostderr:
W0308 03:15:03.052464    9064 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
I0308 03:15:03.168440    9064 out.go:291] Setting OutFile to fd 896 ...
I0308 03:15:03.169444    9064 out.go:338] TERM=,COLORTERM=, which probably does not support color
I0308 03:15:03.169444    9064 out.go:304] Setting ErrFile to fd 824...
I0308 03:15:03.169444    9064 out.go:338] TERM=,COLORTERM=, which probably does not support color
I0308 03:15:03.190431    9064 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
I0308 03:15:03.191449    9064 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
I0308 03:15:03.223451    9064 cli_runner.go:164] Run: docker container inspect functional-131400 --format={{.State.Status}}
I0308 03:15:03.479457    9064 ssh_runner.go:195] Run: systemctl --version
I0308 03:15:03.493462    9064 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
I0308 03:15:03.727482    9064 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:63407 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\functional-131400\id_rsa Username:docker}
I0308 03:15:03.945919    9064 ssh_runner.go:195] Run: docker images --no-trunc --format "{{json .}}"
--- PASS: TestFunctional/parallel/ImageCommands/ImageListTable (1.39s)

                                                
                                    
x
+
TestFunctional/parallel/ImageCommands/ImageListJson (1.11s)

                                                
                                                
=== RUN   TestFunctional/parallel/ImageCommands/ImageListJson
=== PAUSE TestFunctional/parallel/ImageCommands/ImageListJson

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/ImageCommands/ImageListJson
functional_test.go:260: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image ls --format json --alsologtostderr
functional_test.go:260: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 image ls --format json --alsologtostderr: (1.1121457s)
functional_test.go:265: (dbg) Stdout: out/minikube-windows-amd64.exe -p functional-131400 image ls --format json --alsologtostderr:
[{"id":"6913ed9ec8d009744018c1740879327fe2e085935b2cce7a234bf05347b670d7","repoDigests":[],"repoTags":["docker.io/library/nginx:alpine"],"size":"42600000"},{"id":"d058aa5ab969ce7b84d25e7188be1f80633b18db8ea7d02d9d0a78e676236591","repoDigests":[],"repoTags":["registry.k8s.io/kube-controller-manager:v1.28.4"],"size":"122000000"},{"id":"da86e6ba6ca197bf6bc5e9d900febd906b133eaa4750e6bed647b0fbe50ed43e","repoDigests":[],"repoTags":["registry.k8s.io/pause:3.1"],"size":"742000"},{"id":"5d17b566f9d87d9a0b1a655402d6a7b0eab95bdeb4938a4f873826e4ff66d6a4","repoDigests":[],"repoTags":["docker.io/library/minikube-local-cache-test:functional-131400"],"size":"30"},{"id":"83f6cc407eed88d214aad97f3539bde5c8e485ff14424cd021a3a2899304398e","repoDigests":[],"repoTags":["registry.k8s.io/kube-proxy:v1.28.4"],"size":"73200000"},{"id":"73deb9a3f702532592a4167455f8bf2e5f5d900bcc959ba2fd2d35c321de1af9","repoDigests":[],"repoTags":["registry.k8s.io/etcd:3.5.9-0"],"size":"294000000"},{"id":"ffd4cfbbe753e62419e129ee2ac618beb94e51b
aa7471df5038b0b516b59cf91","repoDigests":[],"repoTags":["gcr.io/google-containers/addon-resizer:functional-131400"],"size":"32900000"},{"id":"82e4c8a736a4fcf22b5ef9f6a4ff6207064c7187d7694bf97bd561605a538410","repoDigests":[],"repoTags":["registry.k8s.io/echoserver:1.8"],"size":"95400000"},{"id":"e3db313c6dbc065d4ac3b32c7a6f2a878949031b881d217b63881a109c5cfba1","repoDigests":[],"repoTags":["registry.k8s.io/kube-scheduler:v1.28.4"],"size":"60100000"},{"id":"6e38f40d628db3002f5617342c8872c935de530d867d0f709a2fbda1a302a562","repoDigests":[],"repoTags":["gcr.io/k8s-minikube/storage-provisioner:v5"],"size":"31500000"},{"id":"0184c1613d92931126feb4c548e5da11015513b9e4c104e7305ee8b53b50a9da","repoDigests":[],"repoTags":["registry.k8s.io/pause:3.3"],"size":"683000"},{"id":"ead0a4a53df89fd173874b46093b6e62d8c72967bbf606d672c9e8c9b601a4fc","repoDigests":[],"repoTags":["registry.k8s.io/coredns/coredns:v1.10.1"],"size":"53600000"},{"id":"7fe0e6f37db33464725e616a12ccc4e36970370005a2b09683a974db6350c257","repoDigests":[],"r
epoTags":["registry.k8s.io/kube-apiserver:v1.28.4"],"size":"126000000"},{"id":"e6f1816883972d4be47bd48879a08919b96afcd344132622e4d444987919323c","repoDigests":[],"repoTags":["registry.k8s.io/pause:3.9"],"size":"744000"},{"id":"350b164e7ae1dcddeffadd65c76226c9b6dc5553f5179153fb0e36b78f2a5e06","repoDigests":[],"repoTags":["registry.k8s.io/pause:latest"],"size":"240000"},{"id":"e4720093a3c1381245b53a5a51b417963b3c4472d3f47fc301930a4f3b17666a","repoDigests":[],"repoTags":["docker.io/library/nginx:latest"],"size":"187000000"}]
functional_test.go:268: (dbg) Stderr: out/minikube-windows-amd64.exe -p functional-131400 image ls --format json --alsologtostderr:
W0308 03:15:01.950871   11432 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
I0308 03:15:02.050858   11432 out.go:291] Setting OutFile to fd 776 ...
I0308 03:15:02.051857   11432 out.go:338] TERM=,COLORTERM=, which probably does not support color
I0308 03:15:02.051857   11432 out.go:304] Setting ErrFile to fd 816...
I0308 03:15:02.051857   11432 out.go:338] TERM=,COLORTERM=, which probably does not support color
I0308 03:15:02.074858   11432 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
I0308 03:15:02.074858   11432 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
I0308 03:15:02.107854   11432 cli_runner.go:164] Run: docker container inspect functional-131400 --format={{.State.Status}}
I0308 03:15:02.348877   11432 ssh_runner.go:195] Run: systemctl --version
I0308 03:15:02.365865   11432 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
I0308 03:15:02.612877   11432 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:63407 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\functional-131400\id_rsa Username:docker}
I0308 03:15:02.783423   11432 ssh_runner.go:195] Run: docker images --no-trunc --format "{{json .}}"
--- PASS: TestFunctional/parallel/ImageCommands/ImageListJson (1.11s)

                                                
                                    
x
+
TestFunctional/parallel/ImageCommands/ImageListYaml (1.27s)

                                                
                                                
=== RUN   TestFunctional/parallel/ImageCommands/ImageListYaml
=== PAUSE TestFunctional/parallel/ImageCommands/ImageListYaml

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/ImageCommands/ImageListYaml
functional_test.go:260: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image ls --format yaml --alsologtostderr
functional_test.go:260: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 image ls --format yaml --alsologtostderr: (1.2745836s)
functional_test.go:265: (dbg) Stdout: out/minikube-windows-amd64.exe -p functional-131400 image ls --format yaml --alsologtostderr:
- id: 7fe0e6f37db33464725e616a12ccc4e36970370005a2b09683a974db6350c257
repoDigests: []
repoTags:
- registry.k8s.io/kube-apiserver:v1.28.4
size: "126000000"
- id: d058aa5ab969ce7b84d25e7188be1f80633b18db8ea7d02d9d0a78e676236591
repoDigests: []
repoTags:
- registry.k8s.io/kube-controller-manager:v1.28.4
size: "122000000"
- id: 73deb9a3f702532592a4167455f8bf2e5f5d900bcc959ba2fd2d35c321de1af9
repoDigests: []
repoTags:
- registry.k8s.io/etcd:3.5.9-0
size: "294000000"
- id: 6913ed9ec8d009744018c1740879327fe2e085935b2cce7a234bf05347b670d7
repoDigests: []
repoTags:
- docker.io/library/nginx:alpine
size: "42600000"
- id: ffd4cfbbe753e62419e129ee2ac618beb94e51baa7471df5038b0b516b59cf91
repoDigests: []
repoTags:
- gcr.io/google-containers/addon-resizer:functional-131400
size: "32900000"
- id: 82e4c8a736a4fcf22b5ef9f6a4ff6207064c7187d7694bf97bd561605a538410
repoDigests: []
repoTags:
- registry.k8s.io/echoserver:1.8
size: "95400000"
- id: e6f1816883972d4be47bd48879a08919b96afcd344132622e4d444987919323c
repoDigests: []
repoTags:
- registry.k8s.io/pause:3.9
size: "744000"
- id: da86e6ba6ca197bf6bc5e9d900febd906b133eaa4750e6bed647b0fbe50ed43e
repoDigests: []
repoTags:
- registry.k8s.io/pause:3.1
size: "742000"
- id: 350b164e7ae1dcddeffadd65c76226c9b6dc5553f5179153fb0e36b78f2a5e06
repoDigests: []
repoTags:
- registry.k8s.io/pause:latest
size: "240000"
- id: 5d17b566f9d87d9a0b1a655402d6a7b0eab95bdeb4938a4f873826e4ff66d6a4
repoDigests: []
repoTags:
- docker.io/library/minikube-local-cache-test:functional-131400
size: "30"
- id: e4720093a3c1381245b53a5a51b417963b3c4472d3f47fc301930a4f3b17666a
repoDigests: []
repoTags:
- docker.io/library/nginx:latest
size: "187000000"
- id: ead0a4a53df89fd173874b46093b6e62d8c72967bbf606d672c9e8c9b601a4fc
repoDigests: []
repoTags:
- registry.k8s.io/coredns/coredns:v1.10.1
size: "53600000"
- id: 0184c1613d92931126feb4c548e5da11015513b9e4c104e7305ee8b53b50a9da
repoDigests: []
repoTags:
- registry.k8s.io/pause:3.3
size: "683000"
- id: 83f6cc407eed88d214aad97f3539bde5c8e485ff14424cd021a3a2899304398e
repoDigests: []
repoTags:
- registry.k8s.io/kube-proxy:v1.28.4
size: "73200000"
- id: e3db313c6dbc065d4ac3b32c7a6f2a878949031b881d217b63881a109c5cfba1
repoDigests: []
repoTags:
- registry.k8s.io/kube-scheduler:v1.28.4
size: "60100000"
- id: 6e38f40d628db3002f5617342c8872c935de530d867d0f709a2fbda1a302a562
repoDigests: []
repoTags:
- gcr.io/k8s-minikube/storage-provisioner:v5
size: "31500000"

                                                
                                                
functional_test.go:268: (dbg) Stderr: out/minikube-windows-amd64.exe -p functional-131400 image ls --format yaml --alsologtostderr:
W0308 03:15:00.378723    1760 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
I0308 03:15:00.489758    1760 out.go:291] Setting OutFile to fd 908 ...
I0308 03:15:00.490717    1760 out.go:338] TERM=,COLORTERM=, which probably does not support color
I0308 03:15:00.490717    1760 out.go:304] Setting ErrFile to fd 824...
I0308 03:15:00.490717    1760 out.go:338] TERM=,COLORTERM=, which probably does not support color
I0308 03:15:00.515738    1760 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
I0308 03:15:00.516728    1760 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
I0308 03:15:00.551722    1760 cli_runner.go:164] Run: docker container inspect functional-131400 --format={{.State.Status}}
I0308 03:15:00.786727    1760 ssh_runner.go:195] Run: systemctl --version
I0308 03:15:00.796727    1760 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
I0308 03:15:01.005155    1760 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:63407 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\functional-131400\id_rsa Username:docker}
I0308 03:15:01.342424    1760 ssh_runner.go:195] Run: docker images --no-trunc --format "{{json .}}"
--- PASS: TestFunctional/parallel/ImageCommands/ImageListYaml (1.27s)

                                                
                                    
x
+
TestFunctional/parallel/ImageCommands/ImageBuild (9.81s)

                                                
                                                
=== RUN   TestFunctional/parallel/ImageCommands/ImageBuild
=== PAUSE TestFunctional/parallel/ImageCommands/ImageBuild

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/ImageCommands/ImageBuild
functional_test.go:307: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 ssh pgrep buildkitd
functional_test.go:307: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p functional-131400 ssh pgrep buildkitd: exit status 1 (1.595017s)

                                                
                                                
** stderr ** 
	W0308 03:15:01.647980    7756 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	ssh: Process exited with status 1

                                                
                                                
** /stderr **
functional_test.go:314: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image build -t localhost/my-image:functional-131400 testdata\build --alsologtostderr
functional_test.go:314: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 image build -t localhost/my-image:functional-131400 testdata\build --alsologtostderr: (7.4228694s)
functional_test.go:322: (dbg) Stderr: out/minikube-windows-amd64.exe -p functional-131400 image build -t localhost/my-image:functional-131400 testdata\build --alsologtostderr:
W0308 03:15:03.254444    3240 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
I0308 03:15:03.360453    3240 out.go:291] Setting OutFile to fd 648 ...
I0308 03:15:03.377447    3240 out.go:338] TERM=,COLORTERM=, which probably does not support color
I0308 03:15:03.377447    3240 out.go:304] Setting ErrFile to fd 1016...
I0308 03:15:03.377447    3240 out.go:338] TERM=,COLORTERM=, which probably does not support color
I0308 03:15:03.397447    3240 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
I0308 03:15:03.419441    3240 config.go:182] Loaded profile config "functional-131400": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
I0308 03:15:03.451465    3240 cli_runner.go:164] Run: docker container inspect functional-131400 --format={{.State.Status}}
I0308 03:15:03.713463    3240 ssh_runner.go:195] Run: systemctl --version
I0308 03:15:03.727482    3240 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" functional-131400
I0308 03:15:03.958248    3240 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:63407 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\functional-131400\id_rsa Username:docker}
I0308 03:15:04.313140    3240 build_images.go:151] Building image from path: C:\Users\jenkins.minikube4\AppData\Local\Temp\build.1899223492.tar
I0308 03:15:04.330144    3240 ssh_runner.go:195] Run: sudo mkdir -p /var/lib/minikube/build
I0308 03:15:04.368168    3240 ssh_runner.go:195] Run: stat -c "%s %y" /var/lib/minikube/build/build.1899223492.tar
I0308 03:15:04.379156    3240 ssh_runner.go:352] existence check for /var/lib/minikube/build/build.1899223492.tar: stat -c "%s %y" /var/lib/minikube/build/build.1899223492.tar: Process exited with status 1
stdout:

                                                
                                                
stderr:
stat: cannot statx '/var/lib/minikube/build/build.1899223492.tar': No such file or directory
I0308 03:15:04.379156    3240 ssh_runner.go:362] scp C:\Users\jenkins.minikube4\AppData\Local\Temp\build.1899223492.tar --> /var/lib/minikube/build/build.1899223492.tar (3072 bytes)
I0308 03:15:04.442161    3240 ssh_runner.go:195] Run: sudo mkdir -p /var/lib/minikube/build/build.1899223492
I0308 03:15:04.481152    3240 ssh_runner.go:195] Run: sudo tar -C /var/lib/minikube/build/build.1899223492 -xf /var/lib/minikube/build/build.1899223492.tar
I0308 03:15:04.505158    3240 docker.go:360] Building image: /var/lib/minikube/build/build.1899223492
I0308 03:15:04.516140    3240 ssh_runner.go:195] Run: docker build -t localhost/my-image:functional-131400 /var/lib/minikube/build/build.1899223492
#0 building with "default" instance using docker driver

                                                
                                                
#1 [internal] load build definition from Dockerfile
#1 transferring dockerfile:
#1 transferring dockerfile: 97B done
#1 DONE 0.1s

                                                
                                                
#2 [internal] load metadata for gcr.io/k8s-minikube/busybox:latest
#2 DONE 0.7s

                                                
                                                
#3 [internal] load .dockerignore
#3 transferring context: 2B done
#3 DONE 0.1s

                                                
                                                
#4 [internal] load build context
#4 transferring context: 62B done
#4 DONE 0.1s

                                                
                                                
#5 [1/3] FROM gcr.io/k8s-minikube/busybox:latest@sha256:ca5ae90100d50772da31f3b5016209e25ad61972404e2ccd83d44f10dee7e79b
#5 resolve gcr.io/k8s-minikube/busybox:latest@sha256:ca5ae90100d50772da31f3b5016209e25ad61972404e2ccd83d44f10dee7e79b 0.1s done
#5 sha256:62ffc2ed7554e4c6d360bce40bbcf196573dd27c4ce080641a2c59867e732dee 527B / 527B done
#5 sha256:beae173ccac6ad749f76713cf4440fe3d21d1043fe616dfbe30775815d1d0f6a 1.46kB / 1.46kB done
#5 sha256:5cc84ad355aaa64f46ea9c7bbcc319a9d808ab15088a27209c9e70ef86e5a2aa 0B / 772.79kB 0.1s
#5 sha256:ca5ae90100d50772da31f3b5016209e25ad61972404e2ccd83d44f10dee7e79b 770B / 770B done
#5 extracting sha256:5cc84ad355aaa64f46ea9c7bbcc319a9d808ab15088a27209c9e70ef86e5a2aa
#5 sha256:5cc84ad355aaa64f46ea9c7bbcc319a9d808ab15088a27209c9e70ef86e5a2aa 772.79kB / 772.79kB 0.2s done
#5 extracting sha256:5cc84ad355aaa64f46ea9c7bbcc319a9d808ab15088a27209c9e70ef86e5a2aa 0.1s done
#5 DONE 1.3s

                                                
                                                
#6 [2/3] RUN true
#6 DONE 2.3s

                                                
                                                
#7 [3/3] ADD content.txt /
#7 DONE 0.5s

                                                
                                                
#8 exporting to image
#8 exporting layers 0.1s done
#8 writing image sha256:937ee675cf05cb884db39fc308e8c2491e54ede472fef7f85cb014623e8f0c40
#8 writing image sha256:937ee675cf05cb884db39fc308e8c2491e54ede472fef7f85cb014623e8f0c40 0.0s done
#8 naming to localhost/my-image:functional-131400 0.0s done
#8 DONE 0.2s
I0308 03:15:10.424258    3240 ssh_runner.go:235] Completed: docker build -t localhost/my-image:functional-131400 /var/lib/minikube/build/build.1899223492: (5.9078521s)
I0308 03:15:10.439534    3240 ssh_runner.go:195] Run: sudo rm -rf /var/lib/minikube/build/build.1899223492
I0308 03:15:10.475830    3240 ssh_runner.go:195] Run: sudo rm -f /var/lib/minikube/build/build.1899223492.tar
I0308 03:15:10.493014    3240 build_images.go:207] Built localhost/my-image:functional-131400 from C:\Users\jenkins.minikube4\AppData\Local\Temp\build.1899223492.tar
I0308 03:15:10.493983    3240 build_images.go:123] succeeded building to: functional-131400
I0308 03:15:10.493983    3240 build_images.go:124] failed building to: 
functional_test.go:447: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image ls
E0308 03:15:41.058533    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
--- PASS: TestFunctional/parallel/ImageCommands/ImageBuild (9.81s)

                                                
                                    
x
+
TestFunctional/parallel/ImageCommands/Setup (3.89s)

                                                
                                                
=== RUN   TestFunctional/parallel/ImageCommands/Setup
functional_test.go:341: (dbg) Run:  docker pull gcr.io/google-containers/addon-resizer:1.8.8
functional_test.go:341: (dbg) Done: docker pull gcr.io/google-containers/addon-resizer:1.8.8: (3.6598568s)
functional_test.go:346: (dbg) Run:  docker tag gcr.io/google-containers/addon-resizer:1.8.8 gcr.io/google-containers/addon-resizer:functional-131400
--- PASS: TestFunctional/parallel/ImageCommands/Setup (3.89s)

                                                
                                    
x
+
TestFunctional/parallel/ImageCommands/ImageLoadDaemon (13.79s)

                                                
                                                
=== RUN   TestFunctional/parallel/ImageCommands/ImageLoadDaemon
functional_test.go:354: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image load --daemon gcr.io/google-containers/addon-resizer:functional-131400 --alsologtostderr
functional_test.go:354: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 image load --daemon gcr.io/google-containers/addon-resizer:functional-131400 --alsologtostderr: (12.961217s)
functional_test.go:447: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image ls
--- PASS: TestFunctional/parallel/ImageCommands/ImageLoadDaemon (13.79s)

                                                
                                    
x
+
TestFunctional/parallel/ServiceCmd/Format (15.02s)

                                                
                                                
=== RUN   TestFunctional/parallel/ServiceCmd/Format
functional_test.go:1536: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 service hello-node --url --format={{.IP}}
functional_test.go:1536: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p functional-131400 service hello-node --url --format={{.IP}}: exit status 1 (15.0207477s)

                                                
                                                
-- stdout --
	127.0.0.1

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:14:23.436212    5520 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	! Because you are using a Docker driver on windows, the terminal needs to be open to run it.

                                                
                                                
** /stderr **
--- PASS: TestFunctional/parallel/ServiceCmd/Format (15.02s)

                                                
                                    
x
+
TestFunctional/parallel/ImageCommands/ImageReloadDaemon (5.8s)

                                                
                                                
=== RUN   TestFunctional/parallel/ImageCommands/ImageReloadDaemon
functional_test.go:364: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image load --daemon gcr.io/google-containers/addon-resizer:functional-131400 --alsologtostderr
functional_test.go:364: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 image load --daemon gcr.io/google-containers/addon-resizer:functional-131400 --alsologtostderr: (5.0051637s)
functional_test.go:447: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image ls
--- PASS: TestFunctional/parallel/ImageCommands/ImageReloadDaemon (5.80s)

                                                
                                    
x
+
TestFunctional/parallel/ImageCommands/ImageTagAndLoadDaemon (12.02s)

                                                
                                                
=== RUN   TestFunctional/parallel/ImageCommands/ImageTagAndLoadDaemon
functional_test.go:234: (dbg) Run:  docker pull gcr.io/google-containers/addon-resizer:1.8.9
functional_test.go:234: (dbg) Done: docker pull gcr.io/google-containers/addon-resizer:1.8.9: (3.1510208s)
functional_test.go:239: (dbg) Run:  docker tag gcr.io/google-containers/addon-resizer:1.8.9 gcr.io/google-containers/addon-resizer:functional-131400
functional_test.go:244: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image load --daemon gcr.io/google-containers/addon-resizer:functional-131400 --alsologtostderr
functional_test.go:244: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 image load --daemon gcr.io/google-containers/addon-resizer:functional-131400 --alsologtostderr: (7.859772s)
functional_test.go:447: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image ls
--- PASS: TestFunctional/parallel/ImageCommands/ImageTagAndLoadDaemon (12.02s)

                                                
                                    
x
+
TestFunctional/parallel/ServiceCmd/URL (15.02s)

                                                
                                                
=== RUN   TestFunctional/parallel/ServiceCmd/URL
functional_test.go:1555: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 service hello-node --url
functional_test.go:1555: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p functional-131400 service hello-node --url: exit status 1 (15.0190804s)

                                                
                                                
-- stdout --
	http://127.0.0.1:63731

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:14:38.446516    2428 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	! Because you are using a Docker driver on windows, the terminal needs to be open to run it.

                                                
                                                
** /stderr **
functional_test.go:1561: found endpoint for hello-node: http://127.0.0.1:63731
--- PASS: TestFunctional/parallel/ServiceCmd/URL (15.02s)

                                                
                                    
x
+
TestFunctional/parallel/ImageCommands/ImageSaveToFile (3.65s)

                                                
                                                
=== RUN   TestFunctional/parallel/ImageCommands/ImageSaveToFile
functional_test.go:379: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image save gcr.io/google-containers/addon-resizer:functional-131400 C:\jenkins\workspace\Docker_Windows_integration\addon-resizer-save.tar --alsologtostderr
functional_test.go:379: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 image save gcr.io/google-containers/addon-resizer:functional-131400 C:\jenkins\workspace\Docker_Windows_integration\addon-resizer-save.tar --alsologtostderr: (3.6508052s)
--- PASS: TestFunctional/parallel/ImageCommands/ImageSaveToFile (3.65s)

                                                
                                    
x
+
TestFunctional/parallel/ImageCommands/ImageRemove (1.75s)

                                                
                                                
=== RUN   TestFunctional/parallel/ImageCommands/ImageRemove
functional_test.go:391: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image rm gcr.io/google-containers/addon-resizer:functional-131400 --alsologtostderr
functional_test.go:447: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image ls
--- PASS: TestFunctional/parallel/ImageCommands/ImageRemove (1.75s)

                                                
                                    
x
+
TestFunctional/parallel/DockerEnv/powershell (8.52s)

                                                
                                                
=== RUN   TestFunctional/parallel/DockerEnv/powershell
functional_test.go:495: (dbg) Run:  powershell.exe -NoProfile -NonInteractive "out/minikube-windows-amd64.exe -p functional-131400 docker-env | Invoke-Expression ; out/minikube-windows-amd64.exe status -p functional-131400"
functional_test.go:495: (dbg) Done: powershell.exe -NoProfile -NonInteractive "out/minikube-windows-amd64.exe -p functional-131400 docker-env | Invoke-Expression ; out/minikube-windows-amd64.exe status -p functional-131400": (4.9147754s)
functional_test.go:518: (dbg) Run:  powershell.exe -NoProfile -NonInteractive "out/minikube-windows-amd64.exe -p functional-131400 docker-env | Invoke-Expression ; docker images"
functional_test.go:518: (dbg) Done: powershell.exe -NoProfile -NonInteractive "out/minikube-windows-amd64.exe -p functional-131400 docker-env | Invoke-Expression ; docker images": (3.5894439s)
--- PASS: TestFunctional/parallel/DockerEnv/powershell (8.52s)

                                                
                                    
x
+
TestFunctional/parallel/ImageCommands/ImageLoadFromFile (5.25s)

                                                
                                                
=== RUN   TestFunctional/parallel/ImageCommands/ImageLoadFromFile
functional_test.go:408: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image load C:\jenkins\workspace\Docker_Windows_integration\addon-resizer-save.tar --alsologtostderr
functional_test.go:408: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 image load C:\jenkins\workspace\Docker_Windows_integration\addon-resizer-save.tar --alsologtostderr: (4.3771897s)
functional_test.go:447: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image ls
--- PASS: TestFunctional/parallel/ImageCommands/ImageLoadFromFile (5.25s)

                                                
                                    
x
+
TestFunctional/parallel/UpdateContextCmd/no_changes (0.69s)

                                                
                                                
=== RUN   TestFunctional/parallel/UpdateContextCmd/no_changes
=== PAUSE TestFunctional/parallel/UpdateContextCmd/no_changes

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/UpdateContextCmd/no_changes
functional_test.go:2115: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 update-context --alsologtostderr -v=2
--- PASS: TestFunctional/parallel/UpdateContextCmd/no_changes (0.69s)

                                                
                                    
x
+
TestFunctional/parallel/UpdateContextCmd/no_minikube_cluster (0.87s)

                                                
                                                
=== RUN   TestFunctional/parallel/UpdateContextCmd/no_minikube_cluster
=== PAUSE TestFunctional/parallel/UpdateContextCmd/no_minikube_cluster

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/UpdateContextCmd/no_minikube_cluster
functional_test.go:2115: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 update-context --alsologtostderr -v=2
--- PASS: TestFunctional/parallel/UpdateContextCmd/no_minikube_cluster (0.87s)

                                                
                                    
x
+
TestFunctional/parallel/UpdateContextCmd/no_clusters (0.73s)

                                                
                                                
=== RUN   TestFunctional/parallel/UpdateContextCmd/no_clusters
=== PAUSE TestFunctional/parallel/UpdateContextCmd/no_clusters

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/UpdateContextCmd/no_clusters
functional_test.go:2115: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 update-context --alsologtostderr -v=2
--- PASS: TestFunctional/parallel/UpdateContextCmd/no_clusters (0.73s)

                                                
                                    
x
+
TestFunctional/parallel/ImageCommands/ImageSaveDaemon (4.28s)

                                                
                                                
=== RUN   TestFunctional/parallel/ImageCommands/ImageSaveDaemon
functional_test.go:418: (dbg) Run:  docker rmi gcr.io/google-containers/addon-resizer:functional-131400
functional_test.go:423: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 image save --daemon gcr.io/google-containers/addon-resizer:functional-131400 --alsologtostderr
functional_test.go:423: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 image save --daemon gcr.io/google-containers/addon-resizer:functional-131400 --alsologtostderr: (3.8457673s)
functional_test.go:428: (dbg) Run:  docker image inspect gcr.io/google-containers/addon-resizer:functional-131400
--- PASS: TestFunctional/parallel/ImageCommands/ImageSaveDaemon (4.28s)

                                                
                                    
x
+
TestFunctional/parallel/Version/short (0.34s)

                                                
                                                
=== RUN   TestFunctional/parallel/Version/short
=== PAUSE TestFunctional/parallel/Version/short

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/Version/short
functional_test.go:2252: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 version --short
--- PASS: TestFunctional/parallel/Version/short (0.34s)

                                                
                                    
x
+
TestFunctional/parallel/Version/components (2.71s)

                                                
                                                
=== RUN   TestFunctional/parallel/Version/components
=== PAUSE TestFunctional/parallel/Version/components

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/Version/components
functional_test.go:2266: (dbg) Run:  out/minikube-windows-amd64.exe -p functional-131400 version -o=json --components
functional_test.go:2266: (dbg) Done: out/minikube-windows-amd64.exe -p functional-131400 version -o=json --components: (2.7061491s)
--- PASS: TestFunctional/parallel/Version/components (2.71s)

                                                
                                    
x
+
TestFunctional/delete_addon-resizer_images (0.47s)

                                                
                                                
=== RUN   TestFunctional/delete_addon-resizer_images
functional_test.go:189: (dbg) Run:  docker rmi -f gcr.io/google-containers/addon-resizer:1.8.8
functional_test.go:189: (dbg) Run:  docker rmi -f gcr.io/google-containers/addon-resizer:functional-131400
--- PASS: TestFunctional/delete_addon-resizer_images (0.47s)

                                                
                                    
x
+
TestFunctional/delete_my-image_image (0.17s)

                                                
                                                
=== RUN   TestFunctional/delete_my-image_image
functional_test.go:197: (dbg) Run:  docker rmi -f localhost/my-image:functional-131400
--- PASS: TestFunctional/delete_my-image_image (0.17s)

                                                
                                    
x
+
TestFunctional/delete_minikube_cached_images (0.18s)

                                                
                                                
=== RUN   TestFunctional/delete_minikube_cached_images
functional_test.go:205: (dbg) Run:  docker rmi -f minikube-local-cache-test:functional-131400
--- PASS: TestFunctional/delete_minikube_cached_images (0.18s)

                                                
                                    
x
+
TestMutliControlPlane/serial/StartCluster (243.13s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/StartCluster
ha_test.go:101: (dbg) Run:  out/minikube-windows-amd64.exe start -p ha-924300 --wait=true --memory=2200 --ha -v=7 --alsologtostderr --driver=docker
E0308 03:20:41.056222    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
ha_test.go:101: (dbg) Done: out/minikube-windows-amd64.exe start -p ha-924300 --wait=true --memory=2200 --ha -v=7 --alsologtostderr --driver=docker: (3m59.6960963s)
ha_test.go:107: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr
ha_test.go:107: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr: (3.4322028s)
--- PASS: TestMutliControlPlane/serial/StartCluster (243.13s)

                                                
                                    
x
+
TestMutliControlPlane/serial/DeployApp (16.03s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/DeployApp
ha_test.go:128: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- apply -f ./testdata/ha/ha-pod-dns-test.yaml
ha_test.go:133: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- rollout status deployment/busybox
ha_test.go:133: (dbg) Done: out/minikube-windows-amd64.exe kubectl -p ha-924300 -- rollout status deployment/busybox: (5.5399175s)
ha_test.go:140: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- get pods -o jsonpath='{.items[*].status.podIP}'
ha_test.go:163: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- get pods -o jsonpath='{.items[*].metadata.name}'
ha_test.go:171: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-4wpmm -- nslookup kubernetes.io
ha_test.go:171: (dbg) Done: out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-4wpmm -- nslookup kubernetes.io: (1.888369s)
ha_test.go:171: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-bwh4k -- nslookup kubernetes.io
ha_test.go:171: (dbg) Done: out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-bwh4k -- nslookup kubernetes.io: (1.5967151s)
ha_test.go:171: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-v5r7t -- nslookup kubernetes.io
ha_test.go:171: (dbg) Done: out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-v5r7t -- nslookup kubernetes.io: (1.7163429s)
ha_test.go:181: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-4wpmm -- nslookup kubernetes.default
ha_test.go:181: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-bwh4k -- nslookup kubernetes.default
ha_test.go:181: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-v5r7t -- nslookup kubernetes.default
ha_test.go:189: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-4wpmm -- nslookup kubernetes.default.svc.cluster.local
ha_test.go:189: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-bwh4k -- nslookup kubernetes.default.svc.cluster.local
ha_test.go:189: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-v5r7t -- nslookup kubernetes.default.svc.cluster.local
--- PASS: TestMutliControlPlane/serial/DeployApp (16.03s)

                                                
                                    
x
+
TestMutliControlPlane/serial/PingHostFromPods (3.53s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/PingHostFromPods
ha_test.go:199: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- get pods -o jsonpath='{.items[*].metadata.name}'
ha_test.go:207: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-4wpmm -- sh -c "nslookup host.minikube.internal | awk 'NR==5' | cut -d' ' -f3"
ha_test.go:218: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-4wpmm -- sh -c "ping -c 1 192.168.65.254"
ha_test.go:207: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-bwh4k -- sh -c "nslookup host.minikube.internal | awk 'NR==5' | cut -d' ' -f3"
ha_test.go:218: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-bwh4k -- sh -c "ping -c 1 192.168.65.254"
ha_test.go:207: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-v5r7t -- sh -c "nslookup host.minikube.internal | awk 'NR==5' | cut -d' ' -f3"
ha_test.go:218: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p ha-924300 -- exec busybox-5b5d89c9d6-v5r7t -- sh -c "ping -c 1 192.168.65.254"
E0308 03:23:36.630795    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:23:36.645572    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:23:36.661344    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:23:36.692658    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:23:36.740599    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
--- PASS: TestMutliControlPlane/serial/PingHostFromPods (3.53s)

                                                
                                    
x
+
TestMutliControlPlane/serial/AddWorkerNode (64.18s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/AddWorkerNode
ha_test.go:228: (dbg) Run:  out/minikube-windows-amd64.exe node add -p ha-924300 -v=7 --alsologtostderr
E0308 03:23:36.833629    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:23:37.006713    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:23:37.337803    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:23:37.980163    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:23:39.273481    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:23:41.840047    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:23:46.974420    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:23:57.223768    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:24:17.716555    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
ha_test.go:228: (dbg) Done: out/minikube-windows-amd64.exe node add -p ha-924300 -v=7 --alsologtostderr: (59.4580775s)
ha_test.go:234: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr
ha_test.go:234: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr: (4.7171961s)
--- PASS: TestMutliControlPlane/serial/AddWorkerNode (64.18s)

                                                
                                    
x
+
TestMutliControlPlane/serial/NodeLabels (0.19s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/NodeLabels
ha_test.go:255: (dbg) Run:  kubectl --context ha-924300 get nodes -o "jsonpath=[{range .items[*]}{.metadata.labels},{end}]"
--- PASS: TestMutliControlPlane/serial/NodeLabels (0.19s)

                                                
                                    
x
+
TestMutliControlPlane/serial/HAppyAfterClusterStart (3.47s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/HAppyAfterClusterStart
ha_test.go:281: (dbg) Run:  out/minikube-windows-amd64.exe profile list --output json
ha_test.go:281: (dbg) Done: out/minikube-windows-amd64.exe profile list --output json: (3.4666783s)
--- PASS: TestMutliControlPlane/serial/HAppyAfterClusterStart (3.47s)

                                                
                                    
x
+
TestMutliControlPlane/serial/CopyFile (72.15s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/CopyFile
ha_test.go:326: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 status --output json -v=7 --alsologtostderr
ha_test.go:326: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 status --output json -v=7 --alsologtostderr: (4.2948934s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp testdata\cp-test.txt ha-924300:/home/docker/cp-test.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp testdata\cp-test.txt ha-924300:/home/docker/cp-test.txt: (1.231239s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test.txt": (1.167336s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestMutliControlPlaneserialCopyFile740479858\001\cp-test_ha-924300.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestMutliControlPlaneserialCopyFile740479858\001\cp-test_ha-924300.txt: (1.1626015s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test.txt": (1.2972168s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300:/home/docker/cp-test.txt ha-924300-m02:/home/docker/cp-test_ha-924300_ha-924300-m02.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300:/home/docker/cp-test.txt ha-924300-m02:/home/docker/cp-test_ha-924300_ha-924300-m02.txt: (1.7183365s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test.txt": (1.1385629s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test_ha-924300_ha-924300-m02.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test_ha-924300_ha-924300-m02.txt": (1.1588351s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300:/home/docker/cp-test.txt ha-924300-m03:/home/docker/cp-test_ha-924300_ha-924300-m03.txt
E0308 03:24:58.694210    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300:/home/docker/cp-test.txt ha-924300-m03:/home/docker/cp-test_ha-924300_ha-924300-m03.txt: (1.7924992s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test.txt": (1.2105617s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test_ha-924300_ha-924300-m03.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test_ha-924300_ha-924300-m03.txt": (1.1530295s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300:/home/docker/cp-test.txt ha-924300-m04:/home/docker/cp-test_ha-924300_ha-924300-m04.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300:/home/docker/cp-test.txt ha-924300-m04:/home/docker/cp-test_ha-924300_ha-924300-m04.txt: (1.6947039s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test.txt": (1.1545248s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test_ha-924300_ha-924300-m04.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test_ha-924300_ha-924300-m04.txt": (1.1335259s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp testdata\cp-test.txt ha-924300-m02:/home/docker/cp-test.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp testdata\cp-test.txt ha-924300-m02:/home/docker/cp-test.txt: (1.171345s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test.txt": (1.1850699s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m02:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestMutliControlPlaneserialCopyFile740479858\001\cp-test_ha-924300-m02.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m02:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestMutliControlPlaneserialCopyFile740479858\001\cp-test_ha-924300-m02.txt: (1.1913287s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test.txt": (1.2053958s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m02:/home/docker/cp-test.txt ha-924300:/home/docker/cp-test_ha-924300-m02_ha-924300.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m02:/home/docker/cp-test.txt ha-924300:/home/docker/cp-test_ha-924300-m02_ha-924300.txt: (1.632471s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test.txt": (1.1560377s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test_ha-924300-m02_ha-924300.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test_ha-924300-m02_ha-924300.txt": (1.1987642s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m02:/home/docker/cp-test.txt ha-924300-m03:/home/docker/cp-test_ha-924300-m02_ha-924300-m03.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m02:/home/docker/cp-test.txt ha-924300-m03:/home/docker/cp-test_ha-924300-m02_ha-924300-m03.txt: (1.652452s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test.txt": (1.1559745s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test_ha-924300-m02_ha-924300-m03.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test_ha-924300-m02_ha-924300-m03.txt": (1.1688221s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m02:/home/docker/cp-test.txt ha-924300-m04:/home/docker/cp-test_ha-924300-m02_ha-924300-m04.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m02:/home/docker/cp-test.txt ha-924300-m04:/home/docker/cp-test_ha-924300-m02_ha-924300-m04.txt: (1.7011555s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test.txt": (1.1641157s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test_ha-924300-m02_ha-924300-m04.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test_ha-924300-m02_ha-924300-m04.txt": (1.1683453s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp testdata\cp-test.txt ha-924300-m03:/home/docker/cp-test.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp testdata\cp-test.txt ha-924300-m03:/home/docker/cp-test.txt: (1.1316839s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test.txt": (1.1439298s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m03:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestMutliControlPlaneserialCopyFile740479858\001\cp-test_ha-924300-m03.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m03:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestMutliControlPlaneserialCopyFile740479858\001\cp-test_ha-924300-m03.txt: (1.1676166s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test.txt": (1.1984063s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m03:/home/docker/cp-test.txt ha-924300:/home/docker/cp-test_ha-924300-m03_ha-924300.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m03:/home/docker/cp-test.txt ha-924300:/home/docker/cp-test_ha-924300-m03_ha-924300.txt: (1.7307422s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test.txt": (1.2013895s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test_ha-924300-m03_ha-924300.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test_ha-924300-m03_ha-924300.txt": (1.2078368s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m03:/home/docker/cp-test.txt ha-924300-m02:/home/docker/cp-test_ha-924300-m03_ha-924300-m02.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m03:/home/docker/cp-test.txt ha-924300-m02:/home/docker/cp-test_ha-924300-m03_ha-924300-m02.txt: (1.671882s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test.txt": (1.2137861s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test_ha-924300-m03_ha-924300-m02.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test_ha-924300-m03_ha-924300-m02.txt": (1.1973946s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m03:/home/docker/cp-test.txt ha-924300-m04:/home/docker/cp-test_ha-924300-m03_ha-924300-m04.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m03:/home/docker/cp-test.txt ha-924300-m04:/home/docker/cp-test_ha-924300-m03_ha-924300-m04.txt: (1.7108169s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test.txt": (1.2064455s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test_ha-924300-m03_ha-924300-m04.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test_ha-924300-m03_ha-924300-m04.txt": (1.1629632s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp testdata\cp-test.txt ha-924300-m04:/home/docker/cp-test.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp testdata\cp-test.txt ha-924300-m04:/home/docker/cp-test.txt: (1.2488975s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test.txt"
E0308 03:25:41.072150    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test.txt": (1.1962303s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m04:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestMutliControlPlaneserialCopyFile740479858\001\cp-test_ha-924300-m04.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m04:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestMutliControlPlaneserialCopyFile740479858\001\cp-test_ha-924300-m04.txt: (1.1430474s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test.txt": (1.2080433s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m04:/home/docker/cp-test.txt ha-924300:/home/docker/cp-test_ha-924300-m04_ha-924300.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m04:/home/docker/cp-test.txt ha-924300:/home/docker/cp-test_ha-924300-m04_ha-924300.txt: (1.7357708s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test.txt": (1.1779647s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test_ha-924300-m04_ha-924300.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300 "sudo cat /home/docker/cp-test_ha-924300-m04_ha-924300.txt": (1.1807498s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m04:/home/docker/cp-test.txt ha-924300-m02:/home/docker/cp-test_ha-924300-m04_ha-924300-m02.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m04:/home/docker/cp-test.txt ha-924300-m02:/home/docker/cp-test_ha-924300-m04_ha-924300-m02.txt: (1.7239564s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test.txt": (1.2281095s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test_ha-924300-m04_ha-924300-m02.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m02 "sudo cat /home/docker/cp-test_ha-924300-m04_ha-924300-m02.txt": (1.1633348s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m04:/home/docker/cp-test.txt ha-924300-m03:/home/docker/cp-test_ha-924300-m04_ha-924300-m03.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 cp ha-924300-m04:/home/docker/cp-test.txt ha-924300-m03:/home/docker/cp-test_ha-924300-m04_ha-924300-m03.txt: (1.7202058s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m04 "sudo cat /home/docker/cp-test.txt": (1.1641904s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test_ha-924300-m04_ha-924300-m03.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 ssh -n ha-924300-m03 "sudo cat /home/docker/cp-test_ha-924300-m04_ha-924300-m03.txt": (1.225638s)
--- PASS: TestMutliControlPlane/serial/CopyFile (72.15s)

                                                
                                    
x
+
TestMutliControlPlane/serial/StopSecondaryNode (15.22s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/StopSecondaryNode
ha_test.go:363: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 node stop m02 -v=7 --alsologtostderr
ha_test.go:363: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 node stop m02 -v=7 --alsologtostderr: (11.9587536s)
ha_test.go:369: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr
ha_test.go:369: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr: exit status 7 (3.2628102s)

                                                
                                                
-- stdout --
	ha-924300
	type: Control Plane
	host: Running
	kubelet: Running
	apiserver: Running
	kubeconfig: Configured
	
	ha-924300-m02
	type: Control Plane
	host: Stopped
	kubelet: Stopped
	apiserver: Stopped
	kubeconfig: Stopped
	
	ha-924300-m03
	type: Control Plane
	host: Running
	kubelet: Running
	apiserver: Running
	kubeconfig: Configured
	
	ha-924300-m04
	type: Worker
	host: Running
	kubelet: Running
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:26:08.856307    7648 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	I0308 03:26:08.935440    7648 out.go:291] Setting OutFile to fd 956 ...
	I0308 03:26:08.936227    7648 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 03:26:08.936227    7648 out.go:304] Setting ErrFile to fd 1020...
	I0308 03:26:08.936227    7648 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 03:26:08.953525    7648 out.go:298] Setting JSON to false
	I0308 03:26:08.953525    7648 mustload.go:65] Loading cluster: ha-924300
	I0308 03:26:08.953525    7648 notify.go:220] Checking for updates...
	I0308 03:26:08.953525    7648 config.go:182] Loaded profile config "ha-924300": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
	I0308 03:26:08.953525    7648 status.go:255] checking status of ha-924300 ...
	I0308 03:26:08.971282    7648 cli_runner.go:164] Run: docker container inspect ha-924300 --format={{.State.Status}}
	I0308 03:26:09.146043    7648 status.go:330] ha-924300 host status = "Running" (err=<nil>)
	I0308 03:26:09.146590    7648 host.go:66] Checking if "ha-924300" exists ...
	I0308 03:26:09.157254    7648 cli_runner.go:164] Run: docker container inspect -f "{{range .NetworkSettings.Networks}}{{.IPAddress}},{{.GlobalIPv6Address}}{{end}}" ha-924300
	I0308 03:26:09.320929    7648 host.go:66] Checking if "ha-924300" exists ...
	I0308 03:26:09.337100    7648 ssh_runner.go:195] Run: sh -c "df -h /var | awk 'NR==2{print $5}'"
	I0308 03:26:09.346102    7648 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" ha-924300
	I0308 03:26:09.506235    7648 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:63834 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\ha-924300\id_rsa Username:docker}
	I0308 03:26:09.642586    7648 ssh_runner.go:195] Run: systemctl --version
	I0308 03:26:09.666996    7648 ssh_runner.go:195] Run: sudo systemctl is-active --quiet service kubelet
	I0308 03:26:09.702427    7648 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "8443/tcp") 0).HostPort}}'" ha-924300
	I0308 03:26:09.877713    7648 kubeconfig.go:125] found "ha-924300" server: "https://127.0.0.1:63838"
	I0308 03:26:09.877860    7648 api_server.go:166] Checking apiserver status ...
	I0308 03:26:09.891016    7648 ssh_runner.go:195] Run: sudo pgrep -xnf kube-apiserver.*minikube.*
	I0308 03:26:09.927590    7648 ssh_runner.go:195] Run: sudo egrep ^[0-9]+:freezer: /proc/2507/cgroup
	I0308 03:26:09.949638    7648 api_server.go:182] apiserver freezer: "21:freezer:/docker/96bc9c9e4ae8830c92d5b605e777ef5f9fb1098dc8555590e2cb67064f628e34/kubepods/burstable/pod5b491ae493937caa051ab22a17f778ce/f536b4f2f0c0e3440d108123e38d0f7f86a6aa46f2a1ebf2a9aac92e99a48548"
	I0308 03:26:09.963430    7648 ssh_runner.go:195] Run: sudo cat /sys/fs/cgroup/freezer/docker/96bc9c9e4ae8830c92d5b605e777ef5f9fb1098dc8555590e2cb67064f628e34/kubepods/burstable/pod5b491ae493937caa051ab22a17f778ce/f536b4f2f0c0e3440d108123e38d0f7f86a6aa46f2a1ebf2a9aac92e99a48548/freezer.state
	I0308 03:26:09.983855    7648 api_server.go:204] freezer state: "THAWED"
	I0308 03:26:09.983918    7648 api_server.go:253] Checking apiserver healthz at https://127.0.0.1:63838/healthz ...
	I0308 03:26:10.003719    7648 api_server.go:279] https://127.0.0.1:63838/healthz returned 200:
	ok
	I0308 03:26:10.003719    7648 status.go:422] ha-924300 apiserver status = Running (err=<nil>)
	I0308 03:26:10.004708    7648 status.go:257] ha-924300 status: &{Name:ha-924300 Host:Running Kubelet:Running APIServer:Running Kubeconfig:Configured Worker:false TimeToStop: DockerEnv: PodManEnv:}
	I0308 03:26:10.004708    7648 status.go:255] checking status of ha-924300-m02 ...
	I0308 03:26:10.017714    7648 cli_runner.go:164] Run: docker container inspect ha-924300-m02 --format={{.State.Status}}
	I0308 03:26:10.188151    7648 status.go:330] ha-924300-m02 host status = "Stopped" (err=<nil>)
	I0308 03:26:10.188151    7648 status.go:343] host is not running, skipping remaining checks
	I0308 03:26:10.188151    7648 status.go:257] ha-924300-m02 status: &{Name:ha-924300-m02 Host:Stopped Kubelet:Stopped APIServer:Stopped Kubeconfig:Stopped Worker:false TimeToStop: DockerEnv: PodManEnv:}
	I0308 03:26:10.188151    7648 status.go:255] checking status of ha-924300-m03 ...
	I0308 03:26:10.210107    7648 cli_runner.go:164] Run: docker container inspect ha-924300-m03 --format={{.State.Status}}
	I0308 03:26:10.376387    7648 status.go:330] ha-924300-m03 host status = "Running" (err=<nil>)
	I0308 03:26:10.376465    7648 host.go:66] Checking if "ha-924300-m03" exists ...
	I0308 03:26:10.386915    7648 cli_runner.go:164] Run: docker container inspect -f "{{range .NetworkSettings.Networks}}{{.IPAddress}},{{.GlobalIPv6Address}}{{end}}" ha-924300-m03
	I0308 03:26:10.573947    7648 host.go:66] Checking if "ha-924300-m03" exists ...
	I0308 03:26:10.587987    7648 ssh_runner.go:195] Run: sh -c "df -h /var | awk 'NR==2{print $5}'"
	I0308 03:26:10.597959    7648 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" ha-924300-m03
	I0308 03:26:10.781822    7648 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:63953 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\ha-924300-m03\id_rsa Username:docker}
	I0308 03:26:10.932473    7648 ssh_runner.go:195] Run: sudo systemctl is-active --quiet service kubelet
	I0308 03:26:10.965097    7648 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "8443/tcp") 0).HostPort}}'" ha-924300
	I0308 03:26:11.124846    7648 kubeconfig.go:125] found "ha-924300" server: "https://127.0.0.1:63838"
	I0308 03:26:11.124846    7648 api_server.go:166] Checking apiserver status ...
	I0308 03:26:11.137574    7648 ssh_runner.go:195] Run: sudo pgrep -xnf kube-apiserver.*minikube.*
	I0308 03:26:11.176718    7648 ssh_runner.go:195] Run: sudo egrep ^[0-9]+:freezer: /proc/2483/cgroup
	I0308 03:26:11.194590    7648 api_server.go:182] apiserver freezer: "21:freezer:/docker/9e6aa422874e6a1b47c2e83e8f21e4c6456a68d201ba963b61f548c786cae528/kubepods/burstable/podc550b9b5cb1c24bbfc2d4d8723651537/71e34509e8dad3740db4d0b0004118baf911aeec6b81d40e6190cdd87170c79e"
	I0308 03:26:11.206785    7648 ssh_runner.go:195] Run: sudo cat /sys/fs/cgroup/freezer/docker/9e6aa422874e6a1b47c2e83e8f21e4c6456a68d201ba963b61f548c786cae528/kubepods/burstable/podc550b9b5cb1c24bbfc2d4d8723651537/71e34509e8dad3740db4d0b0004118baf911aeec6b81d40e6190cdd87170c79e/freezer.state
	I0308 03:26:11.224386    7648 api_server.go:204] freezer state: "THAWED"
	I0308 03:26:11.224386    7648 api_server.go:253] Checking apiserver healthz at https://127.0.0.1:63838/healthz ...
	I0308 03:26:11.241409    7648 api_server.go:279] https://127.0.0.1:63838/healthz returned 200:
	ok
	I0308 03:26:11.241409    7648 status.go:422] ha-924300-m03 apiserver status = Running (err=<nil>)
	I0308 03:26:11.241409    7648 status.go:257] ha-924300-m03 status: &{Name:ha-924300-m03 Host:Running Kubelet:Running APIServer:Running Kubeconfig:Configured Worker:false TimeToStop: DockerEnv: PodManEnv:}
	I0308 03:26:11.241409    7648 status.go:255] checking status of ha-924300-m04 ...
	I0308 03:26:11.261216    7648 cli_runner.go:164] Run: docker container inspect ha-924300-m04 --format={{.State.Status}}
	I0308 03:26:11.434541    7648 status.go:330] ha-924300-m04 host status = "Running" (err=<nil>)
	I0308 03:26:11.434541    7648 host.go:66] Checking if "ha-924300-m04" exists ...
	I0308 03:26:11.443734    7648 cli_runner.go:164] Run: docker container inspect -f "{{range .NetworkSettings.Networks}}{{.IPAddress}},{{.GlobalIPv6Address}}{{end}}" ha-924300-m04
	I0308 03:26:11.620963    7648 host.go:66] Checking if "ha-924300-m04" exists ...
	I0308 03:26:11.637950    7648 ssh_runner.go:195] Run: sh -c "df -h /var | awk 'NR==2{print $5}'"
	I0308 03:26:11.647576    7648 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" ha-924300-m04
	I0308 03:26:11.807598    7648 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:64081 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\ha-924300-m04\id_rsa Username:docker}
	I0308 03:26:11.944474    7648 ssh_runner.go:195] Run: sudo systemctl is-active --quiet service kubelet
	I0308 03:26:11.975234    7648 status.go:257] ha-924300-m04 status: &{Name:ha-924300-m04 Host:Running Kubelet:Running APIServer:Irrelevant Kubeconfig:Irrelevant Worker:true TimeToStop: DockerEnv: PodManEnv:}

                                                
                                                
** /stderr **
--- PASS: TestMutliControlPlane/serial/StopSecondaryNode (15.22s)

                                                
                                    
x
+
TestMutliControlPlane/serial/DegradedAfterControlPlaneNodeStop (2.61s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/DegradedAfterControlPlaneNodeStop
ha_test.go:390: (dbg) Run:  out/minikube-windows-amd64.exe profile list --output json
ha_test.go:390: (dbg) Done: out/minikube-windows-amd64.exe profile list --output json: (2.607266s)
--- PASS: TestMutliControlPlane/serial/DegradedAfterControlPlaneNodeStop (2.61s)

                                                
                                    
x
+
TestMutliControlPlane/serial/RestartSecondaryNode (96.44s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/RestartSecondaryNode
ha_test.go:420: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 node start m02 -v=7 --alsologtostderr
E0308 03:26:20.629846    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:27:04.256060    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
ha_test.go:420: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 node start m02 -v=7 --alsologtostderr: (1m31.9486063s)
ha_test.go:428: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr
ha_test.go:428: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr: (4.3006306s)
ha_test.go:448: (dbg) Run:  kubectl get nodes
--- PASS: TestMutliControlPlane/serial/RestartSecondaryNode (96.44s)

                                                
                                    
x
+
TestMutliControlPlane/serial/HAppyAfterSecondaryNodeRestart (3.56s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/HAppyAfterSecondaryNodeRestart
ha_test.go:281: (dbg) Run:  out/minikube-windows-amd64.exe profile list --output json
ha_test.go:281: (dbg) Done: out/minikube-windows-amd64.exe profile list --output json: (3.556046s)
--- PASS: TestMutliControlPlane/serial/HAppyAfterSecondaryNodeRestart (3.56s)

                                                
                                    
x
+
TestMutliControlPlane/serial/RestartClusterKeepsNodes (190.31s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/RestartClusterKeepsNodes
ha_test.go:456: (dbg) Run:  out/minikube-windows-amd64.exe node list -p ha-924300 -v=7 --alsologtostderr
ha_test.go:462: (dbg) Run:  out/minikube-windows-amd64.exe stop -p ha-924300 -v=7 --alsologtostderr
ha_test.go:462: (dbg) Done: out/minikube-windows-amd64.exe stop -p ha-924300 -v=7 --alsologtostderr: (39.1280833s)
ha_test.go:467: (dbg) Run:  out/minikube-windows-amd64.exe start -p ha-924300 --wait=true -v=7 --alsologtostderr
E0308 03:28:36.655251    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:29:04.483896    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:30:41.093094    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
ha_test.go:467: (dbg) Done: out/minikube-windows-amd64.exe start -p ha-924300 --wait=true -v=7 --alsologtostderr: (2m30.7024937s)
ha_test.go:472: (dbg) Run:  out/minikube-windows-amd64.exe node list -p ha-924300
--- PASS: TestMutliControlPlane/serial/RestartClusterKeepsNodes (190.31s)

                                                
                                    
x
+
TestMutliControlPlane/serial/DeleteSecondaryNode (23.18s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/DeleteSecondaryNode
ha_test.go:487: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 node delete m03 -v=7 --alsologtostderr
ha_test.go:487: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 node delete m03 -v=7 --alsologtostderr: (19.5450097s)
ha_test.go:493: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr
ha_test.go:493: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr: (3.1472435s)
ha_test.go:511: (dbg) Run:  kubectl get nodes
ha_test.go:519: (dbg) Run:  kubectl get nodes -o "go-template='{{range .items}}{{range .status.conditions}}{{if eq .type "Ready"}} {{.status}}{{"\n"}}{{end}}{{end}}{{end}}'"
--- PASS: TestMutliControlPlane/serial/DeleteSecondaryNode (23.18s)

                                                
                                    
x
+
TestMutliControlPlane/serial/DegradedAfterSecondaryNodeDelete (2.38s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/DegradedAfterSecondaryNodeDelete
ha_test.go:390: (dbg) Run:  out/minikube-windows-amd64.exe profile list --output json
ha_test.go:390: (dbg) Done: out/minikube-windows-amd64.exe profile list --output json: (2.3767104s)
--- PASS: TestMutliControlPlane/serial/DegradedAfterSecondaryNodeDelete (2.38s)

                                                
                                    
x
+
TestMutliControlPlane/serial/StopCluster (37.65s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/StopCluster
ha_test.go:531: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 stop -v=7 --alsologtostderr
ha_test.go:531: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 stop -v=7 --alsologtostderr: (36.8429952s)
ha_test.go:537: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr
ha_test.go:537: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr: exit status 7 (803.5862ms)

                                                
                                                
-- stdout --
	ha-924300
	type: Control Plane
	host: Stopped
	kubelet: Stopped
	apiserver: Stopped
	kubeconfig: Stopped
	
	ha-924300-m02
	type: Control Plane
	host: Stopped
	kubelet: Stopped
	apiserver: Stopped
	kubeconfig: Stopped
	
	ha-924300-m04
	type: Worker
	host: Stopped
	kubelet: Stopped
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:32:07.440716   10896 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	I0308 03:32:07.515545   10896 out.go:291] Setting OutFile to fd 584 ...
	I0308 03:32:07.516643   10896 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 03:32:07.516643   10896 out.go:304] Setting ErrFile to fd 512...
	I0308 03:32:07.516749   10896 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 03:32:07.531297   10896 out.go:298] Setting JSON to false
	I0308 03:32:07.531297   10896 mustload.go:65] Loading cluster: ha-924300
	I0308 03:32:07.531297   10896 notify.go:220] Checking for updates...
	I0308 03:32:07.531297   10896 config.go:182] Loaded profile config "ha-924300": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
	I0308 03:32:07.532299   10896 status.go:255] checking status of ha-924300 ...
	I0308 03:32:07.552941   10896 cli_runner.go:164] Run: docker container inspect ha-924300 --format={{.State.Status}}
	I0308 03:32:07.723558   10896 status.go:330] ha-924300 host status = "Stopped" (err=<nil>)
	I0308 03:32:07.723612   10896 status.go:343] host is not running, skipping remaining checks
	I0308 03:32:07.723612   10896 status.go:257] ha-924300 status: &{Name:ha-924300 Host:Stopped Kubelet:Stopped APIServer:Stopped Kubeconfig:Stopped Worker:false TimeToStop: DockerEnv: PodManEnv:}
	I0308 03:32:07.723659   10896 status.go:255] checking status of ha-924300-m02 ...
	I0308 03:32:07.740621   10896 cli_runner.go:164] Run: docker container inspect ha-924300-m02 --format={{.State.Status}}
	I0308 03:32:07.925732   10896 status.go:330] ha-924300-m02 host status = "Stopped" (err=<nil>)
	I0308 03:32:07.925781   10896 status.go:343] host is not running, skipping remaining checks
	I0308 03:32:07.925781   10896 status.go:257] ha-924300-m02 status: &{Name:ha-924300-m02 Host:Stopped Kubelet:Stopped APIServer:Stopped Kubeconfig:Stopped Worker:false TimeToStop: DockerEnv: PodManEnv:}
	I0308 03:32:07.925781   10896 status.go:255] checking status of ha-924300-m04 ...
	I0308 03:32:07.948015   10896 cli_runner.go:164] Run: docker container inspect ha-924300-m04 --format={{.State.Status}}
	I0308 03:32:08.127095   10896 status.go:330] ha-924300-m04 host status = "Stopped" (err=<nil>)
	I0308 03:32:08.127095   10896 status.go:343] host is not running, skipping remaining checks
	I0308 03:32:08.127095   10896 status.go:257] ha-924300-m04 status: &{Name:ha-924300-m04 Host:Stopped Kubelet:Stopped APIServer:Stopped Kubeconfig:Stopped Worker:true TimeToStop: DockerEnv: PodManEnv:}

                                                
                                                
** /stderr **
--- PASS: TestMutliControlPlane/serial/StopCluster (37.65s)

                                                
                                    
x
+
TestMutliControlPlane/serial/RestartCluster (106.33s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/RestartCluster
ha_test.go:560: (dbg) Run:  out/minikube-windows-amd64.exe start -p ha-924300 --wait=true -v=7 --alsologtostderr --driver=docker
E0308 03:33:36.654804    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
ha_test.go:560: (dbg) Done: out/minikube-windows-amd64.exe start -p ha-924300 --wait=true -v=7 --alsologtostderr --driver=docker: (1m42.9159806s)
ha_test.go:566: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr
ha_test.go:566: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr: (2.9884786s)
ha_test.go:584: (dbg) Run:  kubectl get nodes
ha_test.go:592: (dbg) Run:  kubectl get nodes -o "go-template='{{range .items}}{{range .status.conditions}}{{if eq .type "Ready"}} {{.status}}{{"\n"}}{{end}}{{end}}{{end}}'"
--- PASS: TestMutliControlPlane/serial/RestartCluster (106.33s)

                                                
                                    
x
+
TestMutliControlPlane/serial/DegradedAfterClusterRestart (2.4s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/DegradedAfterClusterRestart
ha_test.go:390: (dbg) Run:  out/minikube-windows-amd64.exe profile list --output json
ha_test.go:390: (dbg) Done: out/minikube-windows-amd64.exe profile list --output json: (2.3994448s)
--- PASS: TestMutliControlPlane/serial/DegradedAfterClusterRestart (2.40s)

                                                
                                    
x
+
TestMutliControlPlane/serial/AddSecondaryNode (93.2s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/AddSecondaryNode
ha_test.go:605: (dbg) Run:  out/minikube-windows-amd64.exe node add -p ha-924300 --control-plane -v=7 --alsologtostderr
ha_test.go:605: (dbg) Done: out/minikube-windows-amd64.exe node add -p ha-924300 --control-plane -v=7 --alsologtostderr: (1m29.0033909s)
ha_test.go:611: (dbg) Run:  out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr
ha_test.go:611: (dbg) Done: out/minikube-windows-amd64.exe -p ha-924300 status -v=7 --alsologtostderr: (4.1976305s)
--- PASS: TestMutliControlPlane/serial/AddSecondaryNode (93.20s)

                                                
                                    
x
+
TestMutliControlPlane/serial/HAppyAfterSecondaryNodeAdd (3.4s)

                                                
                                                
=== RUN   TestMutliControlPlane/serial/HAppyAfterSecondaryNodeAdd
ha_test.go:281: (dbg) Run:  out/minikube-windows-amd64.exe profile list --output json
ha_test.go:281: (dbg) Done: out/minikube-windows-amd64.exe profile list --output json: (3.40121s)
--- PASS: TestMutliControlPlane/serial/HAppyAfterSecondaryNodeAdd (3.40s)

                                                
                                    
x
+
TestImageBuild/serial/Setup (70.56s)

                                                
                                                
=== RUN   TestImageBuild/serial/Setup
image_test.go:69: (dbg) Run:  out/minikube-windows-amd64.exe start -p image-606400 --driver=docker
image_test.go:69: (dbg) Done: out/minikube-windows-amd64.exe start -p image-606400 --driver=docker: (1m10.5597013s)
--- PASS: TestImageBuild/serial/Setup (70.56s)

                                                
                                    
x
+
TestImageBuild/serial/NormalBuild (3.77s)

                                                
                                                
=== RUN   TestImageBuild/serial/NormalBuild
image_test.go:78: (dbg) Run:  out/minikube-windows-amd64.exe image build -t aaa:latest ./testdata/image-build/test-normal -p image-606400
image_test.go:78: (dbg) Done: out/minikube-windows-amd64.exe image build -t aaa:latest ./testdata/image-build/test-normal -p image-606400: (3.7645478s)
--- PASS: TestImageBuild/serial/NormalBuild (3.77s)

                                                
                                    
x
+
TestImageBuild/serial/BuildWithBuildArg (2.47s)

                                                
                                                
=== RUN   TestImageBuild/serial/BuildWithBuildArg
image_test.go:99: (dbg) Run:  out/minikube-windows-amd64.exe image build -t aaa:latest --build-opt=build-arg=ENV_A=test_env_str --build-opt=no-cache ./testdata/image-build/test-arg -p image-606400
image_test.go:99: (dbg) Done: out/minikube-windows-amd64.exe image build -t aaa:latest --build-opt=build-arg=ENV_A=test_env_str --build-opt=no-cache ./testdata/image-build/test-arg -p image-606400: (2.4645677s)
--- PASS: TestImageBuild/serial/BuildWithBuildArg (2.47s)

                                                
                                    
x
+
TestImageBuild/serial/BuildWithDockerIgnore (3.03s)

                                                
                                                
=== RUN   TestImageBuild/serial/BuildWithDockerIgnore
image_test.go:133: (dbg) Run:  out/minikube-windows-amd64.exe image build -t aaa:latest ./testdata/image-build/test-normal --build-opt=no-cache -p image-606400
image_test.go:133: (dbg) Done: out/minikube-windows-amd64.exe image build -t aaa:latest ./testdata/image-build/test-normal --build-opt=no-cache -p image-606400: (3.0322288s)
--- PASS: TestImageBuild/serial/BuildWithDockerIgnore (3.03s)

                                                
                                    
x
+
TestImageBuild/serial/BuildWithSpecifiedDockerfile (2.29s)

                                                
                                                
=== RUN   TestImageBuild/serial/BuildWithSpecifiedDockerfile
image_test.go:88: (dbg) Run:  out/minikube-windows-amd64.exe image build -t aaa:latest -f inner/Dockerfile ./testdata/image-build/test-f -p image-606400
image_test.go:88: (dbg) Done: out/minikube-windows-amd64.exe image build -t aaa:latest -f inner/Dockerfile ./testdata/image-build/test-f -p image-606400: (2.2925813s)
--- PASS: TestImageBuild/serial/BuildWithSpecifiedDockerfile (2.29s)

                                                
                                    
x
+
TestJSONOutput/start/Command (100.42s)

                                                
                                                
=== RUN   TestJSONOutput/start/Command
json_output_test.go:63: (dbg) Run:  out/minikube-windows-amd64.exe start -p json-output-352700 --output=json --user=testUser --memory=2200 --wait=true --driver=docker
E0308 03:38:36.667755    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
json_output_test.go:63: (dbg) Done: out/minikube-windows-amd64.exe start -p json-output-352700 --output=json --user=testUser --memory=2200 --wait=true --driver=docker: (1m40.4171687s)
--- PASS: TestJSONOutput/start/Command (100.42s)

                                                
                                    
x
+
TestJSONOutput/start/Audit (0s)

                                                
                                                
=== RUN   TestJSONOutput/start/Audit
--- PASS: TestJSONOutput/start/Audit (0.00s)

                                                
                                    
x
+
TestJSONOutput/start/parallel/DistinctCurrentSteps (0s)

                                                
                                                
=== RUN   TestJSONOutput/start/parallel/DistinctCurrentSteps
=== PAUSE TestJSONOutput/start/parallel/DistinctCurrentSteps

                                                
                                                

                                                
                                                
=== CONT  TestJSONOutput/start/parallel/DistinctCurrentSteps
--- PASS: TestJSONOutput/start/parallel/DistinctCurrentSteps (0.00s)

                                                
                                    
x
+
TestJSONOutput/start/parallel/IncreasingCurrentSteps (0s)

                                                
                                                
=== RUN   TestJSONOutput/start/parallel/IncreasingCurrentSteps
=== PAUSE TestJSONOutput/start/parallel/IncreasingCurrentSteps

                                                
                                                

                                                
                                                
=== CONT  TestJSONOutput/start/parallel/IncreasingCurrentSteps
--- PASS: TestJSONOutput/start/parallel/IncreasingCurrentSteps (0.00s)

                                                
                                    
x
+
TestJSONOutput/pause/Command (1.62s)

                                                
                                                
=== RUN   TestJSONOutput/pause/Command
json_output_test.go:63: (dbg) Run:  out/minikube-windows-amd64.exe pause -p json-output-352700 --output=json --user=testUser
json_output_test.go:63: (dbg) Done: out/minikube-windows-amd64.exe pause -p json-output-352700 --output=json --user=testUser: (1.6160942s)
--- PASS: TestJSONOutput/pause/Command (1.62s)

                                                
                                    
x
+
TestJSONOutput/pause/Audit (0s)

                                                
                                                
=== RUN   TestJSONOutput/pause/Audit
--- PASS: TestJSONOutput/pause/Audit (0.00s)

                                                
                                    
x
+
TestJSONOutput/pause/parallel/DistinctCurrentSteps (0s)

                                                
                                                
=== RUN   TestJSONOutput/pause/parallel/DistinctCurrentSteps
=== PAUSE TestJSONOutput/pause/parallel/DistinctCurrentSteps

                                                
                                                

                                                
                                                
=== CONT  TestJSONOutput/pause/parallel/DistinctCurrentSteps
--- PASS: TestJSONOutput/pause/parallel/DistinctCurrentSteps (0.00s)

                                                
                                    
x
+
TestJSONOutput/pause/parallel/IncreasingCurrentSteps (0s)

                                                
                                                
=== RUN   TestJSONOutput/pause/parallel/IncreasingCurrentSteps
=== PAUSE TestJSONOutput/pause/parallel/IncreasingCurrentSteps

                                                
                                                

                                                
                                                
=== CONT  TestJSONOutput/pause/parallel/IncreasingCurrentSteps
--- PASS: TestJSONOutput/pause/parallel/IncreasingCurrentSteps (0.00s)

                                                
                                    
x
+
TestJSONOutput/unpause/Command (1.42s)

                                                
                                                
=== RUN   TestJSONOutput/unpause/Command
json_output_test.go:63: (dbg) Run:  out/minikube-windows-amd64.exe unpause -p json-output-352700 --output=json --user=testUser
json_output_test.go:63: (dbg) Done: out/minikube-windows-amd64.exe unpause -p json-output-352700 --output=json --user=testUser: (1.4197984s)
--- PASS: TestJSONOutput/unpause/Command (1.42s)

                                                
                                    
x
+
TestJSONOutput/unpause/Audit (0s)

                                                
                                                
=== RUN   TestJSONOutput/unpause/Audit
--- PASS: TestJSONOutput/unpause/Audit (0.00s)

                                                
                                    
x
+
TestJSONOutput/unpause/parallel/DistinctCurrentSteps (0s)

                                                
                                                
=== RUN   TestJSONOutput/unpause/parallel/DistinctCurrentSteps
=== PAUSE TestJSONOutput/unpause/parallel/DistinctCurrentSteps

                                                
                                                

                                                
                                                
=== CONT  TestJSONOutput/unpause/parallel/DistinctCurrentSteps
--- PASS: TestJSONOutput/unpause/parallel/DistinctCurrentSteps (0.00s)

                                                
                                    
x
+
TestJSONOutput/unpause/parallel/IncreasingCurrentSteps (0s)

                                                
                                                
=== RUN   TestJSONOutput/unpause/parallel/IncreasingCurrentSteps
=== PAUSE TestJSONOutput/unpause/parallel/IncreasingCurrentSteps

                                                
                                                

                                                
                                                
=== CONT  TestJSONOutput/unpause/parallel/IncreasingCurrentSteps
--- PASS: TestJSONOutput/unpause/parallel/IncreasingCurrentSteps (0.00s)

                                                
                                    
x
+
TestJSONOutput/stop/Command (7.63s)

                                                
                                                
=== RUN   TestJSONOutput/stop/Command
json_output_test.go:63: (dbg) Run:  out/minikube-windows-amd64.exe stop -p json-output-352700 --output=json --user=testUser
json_output_test.go:63: (dbg) Done: out/minikube-windows-amd64.exe stop -p json-output-352700 --output=json --user=testUser: (7.6261969s)
--- PASS: TestJSONOutput/stop/Command (7.63s)

                                                
                                    
x
+
TestJSONOutput/stop/Audit (0s)

                                                
                                                
=== RUN   TestJSONOutput/stop/Audit
--- PASS: TestJSONOutput/stop/Audit (0.00s)

                                                
                                    
x
+
TestJSONOutput/stop/parallel/DistinctCurrentSteps (0s)

                                                
                                                
=== RUN   TestJSONOutput/stop/parallel/DistinctCurrentSteps
=== PAUSE TestJSONOutput/stop/parallel/DistinctCurrentSteps

                                                
                                                

                                                
                                                
=== CONT  TestJSONOutput/stop/parallel/DistinctCurrentSteps
--- PASS: TestJSONOutput/stop/parallel/DistinctCurrentSteps (0.00s)

                                                
                                    
x
+
TestJSONOutput/stop/parallel/IncreasingCurrentSteps (0s)

                                                
                                                
=== RUN   TestJSONOutput/stop/parallel/IncreasingCurrentSteps
=== PAUSE TestJSONOutput/stop/parallel/IncreasingCurrentSteps

                                                
                                                

                                                
                                                
=== CONT  TestJSONOutput/stop/parallel/IncreasingCurrentSteps
--- PASS: TestJSONOutput/stop/parallel/IncreasingCurrentSteps (0.00s)

                                                
                                    
x
+
TestErrorJSONOutput (1.37s)

                                                
                                                
=== RUN   TestErrorJSONOutput
json_output_test.go:160: (dbg) Run:  out/minikube-windows-amd64.exe start -p json-output-error-283300 --memory=2200 --output=json --wait=true --driver=fail
json_output_test.go:160: (dbg) Non-zero exit: out/minikube-windows-amd64.exe start -p json-output-error-283300 --memory=2200 --output=json --wait=true --driver=fail: exit status 56 (249.9393ms)

                                                
                                                
-- stdout --
	{"specversion":"1.0","id":"f602b32d-92d2-40d6-af8b-55083e3a3f04","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.step","datacontenttype":"application/json","data":{"currentstep":"0","message":"[json-output-error-283300] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046","name":"Initial Minikube Setup","totalsteps":"19"}}
	{"specversion":"1.0","id":"86fa9df1-a3c5-4144-a16b-7cbafdd123db","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.info","datacontenttype":"application/json","data":{"message":"KUBECONFIG=C:\\Users\\jenkins.minikube4\\minikube-integration\\kubeconfig"}}
	{"specversion":"1.0","id":"12da6cbf-8a40-4b4f-a01a-05aad2c255ef","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.info","datacontenttype":"application/json","data":{"message":"MINIKUBE_FORCE_SYSTEMD="}}
	{"specversion":"1.0","id":"089f446c-6835-4413-92c4-b11c46fae7f8","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.info","datacontenttype":"application/json","data":{"message":"MINIKUBE_HOME=C:\\Users\\jenkins.minikube4\\minikube-integration\\.minikube"}}
	{"specversion":"1.0","id":"c47bac7b-9ca0-47cf-9257-0da4b182cb8c","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.info","datacontenttype":"application/json","data":{"message":"MINIKUBE_LOCATION=18333"}}
	{"specversion":"1.0","id":"0538b03f-0c7f-4e54-a19b-047c3e0b2fbc","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.info","datacontenttype":"application/json","data":{"message":"MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true"}}
	{"specversion":"1.0","id":"90b7dd11-e58c-4d26-80ae-0f7cd0b10e08","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.error","datacontenttype":"application/json","data":{"advice":"","exitcode":"56","issues":"","message":"The driver 'fail' is not supported on windows/amd64","name":"DRV_UNSUPPORTED_OS","url":""}}

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:39:15.711442   10892 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
helpers_test.go:175: Cleaning up "json-output-error-283300" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p json-output-error-283300
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p json-output-error-283300: (1.1221708s)
--- PASS: TestErrorJSONOutput (1.37s)

                                                
                                    
x
+
TestKicCustomNetwork/create_custom_network (79.23s)

                                                
                                                
=== RUN   TestKicCustomNetwork/create_custom_network
kic_custom_network_test.go:57: (dbg) Run:  out/minikube-windows-amd64.exe start -p docker-network-741400 --network=
E0308 03:39:59.878430    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
kic_custom_network_test.go:57: (dbg) Done: out/minikube-windows-amd64.exe start -p docker-network-741400 --network=: (1m14.4691962s)
kic_custom_network_test.go:150: (dbg) Run:  docker network ls --format {{.Name}}
helpers_test.go:175: Cleaning up "docker-network-741400" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p docker-network-741400
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p docker-network-741400: (4.594024s)
--- PASS: TestKicCustomNetwork/create_custom_network (79.23s)

                                                
                                    
x
+
TestKicCustomNetwork/use_default_bridge_network (79.16s)

                                                
                                                
=== RUN   TestKicCustomNetwork/use_default_bridge_network
kic_custom_network_test.go:57: (dbg) Run:  out/minikube-windows-amd64.exe start -p docker-network-444900 --network=bridge
E0308 03:40:41.113150    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
kic_custom_network_test.go:57: (dbg) Done: out/minikube-windows-amd64.exe start -p docker-network-444900 --network=bridge: (1m14.5311123s)
kic_custom_network_test.go:150: (dbg) Run:  docker network ls --format {{.Name}}
helpers_test.go:175: Cleaning up "docker-network-444900" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p docker-network-444900
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p docker-network-444900: (4.4385495s)
--- PASS: TestKicCustomNetwork/use_default_bridge_network (79.16s)

                                                
                                    
x
+
TestKicExistingNetwork (81.23s)

                                                
                                                
=== RUN   TestKicExistingNetwork
kic_custom_network_test.go:150: (dbg) Run:  docker network ls --format {{.Name}}
kic_custom_network_test.go:93: (dbg) Run:  out/minikube-windows-amd64.exe start -p existing-network-772200 --network=existing-network
kic_custom_network_test.go:93: (dbg) Done: out/minikube-windows-amd64.exe start -p existing-network-772200 --network=existing-network: (1m15.2274263s)
helpers_test.go:175: Cleaning up "existing-network-772200" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p existing-network-772200
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p existing-network-772200: (4.5908014s)
--- PASS: TestKicExistingNetwork (81.23s)

                                                
                                    
x
+
TestKicCustomSubnet (80.06s)

                                                
                                                
=== RUN   TestKicCustomSubnet
kic_custom_network_test.go:112: (dbg) Run:  out/minikube-windows-amd64.exe start -p custom-subnet-931300 --subnet=192.168.60.0/24
E0308 03:43:36.684163    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 03:43:44.313940    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
kic_custom_network_test.go:112: (dbg) Done: out/minikube-windows-amd64.exe start -p custom-subnet-931300 --subnet=192.168.60.0/24: (1m15.4492086s)
kic_custom_network_test.go:161: (dbg) Run:  docker network inspect custom-subnet-931300 --format "{{(index .IPAM.Config 0).Subnet}}"
helpers_test.go:175: Cleaning up "custom-subnet-931300" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p custom-subnet-931300
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p custom-subnet-931300: (4.4335855s)
--- PASS: TestKicCustomSubnet (80.06s)

                                                
                                    
x
+
TestKicStaticIP (81.97s)

                                                
                                                
=== RUN   TestKicStaticIP
kic_custom_network_test.go:132: (dbg) Run:  out/minikube-windows-amd64.exe start -p static-ip-088900 --static-ip=192.168.200.200
E0308 03:45:41.133357    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
kic_custom_network_test.go:132: (dbg) Done: out/minikube-windows-amd64.exe start -p static-ip-088900 --static-ip=192.168.200.200: (1m16.0759901s)
kic_custom_network_test.go:138: (dbg) Run:  out/minikube-windows-amd64.exe -p static-ip-088900 ip
helpers_test.go:175: Cleaning up "static-ip-088900" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p static-ip-088900
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p static-ip-088900: (5.2496608s)
--- PASS: TestKicStaticIP (81.97s)

                                                
                                    
x
+
TestMainNoArgs (0.24s)

                                                
                                                
=== RUN   TestMainNoArgs
main_test.go:68: (dbg) Run:  out/minikube-windows-amd64.exe
--- PASS: TestMainNoArgs (0.24s)

                                                
                                    
x
+
TestMinikubeProfile (154.38s)

                                                
                                                
=== RUN   TestMinikubeProfile
minikube_profile_test.go:44: (dbg) Run:  out/minikube-windows-amd64.exe start -p first-816900 --driver=docker
minikube_profile_test.go:44: (dbg) Done: out/minikube-windows-amd64.exe start -p first-816900 --driver=docker: (1m10.6302639s)
minikube_profile_test.go:44: (dbg) Run:  out/minikube-windows-amd64.exe start -p second-816900 --driver=docker
minikube_profile_test.go:44: (dbg) Done: out/minikube-windows-amd64.exe start -p second-816900 --driver=docker: (1m7.2421445s)
minikube_profile_test.go:51: (dbg) Run:  out/minikube-windows-amd64.exe profile first-816900
minikube_profile_test.go:55: (dbg) Run:  out/minikube-windows-amd64.exe profile list -ojson
minikube_profile_test.go:55: (dbg) Done: out/minikube-windows-amd64.exe profile list -ojson: (2.350439s)
minikube_profile_test.go:51: (dbg) Run:  out/minikube-windows-amd64.exe profile second-816900
minikube_profile_test.go:55: (dbg) Run:  out/minikube-windows-amd64.exe profile list -ojson
minikube_profile_test.go:55: (dbg) Done: out/minikube-windows-amd64.exe profile list -ojson: (2.3872463s)
helpers_test.go:175: Cleaning up "second-816900" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p second-816900
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p second-816900: (5.0868037s)
helpers_test.go:175: Cleaning up "first-816900" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p first-816900
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p first-816900: (5.8220374s)
--- PASS: TestMinikubeProfile (154.38s)

                                                
                                    
x
+
TestMountStart/serial/StartWithMountFirst (19.97s)

                                                
                                                
=== RUN   TestMountStart/serial/StartWithMountFirst
mount_start_test.go:98: (dbg) Run:  out/minikube-windows-amd64.exe start -p mount-start-1-305100 --memory=2048 --mount --mount-gid 0 --mount-msize 6543 --mount-port 46464 --mount-uid 0 --no-kubernetes --driver=docker
E0308 03:48:36.706612    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
mount_start_test.go:98: (dbg) Done: out/minikube-windows-amd64.exe start -p mount-start-1-305100 --memory=2048 --mount --mount-gid 0 --mount-msize 6543 --mount-port 46464 --mount-uid 0 --no-kubernetes --driver=docker: (18.9594731s)
--- PASS: TestMountStart/serial/StartWithMountFirst (19.97s)

                                                
                                    
x
+
TestMountStart/serial/VerifyMountFirst (1.11s)

                                                
                                                
=== RUN   TestMountStart/serial/VerifyMountFirst
mount_start_test.go:114: (dbg) Run:  out/minikube-windows-amd64.exe -p mount-start-1-305100 ssh -- ls /minikube-host
mount_start_test.go:114: (dbg) Done: out/minikube-windows-amd64.exe -p mount-start-1-305100 ssh -- ls /minikube-host: (1.1109242s)
--- PASS: TestMountStart/serial/VerifyMountFirst (1.11s)

                                                
                                    
x
+
TestMountStart/serial/StartWithMountSecond (18.87s)

                                                
                                                
=== RUN   TestMountStart/serial/StartWithMountSecond
mount_start_test.go:98: (dbg) Run:  out/minikube-windows-amd64.exe start -p mount-start-2-305100 --memory=2048 --mount --mount-gid 0 --mount-msize 6543 --mount-port 46465 --mount-uid 0 --no-kubernetes --driver=docker
mount_start_test.go:98: (dbg) Done: out/minikube-windows-amd64.exe start -p mount-start-2-305100 --memory=2048 --mount --mount-gid 0 --mount-msize 6543 --mount-port 46465 --mount-uid 0 --no-kubernetes --driver=docker: (17.8696257s)
--- PASS: TestMountStart/serial/StartWithMountSecond (18.87s)

                                                
                                    
x
+
TestMountStart/serial/VerifyMountSecond (1.09s)

                                                
                                                
=== RUN   TestMountStart/serial/VerifyMountSecond
mount_start_test.go:114: (dbg) Run:  out/minikube-windows-amd64.exe -p mount-start-2-305100 ssh -- ls /minikube-host
mount_start_test.go:114: (dbg) Done: out/minikube-windows-amd64.exe -p mount-start-2-305100 ssh -- ls /minikube-host: (1.091703s)
--- PASS: TestMountStart/serial/VerifyMountSecond (1.09s)

                                                
                                    
x
+
TestMountStart/serial/DeleteFirst (4s)

                                                
                                                
=== RUN   TestMountStart/serial/DeleteFirst
pause_test.go:132: (dbg) Run:  out/minikube-windows-amd64.exe delete -p mount-start-1-305100 --alsologtostderr -v=5
pause_test.go:132: (dbg) Done: out/minikube-windows-amd64.exe delete -p mount-start-1-305100 --alsologtostderr -v=5: (4.0038874s)
--- PASS: TestMountStart/serial/DeleteFirst (4.00s)

                                                
                                    
x
+
TestMountStart/serial/VerifyMountPostDelete (1.12s)

                                                
                                                
=== RUN   TestMountStart/serial/VerifyMountPostDelete
mount_start_test.go:114: (dbg) Run:  out/minikube-windows-amd64.exe -p mount-start-2-305100 ssh -- ls /minikube-host
mount_start_test.go:114: (dbg) Done: out/minikube-windows-amd64.exe -p mount-start-2-305100 ssh -- ls /minikube-host: (1.1197758s)
--- PASS: TestMountStart/serial/VerifyMountPostDelete (1.12s)

                                                
                                    
x
+
TestMountStart/serial/Stop (2.45s)

                                                
                                                
=== RUN   TestMountStart/serial/Stop
mount_start_test.go:155: (dbg) Run:  out/minikube-windows-amd64.exe stop -p mount-start-2-305100
mount_start_test.go:155: (dbg) Done: out/minikube-windows-amd64.exe stop -p mount-start-2-305100: (2.44642s)
--- PASS: TestMountStart/serial/Stop (2.45s)

                                                
                                    
x
+
TestMountStart/serial/RestartStopped (14s)

                                                
                                                
=== RUN   TestMountStart/serial/RestartStopped
mount_start_test.go:166: (dbg) Run:  out/minikube-windows-amd64.exe start -p mount-start-2-305100
mount_start_test.go:166: (dbg) Done: out/minikube-windows-amd64.exe start -p mount-start-2-305100: (12.9949379s)
--- PASS: TestMountStart/serial/RestartStopped (14.00s)

                                                
                                    
x
+
TestMountStart/serial/VerifyMountPostStop (1.11s)

                                                
                                                
=== RUN   TestMountStart/serial/VerifyMountPostStop
mount_start_test.go:114: (dbg) Run:  out/minikube-windows-amd64.exe -p mount-start-2-305100 ssh -- ls /minikube-host
mount_start_test.go:114: (dbg) Done: out/minikube-windows-amd64.exe -p mount-start-2-305100 ssh -- ls /minikube-host: (1.1108024s)
--- PASS: TestMountStart/serial/VerifyMountPostStop (1.11s)

                                                
                                    
x
+
TestMultiNode/serial/FreshStart2Nodes (150.73s)

                                                
                                                
=== RUN   TestMultiNode/serial/FreshStart2Nodes
multinode_test.go:96: (dbg) Run:  out/minikube-windows-amd64.exe start -p multinode-219100 --wait=true --memory=2200 --nodes=2 -v=8 --alsologtostderr --driver=docker
E0308 03:50:41.149264    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
multinode_test.go:96: (dbg) Done: out/minikube-windows-amd64.exe start -p multinode-219100 --wait=true --memory=2200 --nodes=2 -v=8 --alsologtostderr --driver=docker: (2m28.2356488s)
multinode_test.go:102: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 status --alsologtostderr
multinode_test.go:102: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 status --alsologtostderr: (2.4945597s)
--- PASS: TestMultiNode/serial/FreshStart2Nodes (150.73s)

                                                
                                    
x
+
TestMultiNode/serial/DeployApp2Nodes (26.09s)

                                                
                                                
=== RUN   TestMultiNode/serial/DeployApp2Nodes
multinode_test.go:493: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- apply -f ./testdata/multinodes/multinode-pod-dns-test.yaml
multinode_test.go:498: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- rollout status deployment/busybox
multinode_test.go:498: (dbg) Done: out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- rollout status deployment/busybox: (19.0880077s)
multinode_test.go:505: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- get pods -o jsonpath='{.items[*].status.podIP}'
multinode_test.go:528: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- get pods -o jsonpath='{.items[*].metadata.name}'
multinode_test.go:536: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- exec busybox-5b5d89c9d6-f77bn -- nslookup kubernetes.io
multinode_test.go:536: (dbg) Done: out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- exec busybox-5b5d89c9d6-f77bn -- nslookup kubernetes.io: (1.6786846s)
multinode_test.go:536: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- exec busybox-5b5d89c9d6-gf7rk -- nslookup kubernetes.io
multinode_test.go:536: (dbg) Done: out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- exec busybox-5b5d89c9d6-gf7rk -- nslookup kubernetes.io: (1.6599776s)
multinode_test.go:546: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- exec busybox-5b5d89c9d6-f77bn -- nslookup kubernetes.default
multinode_test.go:546: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- exec busybox-5b5d89c9d6-gf7rk -- nslookup kubernetes.default
multinode_test.go:554: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- exec busybox-5b5d89c9d6-f77bn -- nslookup kubernetes.default.svc.cluster.local
multinode_test.go:554: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- exec busybox-5b5d89c9d6-gf7rk -- nslookup kubernetes.default.svc.cluster.local
--- PASS: TestMultiNode/serial/DeployApp2Nodes (26.09s)

                                                
                                    
x
+
TestMultiNode/serial/PingHostFrom2Pods (2.42s)

                                                
                                                
=== RUN   TestMultiNode/serial/PingHostFrom2Pods
multinode_test.go:564: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- get pods -o jsonpath='{.items[*].metadata.name}'
multinode_test.go:572: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- exec busybox-5b5d89c9d6-f77bn -- sh -c "nslookup host.minikube.internal | awk 'NR==5' | cut -d' ' -f3"
multinode_test.go:583: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- exec busybox-5b5d89c9d6-f77bn -- sh -c "ping -c 1 192.168.65.254"
multinode_test.go:572: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- exec busybox-5b5d89c9d6-gf7rk -- sh -c "nslookup host.minikube.internal | awk 'NR==5' | cut -d' ' -f3"
multinode_test.go:583: (dbg) Run:  out/minikube-windows-amd64.exe kubectl -p multinode-219100 -- exec busybox-5b5d89c9d6-gf7rk -- sh -c "ping -c 1 192.168.65.254"
--- PASS: TestMultiNode/serial/PingHostFrom2Pods (2.42s)

                                                
                                    
x
+
TestMultiNode/serial/AddNode (55.5s)

                                                
                                                
=== RUN   TestMultiNode/serial/AddNode
multinode_test.go:121: (dbg) Run:  out/minikube-windows-amd64.exe node add -p multinode-219100 -v 3 --alsologtostderr
multinode_test.go:121: (dbg) Done: out/minikube-windows-amd64.exe node add -p multinode-219100 -v 3 --alsologtostderr: (52.6389973s)
multinode_test.go:127: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 status --alsologtostderr
E0308 03:53:36.722816    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
multinode_test.go:127: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 status --alsologtostderr: (2.8570696s)
--- PASS: TestMultiNode/serial/AddNode (55.50s)

                                                
                                    
x
+
TestMultiNode/serial/MultiNodeLabels (0.18s)

                                                
                                                
=== RUN   TestMultiNode/serial/MultiNodeLabels
multinode_test.go:221: (dbg) Run:  kubectl --context multinode-219100 get nodes -o "jsonpath=[{range .items[*]}{.metadata.labels},{end}]"
--- PASS: TestMultiNode/serial/MultiNodeLabels (0.18s)

                                                
                                    
x
+
TestMultiNode/serial/ProfileList (1.54s)

                                                
                                                
=== RUN   TestMultiNode/serial/ProfileList
multinode_test.go:143: (dbg) Run:  out/minikube-windows-amd64.exe profile list --output json
multinode_test.go:143: (dbg) Done: out/minikube-windows-amd64.exe profile list --output json: (1.5373524s)
--- PASS: TestMultiNode/serial/ProfileList (1.54s)

                                                
                                    
x
+
TestMultiNode/serial/CopyFile (39.9s)

                                                
                                                
=== RUN   TestMultiNode/serial/CopyFile
multinode_test.go:184: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 status --output json --alsologtostderr
multinode_test.go:184: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 status --output json --alsologtostderr: (2.8307436s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 cp testdata\cp-test.txt multinode-219100:/home/docker/cp-test.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 cp testdata\cp-test.txt multinode-219100:/home/docker/cp-test.txt: (1.1534751s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100 "sudo cat /home/docker/cp-test.txt": (1.1600494s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestMultiNodeserialCopyFile1439088915\001\cp-test_multinode-219100.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestMultiNodeserialCopyFile1439088915\001\cp-test_multinode-219100.txt: (1.1442076s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100 "sudo cat /home/docker/cp-test.txt": (1.1233422s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100:/home/docker/cp-test.txt multinode-219100-m02:/home/docker/cp-test_multinode-219100_multinode-219100-m02.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100:/home/docker/cp-test.txt multinode-219100-m02:/home/docker/cp-test_multinode-219100_multinode-219100-m02.txt: (1.635528s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100 "sudo cat /home/docker/cp-test.txt": (1.1574463s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m02 "sudo cat /home/docker/cp-test_multinode-219100_multinode-219100-m02.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m02 "sudo cat /home/docker/cp-test_multinode-219100_multinode-219100-m02.txt": (1.1448488s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100:/home/docker/cp-test.txt multinode-219100-m03:/home/docker/cp-test_multinode-219100_multinode-219100-m03.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100:/home/docker/cp-test.txt multinode-219100-m03:/home/docker/cp-test_multinode-219100_multinode-219100-m03.txt: (1.6395415s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100 "sudo cat /home/docker/cp-test.txt": (1.1207938s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m03 "sudo cat /home/docker/cp-test_multinode-219100_multinode-219100-m03.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m03 "sudo cat /home/docker/cp-test_multinode-219100_multinode-219100-m03.txt": (1.1062919s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 cp testdata\cp-test.txt multinode-219100-m02:/home/docker/cp-test.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 cp testdata\cp-test.txt multinode-219100-m02:/home/docker/cp-test.txt: (1.1534429s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m02 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m02 "sudo cat /home/docker/cp-test.txt": (1.1181618s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100-m02:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestMultiNodeserialCopyFile1439088915\001\cp-test_multinode-219100-m02.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100-m02:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestMultiNodeserialCopyFile1439088915\001\cp-test_multinode-219100-m02.txt: (1.1116309s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m02 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m02 "sudo cat /home/docker/cp-test.txt": (1.1062834s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100-m02:/home/docker/cp-test.txt multinode-219100:/home/docker/cp-test_multinode-219100-m02_multinode-219100.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100-m02:/home/docker/cp-test.txt multinode-219100:/home/docker/cp-test_multinode-219100-m02_multinode-219100.txt: (1.6950775s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m02 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m02 "sudo cat /home/docker/cp-test.txt": (1.1117377s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100 "sudo cat /home/docker/cp-test_multinode-219100-m02_multinode-219100.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100 "sudo cat /home/docker/cp-test_multinode-219100-m02_multinode-219100.txt": (1.0903018s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100-m02:/home/docker/cp-test.txt multinode-219100-m03:/home/docker/cp-test_multinode-219100-m02_multinode-219100-m03.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100-m02:/home/docker/cp-test.txt multinode-219100-m03:/home/docker/cp-test_multinode-219100-m02_multinode-219100-m03.txt: (1.6694477s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m02 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m02 "sudo cat /home/docker/cp-test.txt": (1.141841s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m03 "sudo cat /home/docker/cp-test_multinode-219100-m02_multinode-219100-m03.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m03 "sudo cat /home/docker/cp-test_multinode-219100-m02_multinode-219100-m03.txt": (1.1176526s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 cp testdata\cp-test.txt multinode-219100-m03:/home/docker/cp-test.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 cp testdata\cp-test.txt multinode-219100-m03:/home/docker/cp-test.txt: (1.1526728s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m03 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m03 "sudo cat /home/docker/cp-test.txt": (1.0984371s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100-m03:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestMultiNodeserialCopyFile1439088915\001\cp-test_multinode-219100-m03.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100-m03:/home/docker/cp-test.txt C:\Users\jenkins.minikube4\AppData\Local\Temp\TestMultiNodeserialCopyFile1439088915\001\cp-test_multinode-219100-m03.txt: (1.1192052s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m03 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m03 "sudo cat /home/docker/cp-test.txt": (1.1348637s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100-m03:/home/docker/cp-test.txt multinode-219100:/home/docker/cp-test_multinode-219100-m03_multinode-219100.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100-m03:/home/docker/cp-test.txt multinode-219100:/home/docker/cp-test_multinode-219100-m03_multinode-219100.txt: (1.6360066s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m03 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m03 "sudo cat /home/docker/cp-test.txt": (1.1036913s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100 "sudo cat /home/docker/cp-test_multinode-219100-m03_multinode-219100.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100 "sudo cat /home/docker/cp-test_multinode-219100-m03_multinode-219100.txt": (1.143064s)
helpers_test.go:556: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100-m03:/home/docker/cp-test.txt multinode-219100-m02:/home/docker/cp-test_multinode-219100-m03_multinode-219100-m02.txt
helpers_test.go:556: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 cp multinode-219100-m03:/home/docker/cp-test.txt multinode-219100-m02:/home/docker/cp-test_multinode-219100-m03_multinode-219100-m02.txt: (1.6944811s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m03 "sudo cat /home/docker/cp-test.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m03 "sudo cat /home/docker/cp-test.txt": (1.1370358s)
helpers_test.go:534: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m02 "sudo cat /home/docker/cp-test_multinode-219100-m03_multinode-219100-m02.txt"
helpers_test.go:534: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 ssh -n multinode-219100-m02 "sudo cat /home/docker/cp-test_multinode-219100-m03_multinode-219100-m02.txt": (1.1357617s)
--- PASS: TestMultiNode/serial/CopyFile (39.90s)

                                                
                                    
x
+
TestMultiNode/serial/StopNode (6.61s)

                                                
                                                
=== RUN   TestMultiNode/serial/StopNode
multinode_test.go:248: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 node stop m03
multinode_test.go:248: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 node stop m03: (2.1695641s)
multinode_test.go:254: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 status
multinode_test.go:254: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p multinode-219100 status: exit status 7 (2.2411811s)

                                                
                                                
-- stdout --
	multinode-219100
	type: Control Plane
	host: Running
	kubelet: Running
	apiserver: Running
	kubeconfig: Configured
	
	multinode-219100-m02
	type: Worker
	host: Running
	kubelet: Running
	
	multinode-219100-m03
	type: Worker
	host: Stopped
	kubelet: Stopped
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:54:21.042139    4932 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
multinode_test.go:261: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 status --alsologtostderr
multinode_test.go:261: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p multinode-219100 status --alsologtostderr: exit status 7 (2.1947101s)

                                                
                                                
-- stdout --
	multinode-219100
	type: Control Plane
	host: Running
	kubelet: Running
	apiserver: Running
	kubeconfig: Configured
	
	multinode-219100-m02
	type: Worker
	host: Running
	kubelet: Running
	
	multinode-219100-m03
	type: Worker
	host: Stopped
	kubelet: Stopped
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:54:23.288867    7220 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	I0308 03:54:23.372198    7220 out.go:291] Setting OutFile to fd 996 ...
	I0308 03:54:23.373247    7220 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 03:54:23.373247    7220 out.go:304] Setting ErrFile to fd 884...
	I0308 03:54:23.373247    7220 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 03:54:23.387083    7220 out.go:298] Setting JSON to false
	I0308 03:54:23.387083    7220 mustload.go:65] Loading cluster: multinode-219100
	I0308 03:54:23.387634    7220 notify.go:220] Checking for updates...
	I0308 03:54:23.388279    7220 config.go:182] Loaded profile config "multinode-219100": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
	I0308 03:54:23.388311    7220 status.go:255] checking status of multinode-219100 ...
	I0308 03:54:23.408617    7220 cli_runner.go:164] Run: docker container inspect multinode-219100 --format={{.State.Status}}
	I0308 03:54:23.586447    7220 status.go:330] multinode-219100 host status = "Running" (err=<nil>)
	I0308 03:54:23.586447    7220 host.go:66] Checking if "multinode-219100" exists ...
	I0308 03:54:23.595690    7220 cli_runner.go:164] Run: docker container inspect -f "{{range .NetworkSettings.Networks}}{{.IPAddress}},{{.GlobalIPv6Address}}{{end}}" multinode-219100
	I0308 03:54:23.758002    7220 host.go:66] Checking if "multinode-219100" exists ...
	I0308 03:54:23.769876    7220 ssh_runner.go:195] Run: sh -c "df -h /var | awk 'NR==2{print $5}'"
	I0308 03:54:23.778797    7220 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" multinode-219100
	I0308 03:54:23.961653    7220 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:65051 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\multinode-219100\id_rsa Username:docker}
	I0308 03:54:24.113392    7220 ssh_runner.go:195] Run: systemctl --version
	I0308 03:54:24.140103    7220 ssh_runner.go:195] Run: sudo systemctl is-active --quiet service kubelet
	I0308 03:54:24.173364    7220 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "8443/tcp") 0).HostPort}}'" multinode-219100
	I0308 03:54:24.349768    7220 kubeconfig.go:125] found "multinode-219100" server: "https://127.0.0.1:65055"
	I0308 03:54:24.349768    7220 api_server.go:166] Checking apiserver status ...
	I0308 03:54:24.361876    7220 ssh_runner.go:195] Run: sudo pgrep -xnf kube-apiserver.*minikube.*
	I0308 03:54:24.397300    7220 ssh_runner.go:195] Run: sudo egrep ^[0-9]+:freezer: /proc/2623/cgroup
	I0308 03:54:24.417205    7220 api_server.go:182] apiserver freezer: "21:freezer:/docker/d2d4b1938983058ebf08fa0ef0e9048dae235e979aab3a6915f4fd12f92bc9ac/kubepods/burstable/pod06220f0ab14cd6c914ee243c4a83a282/4fd00b0998edbfde79585e4436d55e929d6afb620aca5ea268e583e38443bd35"
	I0308 03:54:24.429410    7220 ssh_runner.go:195] Run: sudo cat /sys/fs/cgroup/freezer/docker/d2d4b1938983058ebf08fa0ef0e9048dae235e979aab3a6915f4fd12f92bc9ac/kubepods/burstable/pod06220f0ab14cd6c914ee243c4a83a282/4fd00b0998edbfde79585e4436d55e929d6afb620aca5ea268e583e38443bd35/freezer.state
	I0308 03:54:24.447856    7220 api_server.go:204] freezer state: "THAWED"
	I0308 03:54:24.447856    7220 api_server.go:253] Checking apiserver healthz at https://127.0.0.1:65055/healthz ...
	I0308 03:54:24.461305    7220 api_server.go:279] https://127.0.0.1:65055/healthz returned 200:
	ok
	I0308 03:54:24.462268    7220 status.go:422] multinode-219100 apiserver status = Running (err=<nil>)
	I0308 03:54:24.462268    7220 status.go:257] multinode-219100 status: &{Name:multinode-219100 Host:Running Kubelet:Running APIServer:Running Kubeconfig:Configured Worker:false TimeToStop: DockerEnv: PodManEnv:}
	I0308 03:54:24.462268    7220 status.go:255] checking status of multinode-219100-m02 ...
	I0308 03:54:24.480220    7220 cli_runner.go:164] Run: docker container inspect multinode-219100-m02 --format={{.State.Status}}
	I0308 03:54:24.643137    7220 status.go:330] multinode-219100-m02 host status = "Running" (err=<nil>)
	I0308 03:54:24.643171    7220 host.go:66] Checking if "multinode-219100-m02" exists ...
	I0308 03:54:24.653643    7220 cli_runner.go:164] Run: docker container inspect -f "{{range .NetworkSettings.Networks}}{{.IPAddress}},{{.GlobalIPv6Address}}{{end}}" multinode-219100-m02
	I0308 03:54:24.813691    7220 host.go:66] Checking if "multinode-219100-m02" exists ...
	I0308 03:54:24.826933    7220 ssh_runner.go:195] Run: sh -c "df -h /var | awk 'NR==2{print $5}'"
	I0308 03:54:24.834160    7220 cli_runner.go:164] Run: docker container inspect -f "'{{(index (index .NetworkSettings.Ports "22/tcp") 0).HostPort}}'" multinode-219100-m02
	I0308 03:54:25.002145    7220 sshutil.go:53] new ssh client: &{IP:127.0.0.1 Port:65101 SSHKeyPath:C:\Users\jenkins.minikube4\minikube-integration\.minikube\machines\multinode-219100-m02\id_rsa Username:docker}
	I0308 03:54:25.129206    7220 ssh_runner.go:195] Run: sudo systemctl is-active --quiet service kubelet
	I0308 03:54:25.154917    7220 status.go:257] multinode-219100-m02 status: &{Name:multinode-219100-m02 Host:Running Kubelet:Running APIServer:Irrelevant Kubeconfig:Irrelevant Worker:true TimeToStop: DockerEnv: PodManEnv:}
	I0308 03:54:25.154917    7220 status.go:255] checking status of multinode-219100-m03 ...
	I0308 03:54:25.172634    7220 cli_runner.go:164] Run: docker container inspect multinode-219100-m03 --format={{.State.Status}}
	I0308 03:54:25.345427    7220 status.go:330] multinode-219100-m03 host status = "Stopped" (err=<nil>)
	I0308 03:54:25.345489    7220 status.go:343] host is not running, skipping remaining checks
	I0308 03:54:25.345525    7220 status.go:257] multinode-219100-m03 status: &{Name:multinode-219100-m03 Host:Stopped Kubelet:Stopped APIServer:Stopped Kubeconfig:Stopped Worker:true TimeToStop: DockerEnv: PodManEnv:}

                                                
                                                
** /stderr **
--- PASS: TestMultiNode/serial/StopNode (6.61s)

                                                
                                    
x
+
TestMultiNode/serial/StartAfterStop (20.75s)

                                                
                                                
=== RUN   TestMultiNode/serial/StartAfterStop
multinode_test.go:282: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 node start m03 -v=7 --alsologtostderr
multinode_test.go:282: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 node start m03 -v=7 --alsologtostderr: (17.8846702s)
multinode_test.go:290: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 status -v=7 --alsologtostderr
multinode_test.go:290: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 status -v=7 --alsologtostderr: (2.6792285s)
multinode_test.go:306: (dbg) Run:  kubectl get nodes
--- PASS: TestMultiNode/serial/StartAfterStop (20.75s)

                                                
                                    
x
+
TestMultiNode/serial/RestartKeepsNodes (124.07s)

                                                
                                                
=== RUN   TestMultiNode/serial/RestartKeepsNodes
multinode_test.go:314: (dbg) Run:  out/minikube-windows-amd64.exe node list -p multinode-219100
multinode_test.go:321: (dbg) Run:  out/minikube-windows-amd64.exe stop -p multinode-219100
multinode_test.go:321: (dbg) Done: out/minikube-windows-amd64.exe stop -p multinode-219100: (25.6248117s)
multinode_test.go:326: (dbg) Run:  out/minikube-windows-amd64.exe start -p multinode-219100 --wait=true -v=8 --alsologtostderr
E0308 03:55:41.164335    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 03:56:39.936340    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
multinode_test.go:326: (dbg) Done: out/minikube-windows-amd64.exe start -p multinode-219100 --wait=true -v=8 --alsologtostderr: (1m37.9784427s)
multinode_test.go:331: (dbg) Run:  out/minikube-windows-amd64.exe node list -p multinode-219100
--- PASS: TestMultiNode/serial/RestartKeepsNodes (124.07s)

                                                
                                    
x
+
TestMultiNode/serial/DeleteNode (13.25s)

                                                
                                                
=== RUN   TestMultiNode/serial/DeleteNode
multinode_test.go:416: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 node delete m03
multinode_test.go:416: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 node delete m03: (10.7521623s)
multinode_test.go:422: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 status --alsologtostderr
multinode_test.go:422: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 status --alsologtostderr: (2.0760085s)
multinode_test.go:436: (dbg) Run:  kubectl get nodes
multinode_test.go:444: (dbg) Run:  kubectl get nodes -o "go-template='{{range .items}}{{range .status.conditions}}{{if eq .type "Ready"}} {{.status}}{{"\n"}}{{end}}{{end}}{{end}}'"
--- PASS: TestMultiNode/serial/DeleteNode (13.25s)

                                                
                                    
x
+
TestMultiNode/serial/StopMultiNode (25.14s)

                                                
                                                
=== RUN   TestMultiNode/serial/StopMultiNode
multinode_test.go:345: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 stop
multinode_test.go:345: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 stop: (23.9465623s)
multinode_test.go:351: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 status
multinode_test.go:351: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p multinode-219100 status: exit status 7 (576.9231ms)

                                                
                                                
-- stdout --
	multinode-219100
	type: Control Plane
	host: Stopped
	kubelet: Stopped
	apiserver: Stopped
	kubeconfig: Stopped
	
	multinode-219100-m02
	type: Worker
	host: Stopped
	kubelet: Stopped
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:57:27.490085    6652 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
multinode_test.go:358: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 status --alsologtostderr
multinode_test.go:358: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p multinode-219100 status --alsologtostderr: exit status 7 (617.607ms)

                                                
                                                
-- stdout --
	multinode-219100
	type: Control Plane
	host: Stopped
	kubelet: Stopped
	apiserver: Stopped
	kubeconfig: Stopped
	
	multinode-219100-m02
	type: Worker
	host: Stopped
	kubelet: Stopped
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:57:28.079909   14444 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	I0308 03:57:28.163253   14444 out.go:291] Setting OutFile to fd 748 ...
	I0308 03:57:28.163253   14444 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 03:57:28.163253   14444 out.go:304] Setting ErrFile to fd 624...
	I0308 03:57:28.164249   14444 out.go:338] TERM=,COLORTERM=, which probably does not support color
	I0308 03:57:28.176950   14444 out.go:298] Setting JSON to false
	I0308 03:57:28.176950   14444 mustload.go:65] Loading cluster: multinode-219100
	I0308 03:57:28.176950   14444 notify.go:220] Checking for updates...
	I0308 03:57:28.177502   14444 config.go:182] Loaded profile config "multinode-219100": Driver=docker, ContainerRuntime=docker, KubernetesVersion=v1.28.4
	I0308 03:57:28.177502   14444 status.go:255] checking status of multinode-219100 ...
	I0308 03:57:28.197256   14444 cli_runner.go:164] Run: docker container inspect multinode-219100 --format={{.State.Status}}
	I0308 03:57:28.368304   14444 status.go:330] multinode-219100 host status = "Stopped" (err=<nil>)
	I0308 03:57:28.368415   14444 status.go:343] host is not running, skipping remaining checks
	I0308 03:57:28.368415   14444 status.go:257] multinode-219100 status: &{Name:multinode-219100 Host:Stopped Kubelet:Stopped APIServer:Stopped Kubeconfig:Stopped Worker:false TimeToStop: DockerEnv: PodManEnv:}
	I0308 03:57:28.368471   14444 status.go:255] checking status of multinode-219100-m02 ...
	I0308 03:57:28.385999   14444 cli_runner.go:164] Run: docker container inspect multinode-219100-m02 --format={{.State.Status}}
	I0308 03:57:28.568099   14444 status.go:330] multinode-219100-m02 host status = "Stopped" (err=<nil>)
	I0308 03:57:28.568131   14444 status.go:343] host is not running, skipping remaining checks
	I0308 03:57:28.568131   14444 status.go:257] multinode-219100-m02 status: &{Name:multinode-219100-m02 Host:Stopped Kubelet:Stopped APIServer:Stopped Kubeconfig:Stopped Worker:true TimeToStop: DockerEnv: PodManEnv:}

                                                
                                                
** /stderr **
--- PASS: TestMultiNode/serial/StopMultiNode (25.14s)

                                                
                                    
x
+
TestMultiNode/serial/RestartMultiNode (44.69s)

                                                
                                                
=== RUN   TestMultiNode/serial/RestartMultiNode
multinode_test.go:376: (dbg) Run:  out/minikube-windows-amd64.exe start -p multinode-219100 --wait=true -v=8 --alsologtostderr --driver=docker
multinode_test.go:376: (dbg) Done: out/minikube-windows-amd64.exe start -p multinode-219100 --wait=true -v=8 --alsologtostderr --driver=docker: (42.1576886s)
multinode_test.go:382: (dbg) Run:  out/minikube-windows-amd64.exe -p multinode-219100 status --alsologtostderr
multinode_test.go:382: (dbg) Done: out/minikube-windows-amd64.exe -p multinode-219100 status --alsologtostderr: (2.100653s)
multinode_test.go:396: (dbg) Run:  kubectl get nodes
multinode_test.go:404: (dbg) Run:  kubectl get nodes -o "go-template='{{range .items}}{{range .status.conditions}}{{if eq .type "Ready"}} {{.status}}{{"\n"}}{{end}}{{end}}{{end}}'"
--- PASS: TestMultiNode/serial/RestartMultiNode (44.69s)

                                                
                                    
x
+
TestMultiNode/serial/ValidateNameConflict (76.41s)

                                                
                                                
=== RUN   TestMultiNode/serial/ValidateNameConflict
multinode_test.go:455: (dbg) Run:  out/minikube-windows-amd64.exe node list -p multinode-219100
multinode_test.go:464: (dbg) Run:  out/minikube-windows-amd64.exe start -p multinode-219100-m02 --driver=docker
multinode_test.go:464: (dbg) Non-zero exit: out/minikube-windows-amd64.exe start -p multinode-219100-m02 --driver=docker: exit status 14 (280.4175ms)

                                                
                                                
-- stdout --
	* [multinode-219100-m02] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
	  - KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	  - MINIKUBE_FORCE_SYSTEMD=
	  - MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
	  - MINIKUBE_LOCATION=18333
	  - MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
	
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:58:13.608670    2988 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	! Profile name 'multinode-219100-m02' is duplicated with machine name 'multinode-219100-m02' in profile 'multinode-219100'
	X Exiting due to MK_USAGE: Profile name should be unique

                                                
                                                
** /stderr **
multinode_test.go:472: (dbg) Run:  out/minikube-windows-amd64.exe start -p multinode-219100-m03 --driver=docker
E0308 03:58:36.731841    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
multinode_test.go:472: (dbg) Done: out/minikube-windows-amd64.exe start -p multinode-219100-m03 --driver=docker: (1m10.0698408s)
multinode_test.go:479: (dbg) Run:  out/minikube-windows-amd64.exe node add -p multinode-219100
multinode_test.go:479: (dbg) Non-zero exit: out/minikube-windows-amd64.exe node add -p multinode-219100: exit status 80 (1.1629324s)

                                                
                                                
-- stdout --
	* Adding node m03 to cluster multinode-219100 as [worker]
	
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 03:59:23.966817   11868 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	X Exiting due to GUEST_NODE_ADD: failed to add node: Node multinode-219100-m03 already exists in multinode-219100-m03 profile
	* 
	╭───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
	│                                                                                                                       │
	│    * If the above advice does not help, please let us know:                                                           │
	│      https://github.com/kubernetes/minikube/issues/new/choose                                                         │
	│                                                                                                                       │
	│    * Please run `minikube logs --file=logs.txt` and attach logs.txt to the GitHub issue.                              │
	│    * Please also attach the following file to the GitHub issue:                                                       │
	│    * - C:\Users\jenkins.minikube4\AppData\Local\Temp\minikube_node_6ccce2fc44e3bb58d6c4f91e09ae7c7eaaf65535_19.log    │
	│                                                                                                                       │
	╰───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

                                                
                                                
** /stderr **
multinode_test.go:484: (dbg) Run:  out/minikube-windows-amd64.exe delete -p multinode-219100-m03
multinode_test.go:484: (dbg) Done: out/minikube-windows-amd64.exe delete -p multinode-219100-m03: (4.6776612s)
--- PASS: TestMultiNode/serial/ValidateNameConflict (76.41s)

                                                
                                    
x
+
TestPreload (192.9s)

                                                
                                                
=== RUN   TestPreload
preload_test.go:44: (dbg) Run:  out/minikube-windows-amd64.exe start -p test-preload-563400 --memory=2200 --alsologtostderr --wait=true --preload=false --driver=docker --kubernetes-version=v1.24.4
E0308 04:00:24.365510    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 04:00:41.172009    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
preload_test.go:44: (dbg) Done: out/minikube-windows-amd64.exe start -p test-preload-563400 --memory=2200 --alsologtostderr --wait=true --preload=false --driver=docker --kubernetes-version=v1.24.4: (2m11.444406s)
preload_test.go:52: (dbg) Run:  out/minikube-windows-amd64.exe -p test-preload-563400 image pull gcr.io/k8s-minikube/busybox
preload_test.go:52: (dbg) Done: out/minikube-windows-amd64.exe -p test-preload-563400 image pull gcr.io/k8s-minikube/busybox: (2.0154227s)
preload_test.go:58: (dbg) Run:  out/minikube-windows-amd64.exe stop -p test-preload-563400
preload_test.go:58: (dbg) Done: out/minikube-windows-amd64.exe stop -p test-preload-563400: (12.4238654s)
preload_test.go:66: (dbg) Run:  out/minikube-windows-amd64.exe start -p test-preload-563400 --memory=2200 --alsologtostderr -v=1 --wait=true --driver=docker
preload_test.go:66: (dbg) Done: out/minikube-windows-amd64.exe start -p test-preload-563400 --memory=2200 --alsologtostderr -v=1 --wait=true --driver=docker: (40.6734708s)
preload_test.go:71: (dbg) Run:  out/minikube-windows-amd64.exe -p test-preload-563400 image list
helpers_test.go:175: Cleaning up "test-preload-563400" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p test-preload-563400
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p test-preload-563400: (5.4311391s)
--- PASS: TestPreload (192.90s)

                                                
                                    
x
+
TestScheduledStopWindows (139.46s)

                                                
                                                
=== RUN   TestScheduledStopWindows
scheduled_stop_test.go:128: (dbg) Run:  out/minikube-windows-amd64.exe start -p scheduled-stop-363900 --memory=2048 --driver=docker
E0308 04:03:36.747827    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
scheduled_stop_test.go:128: (dbg) Done: out/minikube-windows-amd64.exe start -p scheduled-stop-363900 --memory=2048 --driver=docker: (1m9.3255699s)
scheduled_stop_test.go:137: (dbg) Run:  out/minikube-windows-amd64.exe stop -p scheduled-stop-363900 --schedule 5m
scheduled_stop_test.go:137: (dbg) Done: out/minikube-windows-amd64.exe stop -p scheduled-stop-363900 --schedule 5m: (1.327634s)
scheduled_stop_test.go:191: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.TimeToStop}} -p scheduled-stop-363900 -n scheduled-stop-363900
scheduled_stop_test.go:191: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.TimeToStop}} -p scheduled-stop-363900 -n scheduled-stop-363900: (1.2946424s)
scheduled_stop_test.go:54: (dbg) Run:  out/minikube-windows-amd64.exe ssh -p scheduled-stop-363900 -- sudo systemctl show minikube-scheduled-stop --no-page
scheduled_stop_test.go:54: (dbg) Done: out/minikube-windows-amd64.exe ssh -p scheduled-stop-363900 -- sudo systemctl show minikube-scheduled-stop --no-page: (1.1459443s)
scheduled_stop_test.go:137: (dbg) Run:  out/minikube-windows-amd64.exe stop -p scheduled-stop-363900 --schedule 5s
scheduled_stop_test.go:137: (dbg) Done: out/minikube-windows-amd64.exe stop -p scheduled-stop-363900 --schedule 5s: (1.3026918s)
scheduled_stop_test.go:205: (dbg) Run:  out/minikube-windows-amd64.exe status -p scheduled-stop-363900
scheduled_stop_test.go:205: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status -p scheduled-stop-363900: exit status 7 (414.8076ms)

                                                
                                                
-- stdout --
	scheduled-stop-363900
	type: Control Plane
	host: Stopped
	kubelet: Stopped
	apiserver: Stopped
	kubeconfig: Stopped
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:05:07.151051   14276 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
scheduled_stop_test.go:176: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Host}} -p scheduled-stop-363900 -n scheduled-stop-363900
scheduled_stop_test.go:176: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.Host}} -p scheduled-stop-363900 -n scheduled-stop-363900: exit status 7 (405.901ms)

                                                
                                                
-- stdout --
	Stopped

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:05:07.562392   15328 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
scheduled_stop_test.go:176: status error: exit status 7 (may be ok)
helpers_test.go:175: Cleaning up "scheduled-stop-363900" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p scheduled-stop-363900
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p scheduled-stop-363900: (4.2326478s)
--- PASS: TestScheduledStopWindows (139.46s)

                                                
                                    
x
+
TestInsufficientStorage (48.84s)

                                                
                                                
=== RUN   TestInsufficientStorage
status_test.go:50: (dbg) Run:  out/minikube-windows-amd64.exe start -p insufficient-storage-436100 --memory=2048 --output=json --wait=true --driver=docker
E0308 04:05:41.180459    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
status_test.go:50: (dbg) Non-zero exit: out/minikube-windows-amd64.exe start -p insufficient-storage-436100 --memory=2048 --output=json --wait=true --driver=docker: exit status 26 (42.2449344s)

                                                
                                                
-- stdout --
	{"specversion":"1.0","id":"61af537f-4af8-448a-92b9-ca865f9e65f7","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.step","datacontenttype":"application/json","data":{"currentstep":"0","message":"[insufficient-storage-436100] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046","name":"Initial Minikube Setup","totalsteps":"19"}}
	{"specversion":"1.0","id":"ae8bd45c-5c56-4fa5-8cf0-0e52871b21d1","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.info","datacontenttype":"application/json","data":{"message":"KUBECONFIG=C:\\Users\\jenkins.minikube4\\minikube-integration\\kubeconfig"}}
	{"specversion":"1.0","id":"36d220a9-652a-40d5-baea-4a1177093681","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.info","datacontenttype":"application/json","data":{"message":"MINIKUBE_FORCE_SYSTEMD="}}
	{"specversion":"1.0","id":"7d730b37-c512-45bb-93c3-d597180145bd","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.info","datacontenttype":"application/json","data":{"message":"MINIKUBE_HOME=C:\\Users\\jenkins.minikube4\\minikube-integration\\.minikube"}}
	{"specversion":"1.0","id":"b0cf3955-a22c-48e2-8f4f-a0ba453509bd","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.info","datacontenttype":"application/json","data":{"message":"MINIKUBE_LOCATION=18333"}}
	{"specversion":"1.0","id":"cc44f4fe-c780-47e3-b39e-cb908b30f894","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.info","datacontenttype":"application/json","data":{"message":"MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true"}}
	{"specversion":"1.0","id":"65d5c017-700d-440c-a4c0-516127614690","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.info","datacontenttype":"application/json","data":{"message":"MINIKUBE_TEST_STORAGE_CAPACITY=100"}}
	{"specversion":"1.0","id":"2fd96130-d6e7-4849-95da-4a3ff5401f62","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.info","datacontenttype":"application/json","data":{"message":"MINIKUBE_TEST_AVAILABLE_STORAGE=19"}}
	{"specversion":"1.0","id":"fc4ef4d4-efab-4940-98d2-dd07525df97a","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.step","datacontenttype":"application/json","data":{"currentstep":"1","message":"Using the docker driver based on user configuration","name":"Selecting Driver","totalsteps":"19"}}
	{"specversion":"1.0","id":"a65f9b2b-0173-457d-9ce9-914829f3b6d7","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.info","datacontenttype":"application/json","data":{"message":"Using Docker Desktop driver with root privileges"}}
	{"specversion":"1.0","id":"01a4306a-c3fd-473b-b1dd-92b69a64b20c","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.step","datacontenttype":"application/json","data":{"currentstep":"3","message":"Starting \"insufficient-storage-436100\" primary control-plane node in \"insufficient-storage-436100\" cluster","name":"Starting Node","totalsteps":"19"}}
	{"specversion":"1.0","id":"bfabb595-6244-4eea-9825-4ba2eb45325d","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.step","datacontenttype":"application/json","data":{"currentstep":"5","message":"Pulling base image v0.0.42-1708944392-18244 ...","name":"Pulling Base Image","totalsteps":"19"}}
	{"specversion":"1.0","id":"07f5d761-05b4-4a55-9aad-455b07f7f60a","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.step","datacontenttype":"application/json","data":{"currentstep":"8","message":"Creating docker container (CPUs=2, Memory=2048MB) ...","name":"Creating Container","totalsteps":"19"}}
	{"specversion":"1.0","id":"1a776789-1b7c-408f-a3fc-bc75b9744a30","source":"https://minikube.sigs.k8s.io/","type":"io.k8s.sigs.minikube.error","datacontenttype":"application/json","data":{"advice":"Try one or more of the following to free up space on the device:\n\t\n\t\t\t1. Run \"docker system prune\" to remove unused Docker data (optionally with \"-a\")\n\t\t\t2. Increase the storage allocated to Docker for Desktop by clicking on:\n\t\t\t\tDocker icon \u003e Preferences \u003e Resources \u003e Disk Image Size\n\t\t\t3. Run \"minikube ssh -- docker system prune\" if using the Docker container runtime","exitcode":"26","issues":"https://github.com/kubernetes/minikube/issues/9024","message":"Docker is out of disk space! (/var is at 100%% of capacity). You can pass '--force' to skip this check.","name":"RSRC_DOCKER_STORAGE","url":""}}

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:05:12.205466    1056 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
status_test.go:76: (dbg) Run:  out/minikube-windows-amd64.exe status -p insufficient-storage-436100 --output=json --layout=cluster
status_test.go:76: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status -p insufficient-storage-436100 --output=json --layout=cluster: exit status 7 (1.1524402s)

                                                
                                                
-- stdout --
	{"Name":"insufficient-storage-436100","StatusCode":507,"StatusName":"InsufficientStorage","StatusDetail":"/var is almost out of disk space","Step":"Creating Container","StepDetail":"Creating docker container (CPUs=2, Memory=2048MB) ...","BinaryVersion":"v1.32.0","Components":{"kubeconfig":{"Name":"kubeconfig","StatusCode":500,"StatusName":"Error"}},"Nodes":[{"Name":"insufficient-storage-436100","StatusCode":507,"StatusName":"InsufficientStorage","Components":{"apiserver":{"Name":"apiserver","StatusCode":405,"StatusName":"Stopped"},"kubelet":{"Name":"kubelet","StatusCode":405,"StatusName":"Stopped"}}}]}

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:05:54.452588    8604 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	E0308 04:05:55.433557    8604 status.go:417] kubeconfig endpoint: get endpoint: "insufficient-storage-436100" does not appear in C:\Users\jenkins.minikube4\minikube-integration\kubeconfig

                                                
                                                
** /stderr **
status_test.go:76: (dbg) Run:  out/minikube-windows-amd64.exe status -p insufficient-storage-436100 --output=json --layout=cluster
status_test.go:76: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status -p insufficient-storage-436100 --output=json --layout=cluster: exit status 7 (1.1568791s)

                                                
                                                
-- stdout --
	{"Name":"insufficient-storage-436100","StatusCode":507,"StatusName":"InsufficientStorage","StatusDetail":"/var is almost out of disk space","BinaryVersion":"v1.32.0","Components":{"kubeconfig":{"Name":"kubeconfig","StatusCode":500,"StatusName":"Error"}},"Nodes":[{"Name":"insufficient-storage-436100","StatusCode":507,"StatusName":"InsufficientStorage","Components":{"apiserver":{"Name":"apiserver","StatusCode":405,"StatusName":"Stopped"},"kubelet":{"Name":"kubelet","StatusCode":405,"StatusName":"Stopped"}}}]}

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:05:55.612727   11088 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	E0308 04:05:56.597143   11088 status.go:417] kubeconfig endpoint: get endpoint: "insufficient-storage-436100" does not appear in C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	E0308 04:05:56.633081   11088 status.go:560] unable to read event log: stat: CreateFile C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\insufficient-storage-436100\events.json: The system cannot find the file specified.

                                                
                                                
** /stderr **
helpers_test.go:175: Cleaning up "insufficient-storage-436100" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p insufficient-storage-436100
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p insufficient-storage-436100: (4.281121s)
--- PASS: TestInsufficientStorage (48.84s)

                                                
                                    
x
+
TestRunningBinaryUpgrade (202.37s)

                                                
                                                
=== RUN   TestRunningBinaryUpgrade
=== PAUSE TestRunningBinaryUpgrade

                                                
                                                

                                                
                                                
=== CONT  TestRunningBinaryUpgrade
version_upgrade_test.go:120: (dbg) Run:  C:\Users\jenkins.minikube4\AppData\Local\Temp\minikube-v1.26.0.1603818516.exe start -p running-upgrade-669500 --memory=2200 --vm-driver=docker
version_upgrade_test.go:120: (dbg) Done: C:\Users\jenkins.minikube4\AppData\Local\Temp\minikube-v1.26.0.1603818516.exe start -p running-upgrade-669500 --memory=2200 --vm-driver=docker: (1m32.9554023s)
version_upgrade_test.go:130: (dbg) Run:  out/minikube-windows-amd64.exe start -p running-upgrade-669500 --memory=2200 --alsologtostderr -v=1 --driver=docker
version_upgrade_test.go:130: (dbg) Done: out/minikube-windows-amd64.exe start -p running-upgrade-669500 --memory=2200 --alsologtostderr -v=1 --driver=docker: (1m40.8995167s)
helpers_test.go:175: Cleaning up "running-upgrade-669500" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p running-upgrade-669500
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p running-upgrade-669500: (7.5820108s)
--- PASS: TestRunningBinaryUpgrade (202.37s)

                                                
                                    
x
+
TestKubernetesUpgrade (321.82s)

                                                
                                                
=== RUN   TestKubernetesUpgrade
=== PAUSE TestKubernetesUpgrade

                                                
                                                

                                                
                                                
=== CONT  TestKubernetesUpgrade
version_upgrade_test.go:222: (dbg) Run:  out/minikube-windows-amd64.exe start -p kubernetes-upgrade-541700 --memory=2200 --kubernetes-version=v1.20.0 --alsologtostderr -v=1 --driver=docker
version_upgrade_test.go:222: (dbg) Done: out/minikube-windows-amd64.exe start -p kubernetes-upgrade-541700 --memory=2200 --kubernetes-version=v1.20.0 --alsologtostderr -v=1 --driver=docker: (3m7.1263029s)
version_upgrade_test.go:227: (dbg) Run:  out/minikube-windows-amd64.exe stop -p kubernetes-upgrade-541700
version_upgrade_test.go:227: (dbg) Done: out/minikube-windows-amd64.exe stop -p kubernetes-upgrade-541700: (12.7684416s)
version_upgrade_test.go:232: (dbg) Run:  out/minikube-windows-amd64.exe -p kubernetes-upgrade-541700 status --format={{.Host}}
version_upgrade_test.go:232: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p kubernetes-upgrade-541700 status --format={{.Host}}: exit status 7 (512.6732ms)

                                                
                                                
-- stdout --
	Stopped

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:11:27.831286    2640 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
version_upgrade_test.go:234: status error: exit status 7 (may be ok)
version_upgrade_test.go:243: (dbg) Run:  out/minikube-windows-amd64.exe start -p kubernetes-upgrade-541700 --memory=2200 --kubernetes-version=v1.29.0-rc.2 --alsologtostderr -v=1 --driver=docker
version_upgrade_test.go:243: (dbg) Done: out/minikube-windows-amd64.exe start -p kubernetes-upgrade-541700 --memory=2200 --kubernetes-version=v1.29.0-rc.2 --alsologtostderr -v=1 --driver=docker: (57.7498138s)
version_upgrade_test.go:248: (dbg) Run:  kubectl --context kubernetes-upgrade-541700 version --output=json
version_upgrade_test.go:267: Attempting to downgrade Kubernetes (should fail)
version_upgrade_test.go:269: (dbg) Run:  out/minikube-windows-amd64.exe start -p kubernetes-upgrade-541700 --memory=2200 --kubernetes-version=v1.20.0 --driver=docker
version_upgrade_test.go:269: (dbg) Non-zero exit: out/minikube-windows-amd64.exe start -p kubernetes-upgrade-541700 --memory=2200 --kubernetes-version=v1.20.0 --driver=docker: exit status 106 (294.6287ms)

                                                
                                                
-- stdout --
	* [kubernetes-upgrade-541700] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
	  - KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	  - MINIKUBE_FORCE_SYSTEMD=
	  - MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
	  - MINIKUBE_LOCATION=18333
	  - MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
	
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:12:26.270007   10192 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	X Exiting due to K8S_DOWNGRADE_UNSUPPORTED: Unable to safely downgrade existing Kubernetes v1.29.0-rc.2 cluster to v1.20.0
	* Suggestion: 
	
	    1) Recreate the cluster with Kubernetes 1.20.0, by running:
	    
	    minikube delete -p kubernetes-upgrade-541700
	    minikube start -p kubernetes-upgrade-541700 --kubernetes-version=v1.20.0
	    
	    2) Create a second cluster with Kubernetes 1.20.0, by running:
	    
	    minikube start -p kubernetes-upgrade-5417002 --kubernetes-version=v1.20.0
	    
	    3) Use the existing cluster at version Kubernetes 1.29.0-rc.2, by running:
	    
	    minikube start -p kubernetes-upgrade-541700 --kubernetes-version=v1.29.0-rc.2
	    

                                                
                                                
** /stderr **
version_upgrade_test.go:273: Attempting restart after unsuccessful downgrade
version_upgrade_test.go:275: (dbg) Run:  out/minikube-windows-amd64.exe start -p kubernetes-upgrade-541700 --memory=2200 --kubernetes-version=v1.29.0-rc.2 --alsologtostderr -v=1 --driver=docker
E0308 04:13:19.991064    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
version_upgrade_test.go:275: (dbg) Done: out/minikube-windows-amd64.exe start -p kubernetes-upgrade-541700 --memory=2200 --kubernetes-version=v1.29.0-rc.2 --alsologtostderr -v=1 --driver=docker: (56.883696s)
helpers_test.go:175: Cleaning up "kubernetes-upgrade-541700" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p kubernetes-upgrade-541700
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p kubernetes-upgrade-541700: (6.2871591s)
--- PASS: TestKubernetesUpgrade (321.82s)

                                                
                                    
x
+
TestMissingContainerUpgrade (411.03s)

                                                
                                                
=== RUN   TestMissingContainerUpgrade
=== PAUSE TestMissingContainerUpgrade

                                                
                                                

                                                
                                                
=== CONT  TestMissingContainerUpgrade
version_upgrade_test.go:309: (dbg) Run:  C:\Users\jenkins.minikube4\AppData\Local\Temp\minikube-v1.26.0.2006198247.exe start -p missing-upgrade-944400 --memory=2200 --driver=docker
version_upgrade_test.go:309: (dbg) Done: C:\Users\jenkins.minikube4\AppData\Local\Temp\minikube-v1.26.0.2006198247.exe start -p missing-upgrade-944400 --memory=2200 --driver=docker: (3m39.0890324s)
version_upgrade_test.go:318: (dbg) Run:  docker stop missing-upgrade-944400
version_upgrade_test.go:318: (dbg) Done: docker stop missing-upgrade-944400: (17.1993325s)
version_upgrade_test.go:323: (dbg) Run:  docker rm missing-upgrade-944400
version_upgrade_test.go:323: (dbg) Done: docker rm missing-upgrade-944400: (3.7718788s)
version_upgrade_test.go:329: (dbg) Run:  out/minikube-windows-amd64.exe start -p missing-upgrade-944400 --memory=2200 --alsologtostderr -v=1 --driver=docker
version_upgrade_test.go:329: (dbg) Done: out/minikube-windows-amd64.exe start -p missing-upgrade-944400 --memory=2200 --alsologtostderr -v=1 --driver=docker: (2m41.8589989s)
helpers_test.go:175: Cleaning up "missing-upgrade-944400" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p missing-upgrade-944400
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p missing-upgrade-944400: (8.3002784s)
--- PASS: TestMissingContainerUpgrade (411.03s)

                                                
                                    
x
+
TestNoKubernetes/serial/StartNoK8sWithVersion (0.36s)

                                                
                                                
=== RUN   TestNoKubernetes/serial/StartNoK8sWithVersion
no_kubernetes_test.go:83: (dbg) Run:  out/minikube-windows-amd64.exe start -p NoKubernetes-550500 --no-kubernetes --kubernetes-version=1.20 --driver=docker
no_kubernetes_test.go:83: (dbg) Non-zero exit: out/minikube-windows-amd64.exe start -p NoKubernetes-550500 --no-kubernetes --kubernetes-version=1.20 --driver=docker: exit status 14 (359.0783ms)

                                                
                                                
-- stdout --
	* [NoKubernetes-550500] minikube v1.32.0 on Microsoft Windows 10 Enterprise N 10.0.19045.4046 Build 19045.4046
	  - KUBECONFIG=C:\Users\jenkins.minikube4\minikube-integration\kubeconfig
	  - MINIKUBE_FORCE_SYSTEMD=
	  - MINIKUBE_HOME=C:\Users\jenkins.minikube4\minikube-integration\.minikube
	  - MINIKUBE_LOCATION=18333
	  - MINIKUBE_SUPPRESS_DOCKER_PERFORMANCE=true
	
	

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:06:01.068364    4060 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	X Exiting due to MK_USAGE: cannot specify --kubernetes-version with --no-kubernetes,
	to unset a global config run:
	
	$ minikube config unset kubernetes-version

                                                
                                                
** /stderr **
--- PASS: TestNoKubernetes/serial/StartNoK8sWithVersion (0.36s)

                                                
                                    
x
+
TestNoKubernetes/serial/StartWithK8s (101.35s)

                                                
                                                
=== RUN   TestNoKubernetes/serial/StartWithK8s
no_kubernetes_test.go:95: (dbg) Run:  out/minikube-windows-amd64.exe start -p NoKubernetes-550500 --driver=docker
no_kubernetes_test.go:95: (dbg) Done: out/minikube-windows-amd64.exe start -p NoKubernetes-550500 --driver=docker: (1m39.7891828s)
no_kubernetes_test.go:200: (dbg) Run:  out/minikube-windows-amd64.exe -p NoKubernetes-550500 status -o json
no_kubernetes_test.go:200: (dbg) Done: out/minikube-windows-amd64.exe -p NoKubernetes-550500 status -o json: (1.5596548s)
--- PASS: TestNoKubernetes/serial/StartWithK8s (101.35s)

                                                
                                    
x
+
TestNoKubernetes/serial/StartWithStopK8s (33.64s)

                                                
                                                
=== RUN   TestNoKubernetes/serial/StartWithStopK8s
no_kubernetes_test.go:112: (dbg) Run:  out/minikube-windows-amd64.exe start -p NoKubernetes-550500 --no-kubernetes --driver=docker
no_kubernetes_test.go:112: (dbg) Done: out/minikube-windows-amd64.exe start -p NoKubernetes-550500 --no-kubernetes --driver=docker: (24.9242818s)
no_kubernetes_test.go:200: (dbg) Run:  out/minikube-windows-amd64.exe -p NoKubernetes-550500 status -o json
no_kubernetes_test.go:200: (dbg) Non-zero exit: out/minikube-windows-amd64.exe -p NoKubernetes-550500 status -o json: exit status 2 (1.6642659s)

                                                
                                                
-- stdout --
	{"Name":"NoKubernetes-550500","Host":"Running","Kubelet":"Stopped","APIServer":"Stopped","Kubeconfig":"Configured","Worker":false}

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:08:07.728537    1608 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
no_kubernetes_test.go:124: (dbg) Run:  out/minikube-windows-amd64.exe delete -p NoKubernetes-550500
no_kubernetes_test.go:124: (dbg) Done: out/minikube-windows-amd64.exe delete -p NoKubernetes-550500: (7.054545s)
--- PASS: TestNoKubernetes/serial/StartWithStopK8s (33.64s)

                                                
                                    
x
+
TestStoppedBinaryUpgrade/Setup (0.83s)

                                                
                                                
=== RUN   TestStoppedBinaryUpgrade/Setup
--- PASS: TestStoppedBinaryUpgrade/Setup (0.83s)

                                                
                                    
x
+
TestStoppedBinaryUpgrade/Upgrade (351.51s)

                                                
                                                
=== RUN   TestStoppedBinaryUpgrade/Upgrade
version_upgrade_test.go:183: (dbg) Run:  C:\Users\jenkins.minikube4\AppData\Local\Temp\minikube-v1.26.0.3483699365.exe start -p stopped-upgrade-986200 --memory=2200 --vm-driver=docker
version_upgrade_test.go:183: (dbg) Done: C:\Users\jenkins.minikube4\AppData\Local\Temp\minikube-v1.26.0.3483699365.exe start -p stopped-upgrade-986200 --memory=2200 --vm-driver=docker: (3m55.3856035s)
version_upgrade_test.go:192: (dbg) Run:  C:\Users\jenkins.minikube4\AppData\Local\Temp\minikube-v1.26.0.3483699365.exe -p stopped-upgrade-986200 stop
version_upgrade_test.go:192: (dbg) Done: C:\Users\jenkins.minikube4\AppData\Local\Temp\minikube-v1.26.0.3483699365.exe -p stopped-upgrade-986200 stop: (21.5854617s)
version_upgrade_test.go:198: (dbg) Run:  out/minikube-windows-amd64.exe start -p stopped-upgrade-986200 --memory=2200 --alsologtostderr -v=1 --driver=docker
version_upgrade_test.go:198: (dbg) Done: out/minikube-windows-amd64.exe start -p stopped-upgrade-986200 --memory=2200 --alsologtostderr -v=1 --driver=docker: (1m34.5340582s)
--- PASS: TestStoppedBinaryUpgrade/Upgrade (351.51s)

                                                
                                    
x
+
TestNoKubernetes/serial/Start (32.7s)

                                                
                                                
=== RUN   TestNoKubernetes/serial/Start
no_kubernetes_test.go:136: (dbg) Run:  out/minikube-windows-amd64.exe start -p NoKubernetes-550500 --no-kubernetes --driver=docker
E0308 04:08:36.751065    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
no_kubernetes_test.go:136: (dbg) Done: out/minikube-windows-amd64.exe start -p NoKubernetes-550500 --no-kubernetes --driver=docker: (32.7039808s)
--- PASS: TestNoKubernetes/serial/Start (32.70s)

                                                
                                    
x
+
TestNoKubernetes/serial/VerifyK8sNotRunning (1.57s)

                                                
                                                
=== RUN   TestNoKubernetes/serial/VerifyK8sNotRunning
no_kubernetes_test.go:147: (dbg) Run:  out/minikube-windows-amd64.exe ssh -p NoKubernetes-550500 "sudo systemctl is-active --quiet service kubelet"
no_kubernetes_test.go:147: (dbg) Non-zero exit: out/minikube-windows-amd64.exe ssh -p NoKubernetes-550500 "sudo systemctl is-active --quiet service kubelet": exit status 1 (1.5667203s)

                                                
                                                
** stderr ** 
	W0308 04:08:49.175257    4156 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	ssh: Process exited with status 3

                                                
                                                
** /stderr **
--- PASS: TestNoKubernetes/serial/VerifyK8sNotRunning (1.57s)

                                                
                                    
x
+
TestNoKubernetes/serial/ProfileList (5.73s)

                                                
                                                
=== RUN   TestNoKubernetes/serial/ProfileList
no_kubernetes_test.go:169: (dbg) Run:  out/minikube-windows-amd64.exe profile list
no_kubernetes_test.go:169: (dbg) Done: out/minikube-windows-amd64.exe profile list: (2.8951343s)
no_kubernetes_test.go:179: (dbg) Run:  out/minikube-windows-amd64.exe profile list --output=json
no_kubernetes_test.go:179: (dbg) Done: out/minikube-windows-amd64.exe profile list --output=json: (2.8301871s)
--- PASS: TestNoKubernetes/serial/ProfileList (5.73s)

                                                
                                    
x
+
TestNoKubernetes/serial/Stop (3.18s)

                                                
                                                
=== RUN   TestNoKubernetes/serial/Stop
no_kubernetes_test.go:158: (dbg) Run:  out/minikube-windows-amd64.exe stop -p NoKubernetes-550500
no_kubernetes_test.go:158: (dbg) Done: out/minikube-windows-amd64.exe stop -p NoKubernetes-550500: (3.1769443s)
--- PASS: TestNoKubernetes/serial/Stop (3.18s)

                                                
                                    
x
+
TestNoKubernetes/serial/StartNoArgs (28.53s)

                                                
                                                
=== RUN   TestNoKubernetes/serial/StartNoArgs
no_kubernetes_test.go:191: (dbg) Run:  out/minikube-windows-amd64.exe start -p NoKubernetes-550500 --driver=docker
no_kubernetes_test.go:191: (dbg) Done: out/minikube-windows-amd64.exe start -p NoKubernetes-550500 --driver=docker: (28.5270936s)
--- PASS: TestNoKubernetes/serial/StartNoArgs (28.53s)

                                                
                                    
x
+
TestNoKubernetes/serial/VerifyK8sNotRunningSecond (1.57s)

                                                
                                                
=== RUN   TestNoKubernetes/serial/VerifyK8sNotRunningSecond
no_kubernetes_test.go:147: (dbg) Run:  out/minikube-windows-amd64.exe ssh -p NoKubernetes-550500 "sudo systemctl is-active --quiet service kubelet"
no_kubernetes_test.go:147: (dbg) Non-zero exit: out/minikube-windows-amd64.exe ssh -p NoKubernetes-550500 "sudo systemctl is-active --quiet service kubelet": exit status 1 (1.5705861s)

                                                
                                                
** stderr ** 
	W0308 04:09:28.161072    3456 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
	ssh: Process exited with status 3

                                                
                                                
** /stderr **
--- PASS: TestNoKubernetes/serial/VerifyK8sNotRunningSecond (1.57s)

                                                
                                    
x
+
TestStoppedBinaryUpgrade/MinikubeLogs (2.92s)

                                                
                                                
=== RUN   TestStoppedBinaryUpgrade/MinikubeLogs
version_upgrade_test.go:206: (dbg) Run:  out/minikube-windows-amd64.exe logs -p stopped-upgrade-986200
version_upgrade_test.go:206: (dbg) Done: out/minikube-windows-amd64.exe logs -p stopped-upgrade-986200: (2.9172982s)
--- PASS: TestStoppedBinaryUpgrade/MinikubeLogs (2.92s)

                                                
                                    
x
+
TestPause/serial/Start (124.56s)

                                                
                                                
=== RUN   TestPause/serial/Start
pause_test.go:80: (dbg) Run:  out/minikube-windows-amd64.exe start -p pause-751900 --memory=2048 --install-addons=false --wait=all --driver=docker
pause_test.go:80: (dbg) Done: out/minikube-windows-amd64.exe start -p pause-751900 --memory=2048 --install-addons=false --wait=all --driver=docker: (2m4.5638218s)
--- PASS: TestPause/serial/Start (124.56s)

                                                
                                    
x
+
TestNetworkPlugins/group/auto/Start (135.42s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/auto/Start
net_test.go:112: (dbg) Run:  out/minikube-windows-amd64.exe start -p auto-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --driver=docker
E0308 04:15:41.210838    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
net_test.go:112: (dbg) Done: out/minikube-windows-amd64.exe start -p auto-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --driver=docker: (2m15.4176062s)
--- PASS: TestNetworkPlugins/group/auto/Start (135.42s)

                                                
                                    
x
+
TestNetworkPlugins/group/kindnet/Start (141.54s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/kindnet/Start
net_test.go:112: (dbg) Run:  out/minikube-windows-amd64.exe start -p kindnet-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --cni=kindnet --driver=docker
net_test.go:112: (dbg) Done: out/minikube-windows-amd64.exe start -p kindnet-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --cni=kindnet --driver=docker: (2m21.5388944s)
--- PASS: TestNetworkPlugins/group/kindnet/Start (141.54s)

                                                
                                    
x
+
TestPause/serial/SecondStartNoReconfiguration (48.12s)

                                                
                                                
=== RUN   TestPause/serial/SecondStartNoReconfiguration
pause_test.go:92: (dbg) Run:  out/minikube-windows-amd64.exe start -p pause-751900 --alsologtostderr -v=1 --driver=docker
E0308 04:17:04.413280    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
pause_test.go:92: (dbg) Done: out/minikube-windows-amd64.exe start -p pause-751900 --alsologtostderr -v=1 --driver=docker: (48.102283s)
--- PASS: TestPause/serial/SecondStartNoReconfiguration (48.12s)

                                                
                                    
x
+
TestNetworkPlugins/group/auto/KubeletFlags (1.41s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/auto/KubeletFlags
net_test.go:133: (dbg) Run:  out/minikube-windows-amd64.exe ssh -p auto-563400 "pgrep -a kubelet"
net_test.go:133: (dbg) Done: out/minikube-windows-amd64.exe ssh -p auto-563400 "pgrep -a kubelet": (1.4087576s)
--- PASS: TestNetworkPlugins/group/auto/KubeletFlags (1.41s)

                                                
                                    
x
+
TestNetworkPlugins/group/auto/NetCatPod (20.56s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/auto/NetCatPod
net_test.go:149: (dbg) Run:  kubectl --context auto-563400 replace --force -f testdata\netcat-deployment.yaml
net_test.go:163: (dbg) TestNetworkPlugins/group/auto/NetCatPod: waiting 15m0s for pods matching "app=netcat" in namespace "default" ...
helpers_test.go:344: "netcat-56589dfd74-pxmlb" [6d0d5963-4b38-49a5-8e68-a6f48d1e2636] Pending / Ready:ContainersNotReady (containers with unready status: [dnsutils]) / ContainersReady:ContainersNotReady (containers with unready status: [dnsutils])
helpers_test.go:344: "netcat-56589dfd74-pxmlb" [6d0d5963-4b38-49a5-8e68-a6f48d1e2636] Running
net_test.go:163: (dbg) TestNetworkPlugins/group/auto/NetCatPod: app=netcat healthy within 19.6979534s
--- PASS: TestNetworkPlugins/group/auto/NetCatPod (20.56s)

                                                
                                    
x
+
TestNetworkPlugins/group/calico/Start (197.6s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/calico/Start
net_test.go:112: (dbg) Run:  out/minikube-windows-amd64.exe start -p calico-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --cni=calico --driver=docker
net_test.go:112: (dbg) Done: out/minikube-windows-amd64.exe start -p calico-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --cni=calico --driver=docker: (3m17.5973277s)
--- PASS: TestNetworkPlugins/group/calico/Start (197.60s)

                                                
                                    
x
+
TestPause/serial/Pause (4.09s)

                                                
                                                
=== RUN   TestPause/serial/Pause
pause_test.go:110: (dbg) Run:  out/minikube-windows-amd64.exe pause -p pause-751900 --alsologtostderr -v=5
pause_test.go:110: (dbg) Done: out/minikube-windows-amd64.exe pause -p pause-751900 --alsologtostderr -v=5: (4.0889534s)
--- PASS: TestPause/serial/Pause (4.09s)

                                                
                                    
x
+
TestNetworkPlugins/group/auto/DNS (2.42s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/auto/DNS
net_test.go:175: (dbg) Run:  kubectl --context auto-563400 exec deployment/netcat -- nslookup kubernetes.default
net_test.go:175: (dbg) Done: kubectl --context auto-563400 exec deployment/netcat -- nslookup kubernetes.default: (2.4108628s)
--- PASS: TestNetworkPlugins/group/auto/DNS (2.42s)

                                                
                                    
x
+
TestNetworkPlugins/group/auto/Localhost (0.87s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/auto/Localhost
net_test.go:194: (dbg) Run:  kubectl --context auto-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z localhost 8080"
--- PASS: TestNetworkPlugins/group/auto/Localhost (0.87s)

                                                
                                    
x
+
TestNetworkPlugins/group/auto/HairPin (0.44s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/auto/HairPin
net_test.go:264: (dbg) Run:  kubectl --context auto-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z netcat 8080"
--- PASS: TestNetworkPlugins/group/auto/HairPin (0.44s)

                                                
                                    
x
+
TestPause/serial/VerifyStatus (1.51s)

                                                
                                                
=== RUN   TestPause/serial/VerifyStatus
status_test.go:76: (dbg) Run:  out/minikube-windows-amd64.exe status -p pause-751900 --output=json --layout=cluster
status_test.go:76: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status -p pause-751900 --output=json --layout=cluster: exit status 2 (1.5097249s)

                                                
                                                
-- stdout --
	{"Name":"pause-751900","StatusCode":418,"StatusName":"Paused","Step":"Done","StepDetail":"* Paused 1 containers in: kube-system, kubernetes-dashboard, storage-gluster, istio-operator","BinaryVersion":"v1.32.0","Components":{"kubeconfig":{"Name":"kubeconfig","StatusCode":200,"StatusName":"OK"}},"Nodes":[{"Name":"pause-751900","StatusCode":200,"StatusName":"OK","Components":{"apiserver":{"Name":"apiserver","StatusCode":418,"StatusName":"Paused"},"kubelet":{"Name":"kubelet","StatusCode":405,"StatusName":"Stopped"}}}]}

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:17:54.636940    7672 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
--- PASS: TestPause/serial/VerifyStatus (1.51s)

                                                
                                    
x
+
TestPause/serial/Unpause (2.41s)

                                                
                                                
=== RUN   TestPause/serial/Unpause
pause_test.go:121: (dbg) Run:  out/minikube-windows-amd64.exe unpause -p pause-751900 --alsologtostderr -v=5
pause_test.go:121: (dbg) Done: out/minikube-windows-amd64.exe unpause -p pause-751900 --alsologtostderr -v=5: (2.4091533s)
--- PASS: TestPause/serial/Unpause (2.41s)

                                                
                                    
x
+
TestPause/serial/PauseAgain (2.3s)

                                                
                                                
=== RUN   TestPause/serial/PauseAgain
pause_test.go:110: (dbg) Run:  out/minikube-windows-amd64.exe pause -p pause-751900 --alsologtostderr -v=5
pause_test.go:110: (dbg) Done: out/minikube-windows-amd64.exe pause -p pause-751900 --alsologtostderr -v=5: (2.3020166s)
--- PASS: TestPause/serial/PauseAgain (2.30s)

                                                
                                    
x
+
TestPause/serial/DeletePaused (9.34s)

                                                
                                                
=== RUN   TestPause/serial/DeletePaused
pause_test.go:132: (dbg) Run:  out/minikube-windows-amd64.exe delete -p pause-751900 --alsologtostderr -v=5
pause_test.go:132: (dbg) Done: out/minikube-windows-amd64.exe delete -p pause-751900 --alsologtostderr -v=5: (9.3437242s)
--- PASS: TestPause/serial/DeletePaused (9.34s)

                                                
                                    
x
+
TestPause/serial/VerifyDeletedResources (4.38s)

                                                
                                                
=== RUN   TestPause/serial/VerifyDeletedResources
pause_test.go:142: (dbg) Run:  out/minikube-windows-amd64.exe profile list --output json
pause_test.go:142: (dbg) Done: out/minikube-windows-amd64.exe profile list --output json: (3.7867793s)
pause_test.go:168: (dbg) Run:  docker ps -a
pause_test.go:173: (dbg) Run:  docker volume inspect pause-751900
pause_test.go:173: (dbg) Non-zero exit: docker volume inspect pause-751900: exit status 1 (162.9941ms)

                                                
                                                
-- stdout --
	[]

                                                
                                                
-- /stdout --
** stderr ** 
	Error response from daemon: get pause-751900: no such volume

                                                
                                                
** /stderr **
pause_test.go:178: (dbg) Run:  docker network ls
--- PASS: TestPause/serial/VerifyDeletedResources (4.38s)

                                                
                                    
x
+
TestNetworkPlugins/group/custom-flannel/Start (117.95s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/custom-flannel/Start
net_test.go:112: (dbg) Run:  out/minikube-windows-amd64.exe start -p custom-flannel-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --cni=testdata\kube-flannel.yaml --driver=docker
net_test.go:112: (dbg) Done: out/minikube-windows-amd64.exe start -p custom-flannel-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --cni=testdata\kube-flannel.yaml --driver=docker: (1m57.9524031s)
--- PASS: TestNetworkPlugins/group/custom-flannel/Start (117.95s)

                                                
                                    
x
+
TestNetworkPlugins/group/kindnet/ControllerPod (5.03s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/kindnet/ControllerPod
net_test.go:120: (dbg) TestNetworkPlugins/group/kindnet/ControllerPod: waiting 10m0s for pods matching "app=kindnet" in namespace "kube-system" ...
helpers_test.go:344: "kindnet-tgxts" [78e1cc4f-9c57-4a05-9e88-a9c9716ea824] Running
E0308 04:18:36.779748    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
net_test.go:120: (dbg) TestNetworkPlugins/group/kindnet/ControllerPod: app=kindnet healthy within 5.0307323s
--- PASS: TestNetworkPlugins/group/kindnet/ControllerPod (5.03s)

                                                
                                    
x
+
TestNetworkPlugins/group/kindnet/KubeletFlags (1.28s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/kindnet/KubeletFlags
net_test.go:133: (dbg) Run:  out/minikube-windows-amd64.exe ssh -p kindnet-563400 "pgrep -a kubelet"
net_test.go:133: (dbg) Done: out/minikube-windows-amd64.exe ssh -p kindnet-563400 "pgrep -a kubelet": (1.2802402s)
--- PASS: TestNetworkPlugins/group/kindnet/KubeletFlags (1.28s)

                                                
                                    
x
+
TestNetworkPlugins/group/kindnet/NetCatPod (20.5s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/kindnet/NetCatPod
net_test.go:149: (dbg) Run:  kubectl --context kindnet-563400 replace --force -f testdata\netcat-deployment.yaml
net_test.go:149: (dbg) Done: kubectl --context kindnet-563400 replace --force -f testdata\netcat-deployment.yaml: (1.469604s)
net_test.go:163: (dbg) TestNetworkPlugins/group/kindnet/NetCatPod: waiting 15m0s for pods matching "app=netcat" in namespace "default" ...
helpers_test.go:344: "netcat-56589dfd74-85m9q" [e2bef6cd-43ba-4b68-93b5-ec5b085eb3c1] Pending / Ready:ContainersNotReady (containers with unready status: [dnsutils]) / ContainersReady:ContainersNotReady (containers with unready status: [dnsutils])
helpers_test.go:344: "netcat-56589dfd74-85m9q" [e2bef6cd-43ba-4b68-93b5-ec5b085eb3c1] Running
net_test.go:163: (dbg) TestNetworkPlugins/group/kindnet/NetCatPod: app=netcat healthy within 19.011193s
--- PASS: TestNetworkPlugins/group/kindnet/NetCatPod (20.50s)

                                                
                                    
x
+
TestNetworkPlugins/group/false/Start (121.34s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/false/Start
net_test.go:112: (dbg) Run:  out/minikube-windows-amd64.exe start -p false-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --cni=false --driver=docker
net_test.go:112: (dbg) Done: out/minikube-windows-amd64.exe start -p false-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --cni=false --driver=docker: (2m1.3352348s)
--- PASS: TestNetworkPlugins/group/false/Start (121.34s)

                                                
                                    
x
+
TestNetworkPlugins/group/kindnet/DNS (0.45s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/kindnet/DNS
net_test.go:175: (dbg) Run:  kubectl --context kindnet-563400 exec deployment/netcat -- nslookup kubernetes.default
--- PASS: TestNetworkPlugins/group/kindnet/DNS (0.45s)

                                                
                                    
x
+
TestNetworkPlugins/group/kindnet/Localhost (0.36s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/kindnet/Localhost
net_test.go:194: (dbg) Run:  kubectl --context kindnet-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z localhost 8080"
--- PASS: TestNetworkPlugins/group/kindnet/Localhost (0.36s)

                                                
                                    
x
+
TestNetworkPlugins/group/kindnet/HairPin (0.4s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/kindnet/HairPin
net_test.go:264: (dbg) Run:  kubectl --context kindnet-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z netcat 8080"
--- PASS: TestNetworkPlugins/group/kindnet/HairPin (0.40s)

                                                
                                    
x
+
TestNetworkPlugins/group/custom-flannel/KubeletFlags (1.3s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/custom-flannel/KubeletFlags
net_test.go:133: (dbg) Run:  out/minikube-windows-amd64.exe ssh -p custom-flannel-563400 "pgrep -a kubelet"
net_test.go:133: (dbg) Done: out/minikube-windows-amd64.exe ssh -p custom-flannel-563400 "pgrep -a kubelet": (1.303639s)
--- PASS: TestNetworkPlugins/group/custom-flannel/KubeletFlags (1.30s)

                                                
                                    
x
+
TestNetworkPlugins/group/custom-flannel/NetCatPod (21.27s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/custom-flannel/NetCatPod
net_test.go:149: (dbg) Run:  kubectl --context custom-flannel-563400 replace --force -f testdata\netcat-deployment.yaml
net_test.go:163: (dbg) TestNetworkPlugins/group/custom-flannel/NetCatPod: waiting 15m0s for pods matching "app=netcat" in namespace "default" ...
helpers_test.go:344: "netcat-56589dfd74-pm98j" [1b6501e8-b1a4-4a37-809a-104fd996ef87] Pending / Ready:ContainersNotReady (containers with unready status: [dnsutils]) / ContainersReady:ContainersNotReady (containers with unready status: [dnsutils])
helpers_test.go:344: "netcat-56589dfd74-pm98j" [1b6501e8-b1a4-4a37-809a-104fd996ef87] Running
net_test.go:163: (dbg) TestNetworkPlugins/group/custom-flannel/NetCatPod: app=netcat healthy within 20.3981686s
--- PASS: TestNetworkPlugins/group/custom-flannel/NetCatPod (21.27s)

                                                
                                    
x
+
TestNetworkPlugins/group/enable-default-cni/Start (104.73s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/enable-default-cni/Start
net_test.go:112: (dbg) Run:  out/minikube-windows-amd64.exe start -p enable-default-cni-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --enable-default-cni=true --driver=docker
net_test.go:112: (dbg) Done: out/minikube-windows-amd64.exe start -p enable-default-cni-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --enable-default-cni=true --driver=docker: (1m44.7284401s)
--- PASS: TestNetworkPlugins/group/enable-default-cni/Start (104.73s)

                                                
                                    
x
+
TestNetworkPlugins/group/custom-flannel/DNS (1.02s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/custom-flannel/DNS
net_test.go:175: (dbg) Run:  kubectl --context custom-flannel-563400 exec deployment/netcat -- nslookup kubernetes.default
net_test.go:175: (dbg) Done: kubectl --context custom-flannel-563400 exec deployment/netcat -- nslookup kubernetes.default: (1.0015098s)
--- PASS: TestNetworkPlugins/group/custom-flannel/DNS (1.02s)

                                                
                                    
x
+
TestNetworkPlugins/group/custom-flannel/Localhost (1.3s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/custom-flannel/Localhost
net_test.go:194: (dbg) Run:  kubectl --context custom-flannel-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z localhost 8080"
net_test.go:194: (dbg) Done: kubectl --context custom-flannel-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z localhost 8080": (1.2869936s)
--- PASS: TestNetworkPlugins/group/custom-flannel/Localhost (1.30s)

                                                
                                    
x
+
TestNetworkPlugins/group/custom-flannel/HairPin (0.38s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/custom-flannel/HairPin
net_test.go:264: (dbg) Run:  kubectl --context custom-flannel-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z netcat 8080"
--- PASS: TestNetworkPlugins/group/custom-flannel/HairPin (0.38s)

                                                
                                    
x
+
TestNetworkPlugins/group/calico/ControllerPod (5.07s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/calico/ControllerPod
net_test.go:120: (dbg) TestNetworkPlugins/group/calico/ControllerPod: waiting 10m0s for pods matching "k8s-app=calico-node" in namespace "kube-system" ...
helpers_test.go:344: "calico-node-h9wfj" [70e93094-08cc-4b0b-a005-4304017be76e] Running
net_test.go:120: (dbg) TestNetworkPlugins/group/calico/ControllerPod: k8s-app=calico-node healthy within 5.062779s
--- PASS: TestNetworkPlugins/group/calico/ControllerPod (5.07s)

                                                
                                    
x
+
TestNetworkPlugins/group/calico/KubeletFlags (1.41s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/calico/KubeletFlags
net_test.go:133: (dbg) Run:  out/minikube-windows-amd64.exe ssh -p calico-563400 "pgrep -a kubelet"
net_test.go:133: (dbg) Done: out/minikube-windows-amd64.exe ssh -p calico-563400 "pgrep -a kubelet": (1.4079791s)
--- PASS: TestNetworkPlugins/group/calico/KubeletFlags (1.41s)

                                                
                                    
x
+
TestNetworkPlugins/group/false/KubeletFlags (1.41s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/false/KubeletFlags
net_test.go:133: (dbg) Run:  out/minikube-windows-amd64.exe ssh -p false-563400 "pgrep -a kubelet"
net_test.go:133: (dbg) Done: out/minikube-windows-amd64.exe ssh -p false-563400 "pgrep -a kubelet": (1.4076793s)
--- PASS: TestNetworkPlugins/group/false/KubeletFlags (1.41s)

                                                
                                    
x
+
TestNetworkPlugins/group/calico/NetCatPod (22.01s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/calico/NetCatPod
net_test.go:149: (dbg) Run:  kubectl --context calico-563400 replace --force -f testdata\netcat-deployment.yaml
net_test.go:163: (dbg) TestNetworkPlugins/group/calico/NetCatPod: waiting 15m0s for pods matching "app=netcat" in namespace "default" ...
helpers_test.go:344: "netcat-56589dfd74-zt64g" [57ca7f42-6411-43a4-abbd-7b44847437f6] Pending / Ready:ContainersNotReady (containers with unready status: [dnsutils]) / ContainersReady:ContainersNotReady (containers with unready status: [dnsutils])
helpers_test.go:344: "netcat-56589dfd74-zt64g" [57ca7f42-6411-43a4-abbd-7b44847437f6] Running
net_test.go:163: (dbg) TestNetworkPlugins/group/calico/NetCatPod: app=netcat healthy within 21.0151155s
--- PASS: TestNetworkPlugins/group/calico/NetCatPod (22.01s)

                                                
                                    
x
+
TestNetworkPlugins/group/false/NetCatPod (21.75s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/false/NetCatPod
net_test.go:149: (dbg) Run:  kubectl --context false-563400 replace --force -f testdata\netcat-deployment.yaml
net_test.go:163: (dbg) TestNetworkPlugins/group/false/NetCatPod: waiting 15m0s for pods matching "app=netcat" in namespace "default" ...
helpers_test.go:344: "netcat-56589dfd74-2lmgl" [ecc1ff0b-5466-4681-9aa0-2209a7137fd6] Pending / Ready:ContainersNotReady (containers with unready status: [dnsutils]) / ContainersReady:ContainersNotReady (containers with unready status: [dnsutils])
helpers_test.go:344: "netcat-56589dfd74-2lmgl" [ecc1ff0b-5466-4681-9aa0-2209a7137fd6] Running
net_test.go:163: (dbg) TestNetworkPlugins/group/false/NetCatPod: app=netcat healthy within 21.0110706s
--- PASS: TestNetworkPlugins/group/false/NetCatPod (21.75s)

                                                
                                    
x
+
TestNetworkPlugins/group/calico/DNS (0.38s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/calico/DNS
net_test.go:175: (dbg) Run:  kubectl --context calico-563400 exec deployment/netcat -- nslookup kubernetes.default
--- PASS: TestNetworkPlugins/group/calico/DNS (0.38s)

                                                
                                    
x
+
TestNetworkPlugins/group/calico/Localhost (0.35s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/calico/Localhost
net_test.go:194: (dbg) Run:  kubectl --context calico-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z localhost 8080"
--- PASS: TestNetworkPlugins/group/calico/Localhost (0.35s)

                                                
                                    
x
+
TestNetworkPlugins/group/false/DNS (0.37s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/false/DNS
net_test.go:175: (dbg) Run:  kubectl --context false-563400 exec deployment/netcat -- nslookup kubernetes.default
--- PASS: TestNetworkPlugins/group/false/DNS (0.37s)

                                                
                                    
x
+
TestNetworkPlugins/group/calico/HairPin (0.38s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/calico/HairPin
net_test.go:264: (dbg) Run:  kubectl --context calico-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z netcat 8080"
--- PASS: TestNetworkPlugins/group/calico/HairPin (0.38s)

                                                
                                    
x
+
TestNetworkPlugins/group/false/Localhost (0.39s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/false/Localhost
net_test.go:194: (dbg) Run:  kubectl --context false-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z localhost 8080"
--- PASS: TestNetworkPlugins/group/false/Localhost (0.39s)

                                                
                                    
x
+
TestNetworkPlugins/group/false/HairPin (0.37s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/false/HairPin
net_test.go:264: (dbg) Run:  kubectl --context false-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z netcat 8080"
--- PASS: TestNetworkPlugins/group/false/HairPin (0.37s)

                                                
                                    
x
+
TestNetworkPlugins/group/flannel/Start (142.33s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/flannel/Start
net_test.go:112: (dbg) Run:  out/minikube-windows-amd64.exe start -p flannel-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --cni=flannel --driver=docker
net_test.go:112: (dbg) Done: out/minikube-windows-amd64.exe start -p flannel-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --cni=flannel --driver=docker: (2m22.3313197s)
--- PASS: TestNetworkPlugins/group/flannel/Start (142.33s)

                                                
                                    
x
+
TestNetworkPlugins/group/enable-default-cni/KubeletFlags (1.29s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/enable-default-cni/KubeletFlags
net_test.go:133: (dbg) Run:  out/minikube-windows-amd64.exe ssh -p enable-default-cni-563400 "pgrep -a kubelet"
net_test.go:133: (dbg) Done: out/minikube-windows-amd64.exe ssh -p enable-default-cni-563400 "pgrep -a kubelet": (1.2853371s)
--- PASS: TestNetworkPlugins/group/enable-default-cni/KubeletFlags (1.29s)

                                                
                                    
x
+
TestNetworkPlugins/group/enable-default-cni/NetCatPod (27.71s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/enable-default-cni/NetCatPod
net_test.go:149: (dbg) Run:  kubectl --context enable-default-cni-563400 replace --force -f testdata\netcat-deployment.yaml
net_test.go:163: (dbg) TestNetworkPlugins/group/enable-default-cni/NetCatPod: waiting 15m0s for pods matching "app=netcat" in namespace "default" ...
helpers_test.go:344: "netcat-56589dfd74-h7nr9" [e07761b2-3acd-459f-881a-56d043e2002b] Pending / Ready:ContainersNotReady (containers with unready status: [dnsutils]) / ContainersReady:ContainersNotReady (containers with unready status: [dnsutils])
helpers_test.go:344: "netcat-56589dfd74-h7nr9" [e07761b2-3acd-459f-881a-56d043e2002b] Running
net_test.go:163: (dbg) TestNetworkPlugins/group/enable-default-cni/NetCatPod: app=netcat healthy within 27.0225048s
--- PASS: TestNetworkPlugins/group/enable-default-cni/NetCatPod (27.71s)

                                                
                                    
x
+
TestNetworkPlugins/group/enable-default-cni/DNS (0.45s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/enable-default-cni/DNS
net_test.go:175: (dbg) Run:  kubectl --context enable-default-cni-563400 exec deployment/netcat -- nslookup kubernetes.default
E0308 04:22:31.457042    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
E0308 04:22:31.473044    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
E0308 04:22:31.489075    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
E0308 04:22:31.521048    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
E0308 04:22:31.567647    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
E0308 04:22:31.662597    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
--- PASS: TestNetworkPlugins/group/enable-default-cni/DNS (0.45s)

                                                
                                    
x
+
TestNetworkPlugins/group/enable-default-cni/Localhost (0.32s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/enable-default-cni/Localhost
net_test.go:194: (dbg) Run:  kubectl --context enable-default-cni-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z localhost 8080"
E0308 04:22:31.837166    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
--- PASS: TestNetworkPlugins/group/enable-default-cni/Localhost (0.32s)

                                                
                                    
x
+
TestNetworkPlugins/group/enable-default-cni/HairPin (0.37s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/enable-default-cni/HairPin
net_test.go:264: (dbg) Run:  kubectl --context enable-default-cni-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z netcat 8080"
E0308 04:22:32.166313    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
--- PASS: TestNetworkPlugins/group/enable-default-cni/HairPin (0.37s)

                                                
                                    
x
+
TestNetworkPlugins/group/bridge/Start (108.57s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/bridge/Start
net_test.go:112: (dbg) Run:  out/minikube-windows-amd64.exe start -p bridge-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --cni=bridge --driver=docker
E0308 04:22:32.807274    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
E0308 04:22:34.095994    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
E0308 04:22:36.665759    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
net_test.go:112: (dbg) Done: out/minikube-windows-amd64.exe start -p bridge-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --cni=bridge --driver=docker: (1m48.5717877s)
--- PASS: TestNetworkPlugins/group/bridge/Start (108.57s)

                                                
                                    
x
+
TestNetworkPlugins/group/kubenet/Start (110.1s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/kubenet/Start
net_test.go:112: (dbg) Run:  out/minikube-windows-amd64.exe start -p kubenet-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --network-plugin=kubenet --driver=docker
E0308 04:22:41.794513    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
E0308 04:22:52.045781    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
E0308 04:23:12.529394    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
net_test.go:112: (dbg) Done: out/minikube-windows-amd64.exe start -p kubenet-563400 --memory=3072 --alsologtostderr --wait=true --wait-timeout=15m --network-plugin=kubenet --driver=docker: (1m50.101927s)
--- PASS: TestNetworkPlugins/group/kubenet/Start (110.10s)

                                                
                                    
x
+
TestStartStop/group/old-k8s-version/serial/FirstStart (183.78s)

                                                
                                                
=== RUN   TestStartStop/group/old-k8s-version/serial/FirstStart
start_stop_delete_test.go:186: (dbg) Run:  out/minikube-windows-amd64.exe start -p old-k8s-version-664800 --memory=2200 --alsologtostderr --wait=true --kvm-network=default --kvm-qemu-uri=qemu:///system --disable-driver-mounts --keep-context=false --driver=docker --kubernetes-version=v1.20.0
E0308 04:23:36.489615    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kindnet-563400\client.crt: The system cannot find the path specified.
E0308 04:23:36.802544    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 04:23:39.056477    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kindnet-563400\client.crt: The system cannot find the path specified.
E0308 04:23:44.185397    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kindnet-563400\client.crt: The system cannot find the path specified.
E0308 04:23:53.491858    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
E0308 04:23:54.427566    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kindnet-563400\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:186: (dbg) Done: out/minikube-windows-amd64.exe start -p old-k8s-version-664800 --memory=2200 --alsologtostderr --wait=true --kvm-network=default --kvm-qemu-uri=qemu:///system --disable-driver-mounts --keep-context=false --driver=docker --kubernetes-version=v1.20.0: (3m3.7775956s)
--- PASS: TestStartStop/group/old-k8s-version/serial/FirstStart (183.78s)

                                                
                                    
x
+
TestNetworkPlugins/group/flannel/ControllerPod (6.03s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/flannel/ControllerPod
net_test.go:120: (dbg) TestNetworkPlugins/group/flannel/ControllerPod: waiting 10m0s for pods matching "app=flannel" in namespace "kube-flannel" ...
helpers_test.go:344: "kube-flannel-ds-psprh" [8837fb44-57fd-4dc3-8f27-9634ee0bf96f] Running
E0308 04:24:14.922772    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kindnet-563400\client.crt: The system cannot find the path specified.
net_test.go:120: (dbg) TestNetworkPlugins/group/flannel/ControllerPod: app=flannel healthy within 6.0223512s
--- PASS: TestNetworkPlugins/group/flannel/ControllerPod (6.03s)

                                                
                                    
x
+
TestNetworkPlugins/group/flannel/KubeletFlags (1.49s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/flannel/KubeletFlags
net_test.go:133: (dbg) Run:  out/minikube-windows-amd64.exe ssh -p flannel-563400 "pgrep -a kubelet"
net_test.go:133: (dbg) Done: out/minikube-windows-amd64.exe ssh -p flannel-563400 "pgrep -a kubelet": (1.4849713s)
--- PASS: TestNetworkPlugins/group/flannel/KubeletFlags (1.49s)

                                                
                                    
x
+
TestNetworkPlugins/group/flannel/NetCatPod (23.74s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/flannel/NetCatPod
net_test.go:149: (dbg) Run:  kubectl --context flannel-563400 replace --force -f testdata\netcat-deployment.yaml
net_test.go:163: (dbg) TestNetworkPlugins/group/flannel/NetCatPod: waiting 15m0s for pods matching "app=netcat" in namespace "default" ...
helpers_test.go:344: "netcat-56589dfd74-5gb5k" [7fef5670-70fd-47b4-bf55-1fe4357c7f54] Pending / Ready:ContainersNotReady (containers with unready status: [dnsutils]) / ContainersReady:ContainersNotReady (containers with unready status: [dnsutils])
helpers_test.go:344: "netcat-56589dfd74-5gb5k" [7fef5670-70fd-47b4-bf55-1fe4357c7f54] Running
net_test.go:163: (dbg) TestNetworkPlugins/group/flannel/NetCatPod: app=netcat healthy within 23.0212745s
--- PASS: TestNetworkPlugins/group/flannel/NetCatPod (23.74s)

                                                
                                    
x
+
TestNetworkPlugins/group/bridge/KubeletFlags (1.37s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/bridge/KubeletFlags
net_test.go:133: (dbg) Run:  out/minikube-windows-amd64.exe ssh -p bridge-563400 "pgrep -a kubelet"
net_test.go:133: (dbg) Done: out/minikube-windows-amd64.exe ssh -p bridge-563400 "pgrep -a kubelet": (1.3720126s)
--- PASS: TestNetworkPlugins/group/bridge/KubeletFlags (1.37s)

                                                
                                    
x
+
TestNetworkPlugins/group/bridge/NetCatPod (27.23s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/bridge/NetCatPod
net_test.go:149: (dbg) Run:  kubectl --context bridge-563400 replace --force -f testdata\netcat-deployment.yaml
net_test.go:163: (dbg) TestNetworkPlugins/group/bridge/NetCatPod: waiting 15m0s for pods matching "app=netcat" in namespace "default" ...
helpers_test.go:344: "netcat-56589dfd74-f9w6g" [85367ff7-0a55-4ef8-a4ac-fd4340b1b75a] Pending / Ready:ContainersNotReady (containers with unready status: [dnsutils]) / ContainersReady:ContainersNotReady (containers with unready status: [dnsutils])
helpers_test.go:344: "netcat-56589dfd74-f9w6g" [85367ff7-0a55-4ef8-a4ac-fd4340b1b75a] Running
net_test.go:163: (dbg) TestNetworkPlugins/group/bridge/NetCatPod: app=netcat healthy within 26.3844538s
--- PASS: TestNetworkPlugins/group/bridge/NetCatPod (27.23s)

                                                
                                    
x
+
TestNetworkPlugins/group/kubenet/KubeletFlags (1.84s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/kubenet/KubeletFlags
net_test.go:133: (dbg) Run:  out/minikube-windows-amd64.exe ssh -p kubenet-563400 "pgrep -a kubelet"
net_test.go:133: (dbg) Done: out/minikube-windows-amd64.exe ssh -p kubenet-563400 "pgrep -a kubelet": (1.8432002s)
--- PASS: TestNetworkPlugins/group/kubenet/KubeletFlags (1.84s)

                                                
                                    
x
+
TestNetworkPlugins/group/kubenet/NetCatPod (32.92s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/kubenet/NetCatPod
net_test.go:149: (dbg) Run:  kubectl --context kubenet-563400 replace --force -f testdata\netcat-deployment.yaml
net_test.go:163: (dbg) TestNetworkPlugins/group/kubenet/NetCatPod: waiting 15m0s for pods matching "app=netcat" in namespace "default" ...
helpers_test.go:344: "netcat-56589dfd74-hqqsv" [4f2c20ce-557b-4acc-b41b-fa41adebfe31] Pending / Ready:ContainersNotReady (containers with unready status: [dnsutils]) / ContainersReady:ContainersNotReady (containers with unready status: [dnsutils])
helpers_test.go:344: "netcat-56589dfd74-hqqsv" [4f2c20ce-557b-4acc-b41b-fa41adebfe31] Running
E0308 04:24:55.889089    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kindnet-563400\client.crt: The system cannot find the path specified.
net_test.go:163: (dbg) TestNetworkPlugins/group/kubenet/NetCatPod: app=netcat healthy within 32.008083s
--- PASS: TestNetworkPlugins/group/kubenet/NetCatPod (32.92s)

                                                
                                    
x
+
TestNetworkPlugins/group/flannel/DNS (0.37s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/flannel/DNS
net_test.go:175: (dbg) Run:  kubectl --context flannel-563400 exec deployment/netcat -- nslookup kubernetes.default
--- PASS: TestNetworkPlugins/group/flannel/DNS (0.37s)

                                                
                                    
x
+
TestNetworkPlugins/group/flannel/Localhost (0.35s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/flannel/Localhost
net_test.go:194: (dbg) Run:  kubectl --context flannel-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z localhost 8080"
--- PASS: TestNetworkPlugins/group/flannel/Localhost (0.35s)

                                                
                                    
x
+
TestNetworkPlugins/group/flannel/HairPin (0.38s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/flannel/HairPin
net_test.go:264: (dbg) Run:  kubectl --context flannel-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z netcat 8080"
--- PASS: TestNetworkPlugins/group/flannel/HairPin (0.38s)

                                                
                                    
x
+
TestNetworkPlugins/group/bridge/DNS (5.33s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/bridge/DNS
net_test.go:175: (dbg) Run:  kubectl --context bridge-563400 exec deployment/netcat -- nslookup kubernetes.default
net_test.go:175: (dbg) Done: kubectl --context bridge-563400 exec deployment/netcat -- nslookup kubernetes.default: (5.315668s)
--- PASS: TestNetworkPlugins/group/bridge/DNS (5.33s)

                                                
                                    
x
+
TestNetworkPlugins/group/bridge/Localhost (0.34s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/bridge/Localhost
net_test.go:194: (dbg) Run:  kubectl --context bridge-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z localhost 8080"
--- PASS: TestNetworkPlugins/group/bridge/Localhost (0.34s)

                                                
                                    
x
+
TestNetworkPlugins/group/bridge/HairPin (0.37s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/bridge/HairPin
net_test.go:264: (dbg) Run:  kubectl --context bridge-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z netcat 8080"
--- PASS: TestNetworkPlugins/group/bridge/HairPin (0.37s)

                                                
                                    
x
+
TestNetworkPlugins/group/kubenet/DNS (0.38s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/kubenet/DNS
net_test.go:175: (dbg) Run:  kubectl --context kubenet-563400 exec deployment/netcat -- nslookup kubernetes.default
--- PASS: TestNetworkPlugins/group/kubenet/DNS (0.38s)

                                                
                                    
x
+
TestNetworkPlugins/group/kubenet/Localhost (0.38s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/kubenet/Localhost
net_test.go:194: (dbg) Run:  kubectl --context kubenet-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z localhost 8080"
--- PASS: TestNetworkPlugins/group/kubenet/Localhost (0.38s)

                                                
                                    
x
+
TestNetworkPlugins/group/kubenet/HairPin (0.35s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/kubenet/HairPin
net_test.go:264: (dbg) Run:  kubectl --context kubenet-563400 exec deployment/netcat -- /bin/sh -c "nc -w 5 -i 5 -z netcat 8080"
--- PASS: TestNetworkPlugins/group/kubenet/HairPin (0.35s)
E0308 04:34:12.318573    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.

                                                
                                    
x
+
TestStartStop/group/no-preload/serial/FirstStart (146.69s)

                                                
                                                
=== RUN   TestStartStop/group/no-preload/serial/FirstStart
start_stop_delete_test.go:186: (dbg) Run:  out/minikube-windows-amd64.exe start -p no-preload-273800 --memory=2200 --alsologtostderr --wait=true --preload=false --driver=docker --kubernetes-version=v1.29.0-rc.2
E0308 04:25:58.381296    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\calico-563400\client.crt: The system cannot find the path specified.
E0308 04:26:00.950693    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\calico-563400\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:186: (dbg) Done: out/minikube-windows-amd64.exe start -p no-preload-273800 --memory=2200 --alsologtostderr --wait=true --preload=false --driver=docker --kubernetes-version=v1.29.0-rc.2: (2m26.6877251s)
--- PASS: TestStartStop/group/no-preload/serial/FirstStart (146.69s)

                                                
                                    
x
+
TestStartStop/group/embed-certs/serial/FirstStart (98.42s)

                                                
                                                
=== RUN   TestStartStop/group/embed-certs/serial/FirstStart
start_stop_delete_test.go:186: (dbg) Run:  out/minikube-windows-amd64.exe start -p embed-certs-489100 --memory=2200 --alsologtostderr --wait=true --embed-certs --driver=docker --kubernetes-version=v1.28.4
start_stop_delete_test.go:186: (dbg) Done: out/minikube-windows-amd64.exe start -p embed-certs-489100 --memory=2200 --alsologtostderr --wait=true --embed-certs --driver=docker --kubernetes-version=v1.28.4: (1m38.4192905s)
--- PASS: TestStartStop/group/embed-certs/serial/FirstStart (98.42s)

                                                
                                    
x
+
TestStartStop/group/default-k8s-diff-port/serial/FirstStart (129.6s)

                                                
                                                
=== RUN   TestStartStop/group/default-k8s-diff-port/serial/FirstStart
start_stop_delete_test.go:186: (dbg) Run:  out/minikube-windows-amd64.exe start -p default-k8s-diff-port-864300 --memory=2200 --alsologtostderr --wait=true --apiserver-port=8444 --driver=docker --kubernetes-version=v1.28.4
E0308 04:26:13.916161    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\false-563400\client.crt: The system cannot find the path specified.
E0308 04:26:16.320327    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\calico-563400\client.crt: The system cannot find the path specified.
E0308 04:26:17.817973    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kindnet-563400\client.crt: The system cannot find the path specified.
E0308 04:26:24.166621    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\false-563400\client.crt: The system cannot find the path specified.
E0308 04:26:36.811075    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\calico-563400\client.crt: The system cannot find the path specified.
E0308 04:26:37.898915    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\custom-flannel-563400\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:186: (dbg) Done: out/minikube-windows-amd64.exe start -p default-k8s-diff-port-864300 --memory=2200 --alsologtostderr --wait=true --apiserver-port=8444 --driver=docker --kubernetes-version=v1.28.4: (2m9.6021933s)
--- PASS: TestStartStop/group/default-k8s-diff-port/serial/FirstStart (129.60s)

                                                
                                    
x
+
TestStartStop/group/old-k8s-version/serial/DeployApp (17.28s)

                                                
                                                
=== RUN   TestStartStop/group/old-k8s-version/serial/DeployApp
start_stop_delete_test.go:196: (dbg) Run:  kubectl --context old-k8s-version-664800 create -f testdata\busybox.yaml
start_stop_delete_test.go:196: (dbg) TestStartStop/group/old-k8s-version/serial/DeployApp: waiting 8m0s for pods matching "integration-test=busybox" in namespace "default" ...
helpers_test.go:344: "busybox" [2d0c9fba-4c04-4f93-b91f-1ebfeb17d2e3] Pending
helpers_test.go:344: "busybox" [2d0c9fba-4c04-4f93-b91f-1ebfeb17d2e3] Pending / Ready:ContainersNotReady (containers with unready status: [busybox]) / ContainersReady:ContainersNotReady (containers with unready status: [busybox])
E0308 04:26:44.651764    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\false-563400\client.crt: The system cannot find the path specified.
helpers_test.go:344: "busybox" [2d0c9fba-4c04-4f93-b91f-1ebfeb17d2e3] Running
start_stop_delete_test.go:196: (dbg) TestStartStop/group/old-k8s-version/serial/DeployApp: integration-test=busybox healthy within 16.019328s
start_stop_delete_test.go:196: (dbg) Run:  kubectl --context old-k8s-version-664800 exec busybox -- /bin/sh -c "ulimit -n"
--- PASS: TestStartStop/group/old-k8s-version/serial/DeployApp (17.28s)

                                                
                                    
x
+
TestStartStop/group/old-k8s-version/serial/EnableAddonWhileActive (4.12s)

                                                
                                                
=== RUN   TestStartStop/group/old-k8s-version/serial/EnableAddonWhileActive
start_stop_delete_test.go:205: (dbg) Run:  out/minikube-windows-amd64.exe addons enable metrics-server -p old-k8s-version-664800 --images=MetricsServer=registry.k8s.io/echoserver:1.4 --registries=MetricsServer=fake.domain
start_stop_delete_test.go:205: (dbg) Done: out/minikube-windows-amd64.exe addons enable metrics-server -p old-k8s-version-664800 --images=MetricsServer=registry.k8s.io/echoserver:1.4 --registries=MetricsServer=fake.domain: (3.7930966s)
start_stop_delete_test.go:215: (dbg) Run:  kubectl --context old-k8s-version-664800 describe deploy/metrics-server -n kube-system
--- PASS: TestStartStop/group/old-k8s-version/serial/EnableAddonWhileActive (4.12s)

                                                
                                    
x
+
TestStartStop/group/old-k8s-version/serial/Stop (14.8s)

                                                
                                                
=== RUN   TestStartStop/group/old-k8s-version/serial/Stop
start_stop_delete_test.go:228: (dbg) Run:  out/minikube-windows-amd64.exe stop -p old-k8s-version-664800 --alsologtostderr -v=3
E0308 04:27:04.261046    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
E0308 04:27:04.277164    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
E0308 04:27:04.292632    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
E0308 04:27:04.324833    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
E0308 04:27:04.376189    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
E0308 04:27:04.469642    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
E0308 04:27:04.643296    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
E0308 04:27:04.972256    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
E0308 04:27:05.616359    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
E0308 04:27:06.903003    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
E0308 04:27:09.468748    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
E0308 04:27:14.602813    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:228: (dbg) Done: out/minikube-windows-amd64.exe stop -p old-k8s-version-664800 --alsologtostderr -v=3: (14.8021327s)
--- PASS: TestStartStop/group/old-k8s-version/serial/Stop (14.80s)

                                                
                                    
x
+
TestStartStop/group/old-k8s-version/serial/EnableAddonAfterStop (1.33s)

                                                
                                                
=== RUN   TestStartStop/group/old-k8s-version/serial/EnableAddonAfterStop
start_stop_delete_test.go:239: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Host}} -p old-k8s-version-664800 -n old-k8s-version-664800
start_stop_delete_test.go:239: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.Host}} -p old-k8s-version-664800 -n old-k8s-version-664800: exit status 7 (563.0001ms)

                                                
                                                
-- stdout --
	Stopped

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:27:15.712970   10464 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:239: status error: exit status 7 (may be ok)
start_stop_delete_test.go:246: (dbg) Run:  out/minikube-windows-amd64.exe addons enable dashboard -p old-k8s-version-664800 --images=MetricsScraper=registry.k8s.io/echoserver:1.4
--- PASS: TestStartStop/group/old-k8s-version/serial/EnableAddonAfterStop (1.33s)

                                                
                                    
x
+
TestStartStop/group/old-k8s-version/serial/SecondStart (407.41s)

                                                
                                                
=== RUN   TestStartStop/group/old-k8s-version/serial/SecondStart
start_stop_delete_test.go:256: (dbg) Run:  out/minikube-windows-amd64.exe start -p old-k8s-version-664800 --memory=2200 --alsologtostderr --wait=true --kvm-network=default --kvm-qemu-uri=qemu:///system --disable-driver-mounts --keep-context=false --driver=docker --kubernetes-version=v1.20.0
E0308 04:27:17.777560    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\calico-563400\client.crt: The system cannot find the path specified.
E0308 04:27:24.845295    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
E0308 04:27:25.627930    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\false-563400\client.crt: The system cannot find the path specified.
E0308 04:27:31.460093    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:256: (dbg) Done: out/minikube-windows-amd64.exe start -p old-k8s-version-664800 --memory=2200 --alsologtostderr --wait=true --kvm-network=default --kvm-qemu-uri=qemu:///system --disable-driver-mounts --keep-context=false --driver=docker --kubernetes-version=v1.20.0: (6m39.8430821s)
start_stop_delete_test.go:262: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Host}} -p old-k8s-version-664800 -n old-k8s-version-664800
start_stop_delete_test.go:262: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.Host}} -p old-k8s-version-664800 -n old-k8s-version-664800: (7.5704157s)
--- PASS: TestStartStop/group/old-k8s-version/serial/SecondStart (407.41s)

                                                
                                    
x
+
TestStartStop/group/embed-certs/serial/DeployApp (12.06s)

                                                
                                                
=== RUN   TestStartStop/group/embed-certs/serial/DeployApp
start_stop_delete_test.go:196: (dbg) Run:  kubectl --context embed-certs-489100 create -f testdata\busybox.yaml
start_stop_delete_test.go:196: (dbg) TestStartStop/group/embed-certs/serial/DeployApp: waiting 8m0s for pods matching "integration-test=busybox" in namespace "default" ...
helpers_test.go:344: "busybox" [19bf40be-7d4c-431d-a505-441e74ec9772] Pending
helpers_test.go:344: "busybox" [19bf40be-7d4c-431d-a505-441e74ec9772] Pending / Ready:ContainersNotReady (containers with unready status: [busybox]) / ContainersReady:ContainersNotReady (containers with unready status: [busybox])
E0308 04:27:45.332924    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
helpers_test.go:344: "busybox" [19bf40be-7d4c-431d-a505-441e74ec9772] Running
start_stop_delete_test.go:196: (dbg) TestStartStop/group/embed-certs/serial/DeployApp: integration-test=busybox healthy within 11.0226271s
start_stop_delete_test.go:196: (dbg) Run:  kubectl --context embed-certs-489100 exec busybox -- /bin/sh -c "ulimit -n"
--- PASS: TestStartStop/group/embed-certs/serial/DeployApp (12.06s)

                                                
                                    
x
+
TestStartStop/group/embed-certs/serial/EnableAddonWhileActive (8.75s)

                                                
                                                
=== RUN   TestStartStop/group/embed-certs/serial/EnableAddonWhileActive
start_stop_delete_test.go:205: (dbg) Run:  out/minikube-windows-amd64.exe addons enable metrics-server -p embed-certs-489100 --images=MetricsServer=registry.k8s.io/echoserver:1.4 --registries=MetricsServer=fake.domain
E0308 04:27:59.273679    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
E0308 04:27:59.837152    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\custom-flannel-563400\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:205: (dbg) Done: out/minikube-windows-amd64.exe addons enable metrics-server -p embed-certs-489100 --images=MetricsServer=registry.k8s.io/echoserver:1.4 --registries=MetricsServer=fake.domain: (8.3677312s)
start_stop_delete_test.go:215: (dbg) Run:  kubectl --context embed-certs-489100 describe deploy/metrics-server -n kube-system
--- PASS: TestStartStop/group/embed-certs/serial/EnableAddonWhileActive (8.75s)

                                                
                                    
x
+
TestStartStop/group/embed-certs/serial/Stop (13.11s)

                                                
                                                
=== RUN   TestStartStop/group/embed-certs/serial/Stop
start_stop_delete_test.go:228: (dbg) Run:  out/minikube-windows-amd64.exe stop -p embed-certs-489100 --alsologtostderr -v=3
start_stop_delete_test.go:228: (dbg) Done: out/minikube-windows-amd64.exe stop -p embed-certs-489100 --alsologtostderr -v=3: (13.1074986s)
--- PASS: TestStartStop/group/embed-certs/serial/Stop (13.11s)

                                                
                                    
x
+
TestStartStop/group/embed-certs/serial/EnableAddonAfterStop (1.06s)

                                                
                                                
=== RUN   TestStartStop/group/embed-certs/serial/EnableAddonAfterStop
start_stop_delete_test.go:239: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Host}} -p embed-certs-489100 -n embed-certs-489100
start_stop_delete_test.go:239: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.Host}} -p embed-certs-489100 -n embed-certs-489100: exit status 7 (427.9743ms)

                                                
                                                
-- stdout --
	Stopped

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:28:13.801668    9400 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:239: status error: exit status 7 (may be ok)
start_stop_delete_test.go:246: (dbg) Run:  out/minikube-windows-amd64.exe addons enable dashboard -p embed-certs-489100 --images=MetricsScraper=registry.k8s.io/echoserver:1.4
--- PASS: TestStartStop/group/embed-certs/serial/EnableAddonAfterStop (1.06s)

                                                
                                    
x
+
TestStartStop/group/embed-certs/serial/SecondStart (291.16s)

                                                
                                                
=== RUN   TestStartStop/group/embed-certs/serial/SecondStart
start_stop_delete_test.go:256: (dbg) Run:  out/minikube-windows-amd64.exe start -p embed-certs-489100 --memory=2200 --alsologtostderr --wait=true --embed-certs --driver=docker --kubernetes-version=v1.28.4
start_stop_delete_test.go:256: (dbg) Done: out/minikube-windows-amd64.exe start -p embed-certs-489100 --memory=2200 --alsologtostderr --wait=true --embed-certs --driver=docker --kubernetes-version=v1.28.4: (4m49.7398779s)
start_stop_delete_test.go:262: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Host}} -p embed-certs-489100 -n embed-certs-489100
start_stop_delete_test.go:262: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.Host}} -p embed-certs-489100 -n embed-certs-489100: (1.41897s)
--- PASS: TestStartStop/group/embed-certs/serial/SecondStart (291.16s)

                                                
                                    
x
+
TestStartStop/group/default-k8s-diff-port/serial/DeployApp (9.77s)

                                                
                                                
=== RUN   TestStartStop/group/default-k8s-diff-port/serial/DeployApp
start_stop_delete_test.go:196: (dbg) Run:  kubectl --context default-k8s-diff-port-864300 create -f testdata\busybox.yaml
start_stop_delete_test.go:196: (dbg) TestStartStop/group/default-k8s-diff-port/serial/DeployApp: waiting 8m0s for pods matching "integration-test=busybox" in namespace "default" ...
helpers_test.go:344: "busybox" [8f0eaa20-e735-4fb4-9ce9-512d0053c6e3] Pending / Ready:ContainersNotReady (containers with unready status: [busybox]) / ContainersReady:ContainersNotReady (containers with unready status: [busybox])
helpers_test.go:344: "busybox" [8f0eaa20-e735-4fb4-9ce9-512d0053c6e3] Running
E0308 04:28:26.298906    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:196: (dbg) TestStartStop/group/default-k8s-diff-port/serial/DeployApp: integration-test=busybox healthy within 9.0179944s
start_stop_delete_test.go:196: (dbg) Run:  kubectl --context default-k8s-diff-port-864300 exec busybox -- /bin/sh -c "ulimit -n"
--- PASS: TestStartStop/group/default-k8s-diff-port/serial/DeployApp (9.77s)

                                                
                                    
x
+
TestStartStop/group/no-preload/serial/DeployApp (10.92s)

                                                
                                                
=== RUN   TestStartStop/group/no-preload/serial/DeployApp
start_stop_delete_test.go:196: (dbg) Run:  kubectl --context no-preload-273800 create -f testdata\busybox.yaml
start_stop_delete_test.go:196: (dbg) TestStartStop/group/no-preload/serial/DeployApp: waiting 8m0s for pods matching "integration-test=busybox" in namespace "default" ...
helpers_test.go:344: "busybox" [d25b7824-6491-4591-b759-84a8f1def705] Pending / Ready:ContainersNotReady (containers with unready status: [busybox]) / ContainersReady:ContainersNotReady (containers with unready status: [busybox])
helpers_test.go:344: "busybox" [d25b7824-6491-4591-b759-84a8f1def705] Running
start_stop_delete_test.go:196: (dbg) TestStartStop/group/no-preload/serial/DeployApp: integration-test=busybox healthy within 10.0167622s
start_stop_delete_test.go:196: (dbg) Run:  kubectl --context no-preload-273800 exec busybox -- /bin/sh -c "ulimit -n"
--- PASS: TestStartStop/group/no-preload/serial/DeployApp (10.92s)

                                                
                                    
x
+
TestStartStop/group/default-k8s-diff-port/serial/EnableAddonWhileActive (3.07s)

                                                
                                                
=== RUN   TestStartStop/group/default-k8s-diff-port/serial/EnableAddonWhileActive
start_stop_delete_test.go:205: (dbg) Run:  out/minikube-windows-amd64.exe addons enable metrics-server -p default-k8s-diff-port-864300 --images=MetricsServer=registry.k8s.io/echoserver:1.4 --registries=MetricsServer=fake.domain
start_stop_delete_test.go:205: (dbg) Done: out/minikube-windows-amd64.exe addons enable metrics-server -p default-k8s-diff-port-864300 --images=MetricsServer=registry.k8s.io/echoserver:1.4 --registries=MetricsServer=fake.domain: (2.6919912s)
start_stop_delete_test.go:215: (dbg) Run:  kubectl --context default-k8s-diff-port-864300 describe deploy/metrics-server -n kube-system
E0308 04:28:33.856614    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kindnet-563400\client.crt: The system cannot find the path specified.
--- PASS: TestStartStop/group/default-k8s-diff-port/serial/EnableAddonWhileActive (3.07s)

                                                
                                    
x
+
TestStartStop/group/default-k8s-diff-port/serial/Stop (13.52s)

                                                
                                                
=== RUN   TestStartStop/group/default-k8s-diff-port/serial/Stop
start_stop_delete_test.go:228: (dbg) Run:  out/minikube-windows-amd64.exe stop -p default-k8s-diff-port-864300 --alsologtostderr -v=3
start_stop_delete_test.go:228: (dbg) Done: out/minikube-windows-amd64.exe stop -p default-k8s-diff-port-864300 --alsologtostderr -v=3: (13.5245102s)
--- PASS: TestStartStop/group/default-k8s-diff-port/serial/Stop (13.52s)

                                                
                                    
x
+
TestStartStop/group/no-preload/serial/EnableAddonWhileActive (2.8s)

                                                
                                                
=== RUN   TestStartStop/group/no-preload/serial/EnableAddonWhileActive
start_stop_delete_test.go:205: (dbg) Run:  out/minikube-windows-amd64.exe addons enable metrics-server -p no-preload-273800 --images=MetricsServer=registry.k8s.io/echoserver:1.4 --registries=MetricsServer=fake.domain
E0308 04:28:36.807673    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:205: (dbg) Done: out/minikube-windows-amd64.exe addons enable metrics-server -p no-preload-273800 --images=MetricsServer=registry.k8s.io/echoserver:1.4 --registries=MetricsServer=fake.domain: (2.481614s)
start_stop_delete_test.go:215: (dbg) Run:  kubectl --context no-preload-273800 describe deploy/metrics-server -n kube-system
--- PASS: TestStartStop/group/no-preload/serial/EnableAddonWhileActive (2.80s)

                                                
                                    
x
+
TestStartStop/group/no-preload/serial/Stop (13.49s)

                                                
                                                
=== RUN   TestStartStop/group/no-preload/serial/Stop
start_stop_delete_test.go:228: (dbg) Run:  out/minikube-windows-amd64.exe stop -p no-preload-273800 --alsologtostderr -v=3
E0308 04:28:39.712702    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\calico-563400\client.crt: The system cannot find the path specified.
E0308 04:28:47.561302    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\false-563400\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:228: (dbg) Done: out/minikube-windows-amd64.exe stop -p no-preload-273800 --alsologtostderr -v=3: (13.4861496s)
--- PASS: TestStartStop/group/no-preload/serial/Stop (13.49s)

                                                
                                    
x
+
TestStartStop/group/default-k8s-diff-port/serial/EnableAddonAfterStop (1.48s)

                                                
                                                
=== RUN   TestStartStop/group/default-k8s-diff-port/serial/EnableAddonAfterStop
start_stop_delete_test.go:239: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Host}} -p default-k8s-diff-port-864300 -n default-k8s-diff-port-864300
start_stop_delete_test.go:239: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.Host}} -p default-k8s-diff-port-864300 -n default-k8s-diff-port-864300: exit status 7 (582.2884ms)

                                                
                                                
-- stdout --
	Stopped

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:28:47.843005    9924 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:239: status error: exit status 7 (may be ok)
start_stop_delete_test.go:246: (dbg) Run:  out/minikube-windows-amd64.exe addons enable dashboard -p default-k8s-diff-port-864300 --images=MetricsScraper=registry.k8s.io/echoserver:1.4
--- PASS: TestStartStop/group/default-k8s-diff-port/serial/EnableAddonAfterStop (1.48s)

                                                
                                    
x
+
TestStartStop/group/default-k8s-diff-port/serial/SecondStart (287.14s)

                                                
                                                
=== RUN   TestStartStop/group/default-k8s-diff-port/serial/SecondStart
start_stop_delete_test.go:256: (dbg) Run:  out/minikube-windows-amd64.exe start -p default-k8s-diff-port-864300 --memory=2200 --alsologtostderr --wait=true --apiserver-port=8444 --driver=docker --kubernetes-version=v1.28.4
start_stop_delete_test.go:256: (dbg) Done: out/minikube-windows-amd64.exe start -p default-k8s-diff-port-864300 --memory=2200 --alsologtostderr --wait=true --apiserver-port=8444 --driver=docker --kubernetes-version=v1.28.4: (4m45.6007832s)
start_stop_delete_test.go:262: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Host}} -p default-k8s-diff-port-864300 -n default-k8s-diff-port-864300
start_stop_delete_test.go:262: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.Host}} -p default-k8s-diff-port-864300 -n default-k8s-diff-port-864300: (1.5419982s)
--- PASS: TestStartStop/group/default-k8s-diff-port/serial/SecondStart (287.14s)

                                                
                                    
x
+
TestStartStop/group/no-preload/serial/EnableAddonAfterStop (1.28s)

                                                
                                                
=== RUN   TestStartStop/group/no-preload/serial/EnableAddonAfterStop
start_stop_delete_test.go:239: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Host}} -p no-preload-273800 -n no-preload-273800
start_stop_delete_test.go:239: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.Host}} -p no-preload-273800 -n no-preload-273800: exit status 7 (500.9243ms)

                                                
                                                
-- stdout --
	Stopped

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:28:52.060988   11540 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:239: status error: exit status 7 (may be ok)
start_stop_delete_test.go:246: (dbg) Run:  out/minikube-windows-amd64.exe addons enable dashboard -p no-preload-273800 --images=MetricsScraper=registry.k8s.io/echoserver:1.4
--- PASS: TestStartStop/group/no-preload/serial/EnableAddonAfterStop (1.28s)

                                                
                                    
x
+
TestStartStop/group/no-preload/serial/SecondStart (287.8s)

                                                
                                                
=== RUN   TestStartStop/group/no-preload/serial/SecondStart
start_stop_delete_test.go:256: (dbg) Run:  out/minikube-windows-amd64.exe start -p no-preload-273800 --memory=2200 --alsologtostderr --wait=true --preload=false --driver=docker --kubernetes-version=v1.29.0-rc.2
E0308 04:29:01.668443    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kindnet-563400\client.crt: The system cannot find the path specified.
E0308 04:29:12.307639    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:29:12.323648    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:29:12.339650    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:29:12.370654    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:29:12.417308    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:29:12.510078    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:29:12.684868    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:29:13.018870    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:29:13.660842    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:29:14.952627    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:29:17.525388    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:29:22.654523    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:29:23.454873    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:29:23.470571    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:29:23.486138    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:29:23.516282    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:29:23.562604    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:29:23.657210    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:29:23.830198    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:29:24.159761    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:29:24.802974    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:29:26.092745    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:29:28.666074    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:29:29.700936    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:29:29.717284    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:29:29.732930    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:29:29.764940    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:29:29.812941    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:29:29.907951    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:29:30.067969    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:29:30.401242    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:29:31.048029    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:29:32.340337    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:29:32.902128    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:29:33.794041    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:29:34.908125    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:29:40.029408    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:29:44.048628    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:29:48.232217    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
E0308 04:29:50.275084    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:29:53.388847    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:30:00.042291    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
E0308 04:30:04.540103    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:30:10.763013    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:30:15.855336    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\custom-flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:30:34.358927    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:30:41.255566    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
E0308 04:30:43.688898    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\custom-flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:30:45.516057    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:30:51.734101    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:30:55.762773    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\calico-563400\client.crt: The system cannot find the path specified.
E0308 04:31:03.585235    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\false-563400\client.crt: The system cannot find the path specified.
E0308 04:31:23.563265    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\calico-563400\client.crt: The system cannot find the path specified.
E0308 04:31:31.417314    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\false-563400\client.crt: The system cannot find the path specified.
E0308 04:31:56.288979    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:32:04.273115    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
E0308 04:32:07.449636    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
E0308 04:32:13.670194    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\kubenet-563400\client.crt: The system cannot find the path specified.
E0308 04:32:31.484889    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\auto-563400\client.crt: The system cannot find the path specified.
E0308 04:32:32.087739    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\enable-default-cni-563400\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:256: (dbg) Done: out/minikube-windows-amd64.exe start -p no-preload-273800 --memory=2200 --alsologtostderr --wait=true --preload=false --driver=docker --kubernetes-version=v1.29.0-rc.2: (4m46.3358545s)
start_stop_delete_test.go:262: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Host}} -p no-preload-273800 -n no-preload-273800
start_stop_delete_test.go:262: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.Host}} -p no-preload-273800 -n no-preload-273800: (1.4621121s)
--- PASS: TestStartStop/group/no-preload/serial/SecondStart (287.80s)

                                                
                                    
x
+
TestStartStop/group/embed-certs/serial/UserAppExistsAfterStop (6.02s)

                                                
                                                
=== RUN   TestStartStop/group/embed-certs/serial/UserAppExistsAfterStop
start_stop_delete_test.go:274: (dbg) TestStartStop/group/embed-certs/serial/UserAppExistsAfterStop: waiting 9m0s for pods matching "k8s-app=kubernetes-dashboard" in namespace "kubernetes-dashboard" ...
helpers_test.go:344: "kubernetes-dashboard-8694d4445c-spctr" [130a7043-ca50-4b9d-9f99-df61427f027f] Running
start_stop_delete_test.go:274: (dbg) TestStartStop/group/embed-certs/serial/UserAppExistsAfterStop: k8s-app=kubernetes-dashboard healthy within 6.0194051s
--- PASS: TestStartStop/group/embed-certs/serial/UserAppExistsAfterStop (6.02s)

                                                
                                    
x
+
TestStartStop/group/embed-certs/serial/AddonExistsAfterStop (5.51s)

                                                
                                                
=== RUN   TestStartStop/group/embed-certs/serial/AddonExistsAfterStop
start_stop_delete_test.go:287: (dbg) TestStartStop/group/embed-certs/serial/AddonExistsAfterStop: waiting 9m0s for pods matching "k8s-app=kubernetes-dashboard" in namespace "kubernetes-dashboard" ...
helpers_test.go:344: "kubernetes-dashboard-8694d4445c-spctr" [130a7043-ca50-4b9d-9f99-df61427f027f] Running
start_stop_delete_test.go:287: (dbg) TestStartStop/group/embed-certs/serial/AddonExistsAfterStop: k8s-app=kubernetes-dashboard healthy within 5.0125623s
start_stop_delete_test.go:291: (dbg) Run:  kubectl --context embed-certs-489100 describe deploy/dashboard-metrics-scraper -n kubernetes-dashboard
--- PASS: TestStartStop/group/embed-certs/serial/AddonExistsAfterStop (5.51s)

                                                
                                    
x
+
TestStartStop/group/embed-certs/serial/VerifyKubernetesImages (0.9s)

                                                
                                                
=== RUN   TestStartStop/group/embed-certs/serial/VerifyKubernetesImages
start_stop_delete_test.go:304: (dbg) Run:  out/minikube-windows-amd64.exe -p embed-certs-489100 image list --format=json
start_stop_delete_test.go:304: Found non-minikube image: gcr.io/k8s-minikube/busybox:1.28.4-glibc
--- PASS: TestStartStop/group/embed-certs/serial/VerifyKubernetesImages (0.90s)

                                                
                                    
x
+
TestStartStop/group/embed-certs/serial/Pause (9.75s)

                                                
                                                
=== RUN   TestStartStop/group/embed-certs/serial/Pause
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe pause -p embed-certs-489100 --alsologtostderr -v=1
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe pause -p embed-certs-489100 --alsologtostderr -v=1: (1.7803686s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.APIServer}} -p embed-certs-489100 -n embed-certs-489100
start_stop_delete_test.go:311: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.APIServer}} -p embed-certs-489100 -n embed-certs-489100: exit status 2 (1.4818523s)

                                                
                                                
-- stdout --
	Paused

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:33:20.283693    9880 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:311: status error: exit status 2 (may be ok)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p embed-certs-489100 -n embed-certs-489100
start_stop_delete_test.go:311: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p embed-certs-489100 -n embed-certs-489100: exit status 2 (1.3465257s)

                                                
                                                
-- stdout --
	Stopped

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:33:21.759699   10028 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:311: status error: exit status 2 (may be ok)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe unpause -p embed-certs-489100 --alsologtostderr -v=1
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe unpause -p embed-certs-489100 --alsologtostderr -v=1: (1.7854438s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.APIServer}} -p embed-certs-489100 -n embed-certs-489100
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.APIServer}} -p embed-certs-489100 -n embed-certs-489100: (1.7439274s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p embed-certs-489100 -n embed-certs-489100
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p embed-certs-489100 -n embed-certs-489100: (1.6138356s)
--- PASS: TestStartStop/group/embed-certs/serial/Pause (9.75s)

                                                
                                    
x
+
TestStartStop/group/default-k8s-diff-port/serial/UserAppExistsAfterStop (6.02s)

                                                
                                                
=== RUN   TestStartStop/group/default-k8s-diff-port/serial/UserAppExistsAfterStop
start_stop_delete_test.go:274: (dbg) TestStartStop/group/default-k8s-diff-port/serial/UserAppExistsAfterStop: waiting 9m0s for pods matching "k8s-app=kubernetes-dashboard" in namespace "kubernetes-dashboard" ...
helpers_test.go:344: "kubernetes-dashboard-8694d4445c-2z57t" [bce1998c-f0fb-4a97-9150-7da2ad9d44a4] Running
start_stop_delete_test.go:274: (dbg) TestStartStop/group/default-k8s-diff-port/serial/UserAppExistsAfterStop: k8s-app=kubernetes-dashboard healthy within 6.0186782s
--- PASS: TestStartStop/group/default-k8s-diff-port/serial/UserAppExistsAfterStop (6.02s)

                                                
                                    
x
+
TestStartStop/group/newest-cni/serial/FirstStart (86.32s)

                                                
                                                
=== RUN   TestStartStop/group/newest-cni/serial/FirstStart
start_stop_delete_test.go:186: (dbg) Run:  out/minikube-windows-amd64.exe start -p newest-cni-412400 --memory=2200 --alsologtostderr --wait=apiserver,system_pods,default_sa --feature-gates ServerSideApply=true --network-plugin=cni --extra-config=kubeadm.pod-network-cidr=10.42.0.0/16 --driver=docker --kubernetes-version=v1.29.0-rc.2
E0308 04:33:36.830125    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\functional-131400\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:186: (dbg) Done: out/minikube-windows-amd64.exe start -p newest-cni-412400 --memory=2200 --alsologtostderr --wait=apiserver,system_pods,default_sa --feature-gates ServerSideApply=true --network-plugin=cni --extra-config=kubeadm.pod-network-cidr=10.42.0.0/16 --driver=docker --kubernetes-version=v1.29.0-rc.2: (1m26.3188825s)
--- PASS: TestStartStop/group/newest-cni/serial/FirstStart (86.32s)

                                                
                                    
x
+
TestStartStop/group/no-preload/serial/UserAppExistsAfterStop (6.03s)

                                                
                                                
=== RUN   TestStartStop/group/no-preload/serial/UserAppExistsAfterStop
start_stop_delete_test.go:274: (dbg) TestStartStop/group/no-preload/serial/UserAppExistsAfterStop: waiting 9m0s for pods matching "k8s-app=kubernetes-dashboard" in namespace "kubernetes-dashboard" ...
helpers_test.go:344: "kubernetes-dashboard-8694d4445c-xp982" [8c1f0d69-bafc-4e12-9c4a-51084f6a0695] Running
start_stop_delete_test.go:274: (dbg) TestStartStop/group/no-preload/serial/UserAppExistsAfterStop: k8s-app=kubernetes-dashboard healthy within 6.0232s
--- PASS: TestStartStop/group/no-preload/serial/UserAppExistsAfterStop (6.03s)

                                                
                                    
x
+
TestStartStop/group/default-k8s-diff-port/serial/AddonExistsAfterStop (5.37s)

                                                
                                                
=== RUN   TestStartStop/group/default-k8s-diff-port/serial/AddonExistsAfterStop
start_stop_delete_test.go:287: (dbg) TestStartStop/group/default-k8s-diff-port/serial/AddonExistsAfterStop: waiting 9m0s for pods matching "k8s-app=kubernetes-dashboard" in namespace "kubernetes-dashboard" ...
helpers_test.go:344: "kubernetes-dashboard-8694d4445c-2z57t" [bce1998c-f0fb-4a97-9150-7da2ad9d44a4] Running
E0308 04:33:44.466643    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:287: (dbg) TestStartStop/group/default-k8s-diff-port/serial/AddonExistsAfterStop: k8s-app=kubernetes-dashboard healthy within 5.020194s
start_stop_delete_test.go:291: (dbg) Run:  kubectl --context default-k8s-diff-port-864300 describe deploy/dashboard-metrics-scraper -n kubernetes-dashboard
--- PASS: TestStartStop/group/default-k8s-diff-port/serial/AddonExistsAfterStop (5.37s)

                                                
                                    
x
+
TestStartStop/group/no-preload/serial/AddonExistsAfterStop (5.4s)

                                                
                                                
=== RUN   TestStartStop/group/no-preload/serial/AddonExistsAfterStop
start_stop_delete_test.go:287: (dbg) TestStartStop/group/no-preload/serial/AddonExistsAfterStop: waiting 9m0s for pods matching "k8s-app=kubernetes-dashboard" in namespace "kubernetes-dashboard" ...
helpers_test.go:344: "kubernetes-dashboard-8694d4445c-xp982" [8c1f0d69-bafc-4e12-9c4a-51084f6a0695] Running
start_stop_delete_test.go:287: (dbg) TestStartStop/group/no-preload/serial/AddonExistsAfterStop: k8s-app=kubernetes-dashboard healthy within 5.0206128s
start_stop_delete_test.go:291: (dbg) Run:  kubectl --context no-preload-273800 describe deploy/dashboard-metrics-scraper -n kubernetes-dashboard
--- PASS: TestStartStop/group/no-preload/serial/AddonExistsAfterStop (5.40s)

                                                
                                    
x
+
TestStartStop/group/default-k8s-diff-port/serial/VerifyKubernetesImages (0.86s)

                                                
                                                
=== RUN   TestStartStop/group/default-k8s-diff-port/serial/VerifyKubernetesImages
start_stop_delete_test.go:304: (dbg) Run:  out/minikube-windows-amd64.exe -p default-k8s-diff-port-864300 image list --format=json
start_stop_delete_test.go:304: Found non-minikube image: gcr.io/k8s-minikube/busybox:1.28.4-glibc
--- PASS: TestStartStop/group/default-k8s-diff-port/serial/VerifyKubernetesImages (0.86s)

                                                
                                    
x
+
TestStartStop/group/default-k8s-diff-port/serial/Pause (10.02s)

                                                
                                                
=== RUN   TestStartStop/group/default-k8s-diff-port/serial/Pause
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe pause -p default-k8s-diff-port-864300 --alsologtostderr -v=1
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe pause -p default-k8s-diff-port-864300 --alsologtostderr -v=1: (1.8728248s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.APIServer}} -p default-k8s-diff-port-864300 -n default-k8s-diff-port-864300
start_stop_delete_test.go:311: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.APIServer}} -p default-k8s-diff-port-864300 -n default-k8s-diff-port-864300: exit status 2 (1.3491699s)

                                                
                                                
-- stdout --
	Paused

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:33:50.571688    7684 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:311: status error: exit status 2 (may be ok)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p default-k8s-diff-port-864300 -n default-k8s-diff-port-864300
start_stop_delete_test.go:311: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p default-k8s-diff-port-864300 -n default-k8s-diff-port-864300: exit status 2 (1.3194066s)

                                                
                                                
-- stdout --
	Stopped

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:33:51.919837   12752 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:311: status error: exit status 2 (may be ok)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe unpause -p default-k8s-diff-port-864300 --alsologtostderr -v=1
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe unpause -p default-k8s-diff-port-864300 --alsologtostderr -v=1: (1.8451483s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.APIServer}} -p default-k8s-diff-port-864300 -n default-k8s-diff-port-864300
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.APIServer}} -p default-k8s-diff-port-864300 -n default-k8s-diff-port-864300: (1.7316871s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p default-k8s-diff-port-864300 -n default-k8s-diff-port-864300
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p default-k8s-diff-port-864300 -n default-k8s-diff-port-864300: (1.8997476s)
--- PASS: TestStartStop/group/default-k8s-diff-port/serial/Pause (10.02s)

                                                
                                    
x
+
TestStartStop/group/no-preload/serial/VerifyKubernetesImages (0.89s)

                                                
                                                
=== RUN   TestStartStop/group/no-preload/serial/VerifyKubernetesImages
start_stop_delete_test.go:304: (dbg) Run:  out/minikube-windows-amd64.exe -p no-preload-273800 image list --format=json
start_stop_delete_test.go:304: Found non-minikube image: gcr.io/k8s-minikube/busybox:1.28.4-glibc
--- PASS: TestStartStop/group/no-preload/serial/VerifyKubernetesImages (0.89s)

                                                
                                    
x
+
TestStartStop/group/no-preload/serial/Pause (15.49s)

                                                
                                                
=== RUN   TestStartStop/group/no-preload/serial/Pause
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe pause -p no-preload-273800 --alsologtostderr -v=1
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe pause -p no-preload-273800 --alsologtostderr -v=1: (1.9552777s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.APIServer}} -p no-preload-273800 -n no-preload-273800
start_stop_delete_test.go:311: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.APIServer}} -p no-preload-273800 -n no-preload-273800: exit status 2 (1.4730795s)

                                                
                                                
-- stdout --
	Paused

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:33:55.404841    1496 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:311: status error: exit status 2 (may be ok)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p no-preload-273800 -n no-preload-273800
start_stop_delete_test.go:311: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p no-preload-273800 -n no-preload-273800: exit status 2 (1.6702433s)

                                                
                                                
-- stdout --
	Stopped

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:33:56.901810   11624 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:311: status error: exit status 2 (may be ok)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe unpause -p no-preload-273800 --alsologtostderr -v=1
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe unpause -p no-preload-273800 --alsologtostderr -v=1: (6.4800388s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.APIServer}} -p no-preload-273800 -n no-preload-273800
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.APIServer}} -p no-preload-273800 -n no-preload-273800: (2.0820704s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p no-preload-273800 -n no-preload-273800
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p no-preload-273800 -n no-preload-273800: (1.8321185s)
--- PASS: TestStartStop/group/no-preload/serial/Pause (15.49s)

                                                
                                    
x
+
TestStartStop/group/old-k8s-version/serial/UserAppExistsAfterStop (6.02s)

                                                
                                                
=== RUN   TestStartStop/group/old-k8s-version/serial/UserAppExistsAfterStop
start_stop_delete_test.go:274: (dbg) TestStartStop/group/old-k8s-version/serial/UserAppExistsAfterStop: waiting 9m0s for pods matching "k8s-app=kubernetes-dashboard" in namespace "kubernetes-dashboard" ...
helpers_test.go:344: "kubernetes-dashboard-cd95d586-kq2qr" [f06ed8d3-0f92-41bb-8704-05ac03728aca] Running
start_stop_delete_test.go:274: (dbg) TestStartStop/group/old-k8s-version/serial/UserAppExistsAfterStop: k8s-app=kubernetes-dashboard healthy within 6.0188555s
--- PASS: TestStartStop/group/old-k8s-version/serial/UserAppExistsAfterStop (6.02s)

                                                
                                    
x
+
TestStartStop/group/old-k8s-version/serial/AddonExistsAfterStop (6.53s)

                                                
                                                
=== RUN   TestStartStop/group/old-k8s-version/serial/AddonExistsAfterStop
start_stop_delete_test.go:287: (dbg) TestStartStop/group/old-k8s-version/serial/AddonExistsAfterStop: waiting 9m0s for pods matching "k8s-app=kubernetes-dashboard" in namespace "kubernetes-dashboard" ...
helpers_test.go:344: "kubernetes-dashboard-cd95d586-kq2qr" [f06ed8d3-0f92-41bb-8704-05ac03728aca] Running
start_stop_delete_test.go:287: (dbg) TestStartStop/group/old-k8s-version/serial/AddonExistsAfterStop: k8s-app=kubernetes-dashboard healthy within 6.0268401s
start_stop_delete_test.go:291: (dbg) Run:  kubectl --context old-k8s-version-664800 describe deploy/dashboard-metrics-scraper -n kubernetes-dashboard
--- PASS: TestStartStop/group/old-k8s-version/serial/AddonExistsAfterStop (6.53s)

                                                
                                    
x
+
TestStartStop/group/old-k8s-version/serial/VerifyKubernetesImages (0.92s)

                                                
                                                
=== RUN   TestStartStop/group/old-k8s-version/serial/VerifyKubernetesImages
start_stop_delete_test.go:304: (dbg) Run:  out/minikube-windows-amd64.exe -p old-k8s-version-664800 image list --format=json
start_stop_delete_test.go:304: Found non-minikube image: gcr.io/k8s-minikube/busybox:1.28.4-glibc
--- PASS: TestStartStop/group/old-k8s-version/serial/VerifyKubernetesImages (0.92s)

                                                
                                    
x
+
TestStartStop/group/old-k8s-version/serial/Pause (9.67s)

                                                
                                                
=== RUN   TestStartStop/group/old-k8s-version/serial/Pause
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe pause -p old-k8s-version-664800 --alsologtostderr -v=1
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe pause -p old-k8s-version-664800 --alsologtostderr -v=1: (1.8478232s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.APIServer}} -p old-k8s-version-664800 -n old-k8s-version-664800
start_stop_delete_test.go:311: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.APIServer}} -p old-k8s-version-664800 -n old-k8s-version-664800: exit status 2 (1.3517454s)

                                                
                                                
-- stdout --
	Paused

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:34:19.789271   14284 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:311: status error: exit status 2 (may be ok)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p old-k8s-version-664800 -n old-k8s-version-664800
start_stop_delete_test.go:311: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p old-k8s-version-664800 -n old-k8s-version-664800: exit status 2 (1.3640654s)

                                                
                                                
-- stdout --
	Stopped

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:34:21.121865    7852 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:311: status error: exit status 2 (may be ok)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe unpause -p old-k8s-version-664800 --alsologtostderr -v=1
E0308 04:34:23.464811    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\bridge-563400\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe unpause -p old-k8s-version-664800 --alsologtostderr -v=1: (1.7441409s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.APIServer}} -p old-k8s-version-664800 -n old-k8s-version-664800
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.APIServer}} -p old-k8s-version-664800 -n old-k8s-version-664800: (1.8680524s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p old-k8s-version-664800 -n old-k8s-version-664800
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p old-k8s-version-664800 -n old-k8s-version-664800: (1.4903689s)
--- PASS: TestStartStop/group/old-k8s-version/serial/Pause (9.67s)

                                                
                                    
x
+
TestStartStop/group/newest-cni/serial/DeployApp (0s)

                                                
                                                
=== RUN   TestStartStop/group/newest-cni/serial/DeployApp
--- PASS: TestStartStop/group/newest-cni/serial/DeployApp (0.00s)

                                                
                                    
x
+
TestStartStop/group/newest-cni/serial/EnableAddonWhileActive (3.08s)

                                                
                                                
=== RUN   TestStartStop/group/newest-cni/serial/EnableAddonWhileActive
start_stop_delete_test.go:205: (dbg) Run:  out/minikube-windows-amd64.exe addons enable metrics-server -p newest-cni-412400 --images=MetricsServer=registry.k8s.io/echoserver:1.4 --registries=MetricsServer=fake.domain
start_stop_delete_test.go:205: (dbg) Done: out/minikube-windows-amd64.exe addons enable metrics-server -p newest-cni-412400 --images=MetricsServer=registry.k8s.io/echoserver:1.4 --registries=MetricsServer=fake.domain: (3.0797847s)
start_stop_delete_test.go:211: WARNING: cni mode requires additional setup before pods can schedule :(
--- PASS: TestStartStop/group/newest-cni/serial/EnableAddonWhileActive (3.08s)

                                                
                                    
x
+
TestStartStop/group/newest-cni/serial/Stop (7.49s)

                                                
                                                
=== RUN   TestStartStop/group/newest-cni/serial/Stop
start_stop_delete_test.go:228: (dbg) Run:  out/minikube-windows-amd64.exe stop -p newest-cni-412400 --alsologtostderr -v=3
start_stop_delete_test.go:228: (dbg) Done: out/minikube-windows-amd64.exe stop -p newest-cni-412400 --alsologtostderr -v=3: (7.4865318s)
--- PASS: TestStartStop/group/newest-cni/serial/Stop (7.49s)

                                                
                                    
x
+
TestStartStop/group/newest-cni/serial/EnableAddonAfterStop (1.07s)

                                                
                                                
=== RUN   TestStartStop/group/newest-cni/serial/EnableAddonAfterStop
start_stop_delete_test.go:239: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Host}} -p newest-cni-412400 -n newest-cni-412400
start_stop_delete_test.go:239: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.Host}} -p newest-cni-412400 -n newest-cni-412400: exit status 7 (407.9039ms)

                                                
                                                
-- stdout --
	Stopped

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:35:13.395700    4528 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:239: status error: exit status 7 (may be ok)
start_stop_delete_test.go:246: (dbg) Run:  out/minikube-windows-amd64.exe addons enable dashboard -p newest-cni-412400 --images=MetricsScraper=registry.k8s.io/echoserver:1.4
--- PASS: TestStartStop/group/newest-cni/serial/EnableAddonAfterStop (1.07s)

                                                
                                    
x
+
TestStartStop/group/newest-cni/serial/SecondStart (32.09s)

                                                
                                                
=== RUN   TestStartStop/group/newest-cni/serial/SecondStart
start_stop_delete_test.go:256: (dbg) Run:  out/minikube-windows-amd64.exe start -p newest-cni-412400 --memory=2200 --alsologtostderr --wait=apiserver,system_pods,default_sa --feature-gates ServerSideApply=true --network-plugin=cni --extra-config=kubeadm.pod-network-cidr=10.42.0.0/16 --driver=docker --kubernetes-version=v1.29.0-rc.2
E0308 04:35:15.868962    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\custom-flannel-563400\client.crt: The system cannot find the path specified.
E0308 04:35:41.272085    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\addons-215800\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:256: (dbg) Done: out/minikube-windows-amd64.exe start -p newest-cni-412400 --memory=2200 --alsologtostderr --wait=apiserver,system_pods,default_sa --feature-gates ServerSideApply=true --network-plugin=cni --extra-config=kubeadm.pod-network-cidr=10.42.0.0/16 --driver=docker --kubernetes-version=v1.29.0-rc.2: (30.7708548s)
start_stop_delete_test.go:262: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Host}} -p newest-cni-412400 -n newest-cni-412400
start_stop_delete_test.go:262: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.Host}} -p newest-cni-412400 -n newest-cni-412400: (1.3235563s)
--- PASS: TestStartStop/group/newest-cni/serial/SecondStart (32.09s)

                                                
                                    
x
+
TestStartStop/group/newest-cni/serial/UserAppExistsAfterStop (0s)

                                                
                                                
=== RUN   TestStartStop/group/newest-cni/serial/UserAppExistsAfterStop
start_stop_delete_test.go:273: WARNING: cni mode requires additional setup before pods can schedule :(
--- PASS: TestStartStop/group/newest-cni/serial/UserAppExistsAfterStop (0.00s)

                                                
                                    
x
+
TestStartStop/group/newest-cni/serial/AddonExistsAfterStop (0s)

                                                
                                                
=== RUN   TestStartStop/group/newest-cni/serial/AddonExistsAfterStop
start_stop_delete_test.go:284: WARNING: cni mode requires additional setup before pods can schedule :(
--- PASS: TestStartStop/group/newest-cni/serial/AddonExistsAfterStop (0.00s)

                                                
                                    
x
+
TestStartStop/group/newest-cni/serial/VerifyKubernetesImages (0.8s)

                                                
                                                
=== RUN   TestStartStop/group/newest-cni/serial/VerifyKubernetesImages
start_stop_delete_test.go:304: (dbg) Run:  out/minikube-windows-amd64.exe -p newest-cni-412400 image list --format=json
--- PASS: TestStartStop/group/newest-cni/serial/VerifyKubernetesImages (0.80s)

                                                
                                    
x
+
TestStartStop/group/newest-cni/serial/Pause (8.98s)

                                                
                                                
=== RUN   TestStartStop/group/newest-cni/serial/Pause
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe pause -p newest-cni-412400 --alsologtostderr -v=1
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe pause -p newest-cni-412400 --alsologtostderr -v=1: (1.6266114s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.APIServer}} -p newest-cni-412400 -n newest-cni-412400
start_stop_delete_test.go:311: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.APIServer}} -p newest-cni-412400 -n newest-cni-412400: exit status 2 (1.2388287s)

                                                
                                                
-- stdout --
	Paused

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:35:48.982407    7452 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:311: status error: exit status 2 (may be ok)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p newest-cni-412400 -n newest-cni-412400
start_stop_delete_test.go:311: (dbg) Non-zero exit: out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p newest-cni-412400 -n newest-cni-412400: exit status 2 (1.2755536s)

                                                
                                                
-- stdout --
	Stopped

                                                
                                                
-- /stdout --
** stderr ** 
	W0308 04:35:50.219970    3100 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.

                                                
                                                
** /stderr **
start_stop_delete_test.go:311: status error: exit status 2 (may be ok)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe unpause -p newest-cni-412400 --alsologtostderr -v=1
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe unpause -p newest-cni-412400 --alsologtostderr -v=1: (1.5239337s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.APIServer}} -p newest-cni-412400 -n newest-cni-412400
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.APIServer}} -p newest-cni-412400 -n newest-cni-412400: (1.7031194s)
start_stop_delete_test.go:311: (dbg) Run:  out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p newest-cni-412400 -n newest-cni-412400
E0308 04:35:55.763713    6728 cert_rotation.go:168] key failed with : open C:\Users\jenkins.minikube4\minikube-integration\.minikube\profiles\calico-563400\client.crt: The system cannot find the path specified.
start_stop_delete_test.go:311: (dbg) Done: out/minikube-windows-amd64.exe status --format={{.Kubelet}} -p newest-cni-412400 -n newest-cni-412400: (1.6092417s)
--- PASS: TestStartStop/group/newest-cni/serial/Pause (8.98s)

                                                
                                    

Test skip (27/347)

x
+
TestDownloadOnly/v1.20.0/cached-images (0s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.20.0/cached-images
aaa_download_only_test.go:129: Preload exists, images won't be cached
--- SKIP: TestDownloadOnly/v1.20.0/cached-images (0.00s)

                                                
                                    
x
+
TestDownloadOnly/v1.20.0/binaries (0s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.20.0/binaries
aaa_download_only_test.go:151: Preload exists, binaries are present within.
--- SKIP: TestDownloadOnly/v1.20.0/binaries (0.00s)

                                                
                                    
x
+
TestDownloadOnly/v1.28.4/cached-images (0s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.28.4/cached-images
aaa_download_only_test.go:129: Preload exists, images won't be cached
--- SKIP: TestDownloadOnly/v1.28.4/cached-images (0.00s)

                                                
                                    
x
+
TestDownloadOnly/v1.28.4/binaries (0s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.28.4/binaries
aaa_download_only_test.go:151: Preload exists, binaries are present within.
--- SKIP: TestDownloadOnly/v1.28.4/binaries (0.00s)

                                                
                                    
x
+
TestDownloadOnly/v1.29.0-rc.2/cached-images (0s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.29.0-rc.2/cached-images
aaa_download_only_test.go:129: Preload exists, images won't be cached
--- SKIP: TestDownloadOnly/v1.29.0-rc.2/cached-images (0.00s)

                                                
                                    
x
+
TestDownloadOnly/v1.29.0-rc.2/binaries (0s)

                                                
                                                
=== RUN   TestDownloadOnly/v1.29.0-rc.2/binaries
aaa_download_only_test.go:151: Preload exists, binaries are present within.
--- SKIP: TestDownloadOnly/v1.29.0-rc.2/binaries (0.00s)

                                                
                                    
x
+
TestAddons/parallel/Registry (17.74s)

                                                
                                                
=== RUN   TestAddons/parallel/Registry
=== PAUSE TestAddons/parallel/Registry

                                                
                                                

                                                
                                                
=== CONT  TestAddons/parallel/Registry
addons_test.go:330: registry stabilized in 38.9159ms
addons_test.go:332: (dbg) TestAddons/parallel/Registry: waiting 6m0s for pods matching "actual-registry=true" in namespace "kube-system" ...
helpers_test.go:344: "registry-fj5n7" [7d982a6f-0818-413e-b3de-c586a493d810] Running
addons_test.go:332: (dbg) TestAddons/parallel/Registry: actual-registry=true healthy within 5.0228617s
addons_test.go:335: (dbg) TestAddons/parallel/Registry: waiting 10m0s for pods matching "registry-proxy=true" in namespace "kube-system" ...
helpers_test.go:344: "registry-proxy-n4zgm" [92fa9482-961d-43ce-a3ec-b4335fc28244] Running
addons_test.go:335: (dbg) TestAddons/parallel/Registry: registry-proxy=true healthy within 5.026015s
addons_test.go:340: (dbg) Run:  kubectl --context addons-215800 delete po -l run=registry-test --now
addons_test.go:345: (dbg) Run:  kubectl --context addons-215800 run --rm registry-test --restart=Never --image=gcr.io/k8s-minikube/busybox -it -- sh -c "wget --spider -S http://registry.kube-system.svc.cluster.local"
addons_test.go:345: (dbg) Done: kubectl --context addons-215800 run --rm registry-test --restart=Never --image=gcr.io/k8s-minikube/busybox -it -- sh -c "wget --spider -S http://registry.kube-system.svc.cluster.local": (7.3880923s)
addons_test.go:355: Unable to complete rest of the test due to connectivity assumptions
--- SKIP: TestAddons/parallel/Registry (17.74s)

                                                
                                    
x
+
TestAddons/parallel/Ingress (17.85s)

                                                
                                                
=== RUN   TestAddons/parallel/Ingress
=== PAUSE TestAddons/parallel/Ingress

                                                
                                                

                                                
                                                
=== CONT  TestAddons/parallel/Ingress
addons_test.go:207: (dbg) Run:  kubectl --context addons-215800 wait --for=condition=ready --namespace=ingress-nginx pod --selector=app.kubernetes.io/component=controller --timeout=90s
addons_test.go:232: (dbg) Run:  kubectl --context addons-215800 replace --force -f testdata\nginx-ingress-v1.yaml
addons_test.go:245: (dbg) Run:  kubectl --context addons-215800 replace --force -f testdata\nginx-pod-svc.yaml
addons_test.go:250: (dbg) TestAddons/parallel/Ingress: waiting 8m0s for pods matching "run=nginx" in namespace "default" ...
helpers_test.go:344: "nginx" [2ca4785b-0402-4b20-9258-f3e96ba840ee] Pending / Ready:ContainersNotReady (containers with unready status: [nginx]) / ContainersReady:ContainersNotReady (containers with unready status: [nginx])
helpers_test.go:344: "nginx" [2ca4785b-0402-4b20-9258-f3e96ba840ee] Running
addons_test.go:250: (dbg) TestAddons/parallel/Ingress: run=nginx healthy within 15.0217568s
addons_test.go:262: (dbg) Run:  out/minikube-windows-amd64.exe -p addons-215800 ssh "curl -s http://127.0.0.1/ -H 'Host: nginx.example.com'"
addons_test.go:262: (dbg) Done: out/minikube-windows-amd64.exe -p addons-215800 ssh "curl -s http://127.0.0.1/ -H 'Host: nginx.example.com'": (1.2711328s)
addons_test.go:269: debug: unexpected stderr for out/minikube-windows-amd64.exe -p addons-215800 ssh "curl -s http://127.0.0.1/ -H 'Host: nginx.example.com'":
W0308 03:06:35.647741    8868 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
addons_test.go:282: skipping ingress DNS test for any combination that needs port forwarding
--- SKIP: TestAddons/parallel/Ingress (17.85s)

                                                
                                    
x
+
TestAddons/parallel/Olm (0s)

                                                
                                                
=== RUN   TestAddons/parallel/Olm
=== PAUSE TestAddons/parallel/Olm

                                                
                                                

                                                
                                                
=== CONT  TestAddons/parallel/Olm
addons_test.go:498: Skipping OLM addon test until https://github.com/operator-framework/operator-lifecycle-manager/issues/2534 is resolved
--- SKIP: TestAddons/parallel/Olm (0.00s)

                                                
                                    
x
+
TestDockerEnvContainerd (0s)

                                                
                                                
=== RUN   TestDockerEnvContainerd
docker_test.go:170: running with docker true windows amd64
docker_test.go:172: skipping: TestDockerEnvContainerd can only be run with the containerd runtime on Docker driver
--- SKIP: TestDockerEnvContainerd (0.00s)

                                                
                                    
x
+
TestKVMDriverInstallOrUpdate (0s)

                                                
                                                
=== RUN   TestKVMDriverInstallOrUpdate
driver_install_or_update_test.go:41: Skip if not linux.
--- SKIP: TestKVMDriverInstallOrUpdate (0.00s)

                                                
                                    
x
+
TestHyperKitDriverInstallOrUpdate (0s)

                                                
                                                
=== RUN   TestHyperKitDriverInstallOrUpdate
driver_install_or_update_test.go:105: Skip if not darwin.
--- SKIP: TestHyperKitDriverInstallOrUpdate (0.00s)

                                                
                                    
x
+
TestHyperkitDriverSkipUpgrade (0s)

                                                
                                                
=== RUN   TestHyperkitDriverSkipUpgrade
driver_install_or_update_test.go:169: Skip if not darwin.
--- SKIP: TestHyperkitDriverSkipUpgrade (0.00s)

                                                
                                    
x
+
TestFunctional/parallel/DashboardCmd (300.02s)

                                                
                                                
=== RUN   TestFunctional/parallel/DashboardCmd
=== PAUSE TestFunctional/parallel/DashboardCmd

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/DashboardCmd
functional_test.go:901: (dbg) daemon: [out/minikube-windows-amd64.exe dashboard --url --port 36195 -p functional-131400 --alsologtostderr -v=1]
functional_test.go:912: output didn't produce a URL
functional_test.go:906: (dbg) stopping [out/minikube-windows-amd64.exe dashboard --url --port 36195 -p functional-131400 --alsologtostderr -v=1] ...
helpers_test.go:502: unable to terminate pid 5748: Access is denied.
--- SKIP: TestFunctional/parallel/DashboardCmd (300.02s)

                                                
                                    
x
+
TestFunctional/parallel/MountCmd (0s)

                                                
                                                
=== RUN   TestFunctional/parallel/MountCmd
=== PAUSE TestFunctional/parallel/MountCmd

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/MountCmd
functional_test_mount_test.go:64: skipping: mount broken on windows: https://github.com/kubernetes/minikube/issues/8303
--- SKIP: TestFunctional/parallel/MountCmd (0.00s)

                                                
                                    
x
+
TestFunctional/parallel/ServiceCmdConnect (27.49s)

                                                
                                                
=== RUN   TestFunctional/parallel/ServiceCmdConnect
=== PAUSE TestFunctional/parallel/ServiceCmdConnect

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/ServiceCmdConnect
functional_test.go:1625: (dbg) Run:  kubectl --context functional-131400 create deployment hello-node-connect --image=registry.k8s.io/echoserver:1.8
functional_test.go:1631: (dbg) Run:  kubectl --context functional-131400 expose deployment hello-node-connect --type=NodePort --port=8080
functional_test.go:1636: (dbg) TestFunctional/parallel/ServiceCmdConnect: waiting 10m0s for pods matching "app=hello-node-connect" in namespace "default" ...
helpers_test.go:344: "hello-node-connect-55497b8b78-9rpl6" [8d17c55a-1f31-4fd8-9907-38f7f3abd012] Pending / Ready:ContainersNotReady (containers with unready status: [echoserver]) / ContainersReady:ContainersNotReady (containers with unready status: [echoserver])
helpers_test.go:344: "hello-node-connect-55497b8b78-9rpl6" [8d17c55a-1f31-4fd8-9907-38f7f3abd012] Running
functional_test.go:1636: (dbg) TestFunctional/parallel/ServiceCmdConnect: app=hello-node-connect healthy within 27.0197829s
functional_test.go:1642: test is broken for port-forwarded drivers: https://github.com/kubernetes/minikube/issues/7383
--- SKIP: TestFunctional/parallel/ServiceCmdConnect (27.49s)

                                                
                                    
x
+
TestFunctional/parallel/PodmanEnv (0s)

                                                
                                                
=== RUN   TestFunctional/parallel/PodmanEnv
=== PAUSE TestFunctional/parallel/PodmanEnv

                                                
                                                

                                                
                                                
=== CONT  TestFunctional/parallel/PodmanEnv
functional_test.go:546: only validate podman env with docker container runtime, currently testing docker
--- SKIP: TestFunctional/parallel/PodmanEnv (0.00s)

                                                
                                    
x
+
TestFunctional/parallel/TunnelCmd/serial/AccessDirect (0s)

                                                
                                                
=== RUN   TestFunctional/parallel/TunnelCmd/serial/AccessDirect
functional_test_tunnel_test.go:258: skipping: access direct test is broken on windows: https://github.com/kubernetes/minikube/issues/8304
--- SKIP: TestFunctional/parallel/TunnelCmd/serial/AccessDirect (0.00s)

                                                
                                    
x
+
TestFunctional/parallel/TunnelCmd/serial/DNSResolutionByDig (0s)

                                                
                                                
=== RUN   TestFunctional/parallel/TunnelCmd/serial/DNSResolutionByDig
functional_test_tunnel_test.go:99: DNS forwarding is only supported for Hyperkit on Darwin, skipping test DNS forwarding
--- SKIP: TestFunctional/parallel/TunnelCmd/serial/DNSResolutionByDig (0.00s)

                                                
                                    
x
+
TestFunctional/parallel/TunnelCmd/serial/DNSResolutionByDscacheutil (0s)

                                                
                                                
=== RUN   TestFunctional/parallel/TunnelCmd/serial/DNSResolutionByDscacheutil
functional_test_tunnel_test.go:99: DNS forwarding is only supported for Hyperkit on Darwin, skipping test DNS forwarding
--- SKIP: TestFunctional/parallel/TunnelCmd/serial/DNSResolutionByDscacheutil (0.00s)

                                                
                                    
x
+
TestFunctional/parallel/TunnelCmd/serial/AccessThroughDNS (0s)

                                                
                                                
=== RUN   TestFunctional/parallel/TunnelCmd/serial/AccessThroughDNS
functional_test_tunnel_test.go:99: DNS forwarding is only supported for Hyperkit on Darwin, skipping test DNS forwarding
--- SKIP: TestFunctional/parallel/TunnelCmd/serial/AccessThroughDNS (0.00s)

                                                
                                    
x
+
TestGvisorAddon (0s)

                                                
                                                
=== RUN   TestGvisorAddon
gvisor_addon_test.go:34: skipping test because --gvisor=false
--- SKIP: TestGvisorAddon (0.00s)

                                                
                                    
x
+
TestImageBuild/serial/validateImageBuildWithBuildEnv (0s)

                                                
                                                
=== RUN   TestImageBuild/serial/validateImageBuildWithBuildEnv
image_test.go:114: skipping due to https://github.com/kubernetes/minikube/issues/12431
--- SKIP: TestImageBuild/serial/validateImageBuildWithBuildEnv (0.00s)

                                                
                                    
x
+
TestScheduledStopUnix (0s)

                                                
                                                
=== RUN   TestScheduledStopUnix
scheduled_stop_test.go:76: test only runs on unix
--- SKIP: TestScheduledStopUnix (0.00s)

                                                
                                    
x
+
TestSkaffold (0s)

                                                
                                                
=== RUN   TestSkaffold
skaffold_test.go:39: skipping due to https://github.com/kubernetes/minikube/issues/14232
--- SKIP: TestSkaffold (0.00s)

                                                
                                    
x
+
TestNetworkPlugins/group/cilium (14.77s)

                                                
                                                
=== RUN   TestNetworkPlugins/group/cilium
net_test.go:102: Skipping the test as it's interfering with other tests and is outdated
panic.go:626: 
----------------------- debugLogs start: cilium-563400 [pass: true] --------------------------------
>>> netcat: nslookup kubernetes.default:
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> netcat: nslookup debug kubernetes.default a-records:
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> netcat: dig search kubernetes.default:
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> netcat: dig @10.96.0.10 kubernetes.default.svc.cluster.local udp/53:
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> netcat: dig @10.96.0.10 kubernetes.default.svc.cluster.local tcp/53:
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> netcat: nc 10.96.0.10 udp/53:
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> netcat: nc 10.96.0.10 tcp/53:
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> netcat: /etc/nsswitch.conf:
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> netcat: /etc/hosts:
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> netcat: /etc/resolv.conf:
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> host: /etc/nsswitch.conf:
W0308 04:06:02.796012    3668 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: /etc/hosts:
W0308 04:06:03.092464   11684 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: /etc/resolv.conf:
W0308 04:06:03.376657    7572 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> k8s: nodes, services, endpoints, daemon sets, deployments and pods, :
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> host: crictl pods:
W0308 04:06:03.823310    2064 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: crictl containers:
W0308 04:06:04.104928    8824 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> k8s: describe netcat deployment:
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> k8s: describe netcat pod(s):
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> k8s: netcat logs:
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> k8s: describe coredns deployment:
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> k8s: describe coredns pods:
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> k8s: coredns logs:
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> k8s: describe api server pod(s):
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> k8s: api server logs:
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> host: /etc/cni:
W0308 04:06:05.567178    1592 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: ip a s:
W0308 04:06:05.863215   10460 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: ip r s:
W0308 04:06:06.147899    6168 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: iptables-save:
W0308 04:06:06.415127   11788 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: iptables table nat:
W0308 04:06:06.660496    3104 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> k8s: describe cilium daemon set:
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> k8s: describe cilium daemon set pod(s):
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> k8s: cilium daemon set container(s) logs (current):
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> k8s: cilium daemon set container(s) logs (previous):
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> k8s: describe cilium deployment:
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> k8s: describe cilium deployment pod(s):
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> k8s: cilium deployment container(s) logs (current):
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> k8s: cilium deployment container(s) logs (previous):
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> k8s: describe kube-proxy daemon set:
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> k8s: describe kube-proxy pod(s):
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> k8s: kube-proxy logs:
error: context "cilium-563400" does not exist

                                                
                                                

                                                
                                                
>>> host: kubelet daemon status:
W0308 04:06:08.398111    9352 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: kubelet daemon config:
W0308 04:06:08.683872   11836 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> k8s: kubelet logs:
W0308 04:06:08.953455    5872 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: /etc/kubernetes/kubelet.conf:
W0308 04:06:09.234453    9528 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: /var/lib/kubelet/config.yaml:
W0308 04:06:09.490144    1412 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> k8s: kubectl config:
apiVersion: v1
clusters: null
contexts: null
current-context: ""
kind: Config
preferences: {}
users: null

                                                
                                                

                                                
                                                
>>> k8s: cms:
Error in configuration: context was not found for specified context: cilium-563400

                                                
                                                

                                                
                                                
>>> host: docker daemon status:
W0308 04:06:10.022375    6500 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: docker daemon config:
W0308 04:06:10.273462    1132 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: /etc/docker/daemon.json:
W0308 04:06:10.519732   15212 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: docker system info:
W0308 04:06:10.777862    2088 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: cri-docker daemon status:
W0308 04:06:11.032364    8392 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: cri-docker daemon config:
W0308 04:06:11.291746    5728 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: /etc/systemd/system/cri-docker.service.d/10-cni.conf:
W0308 04:06:11.568848    2584 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: /usr/lib/systemd/system/cri-docker.service:
W0308 04:06:11.819792   12776 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: cri-dockerd version:
W0308 04:06:12.071906    4036 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: containerd daemon status:
W0308 04:06:12.323726   11048 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: containerd daemon config:
W0308 04:06:12.548043    8968 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: /lib/systemd/system/containerd.service:
W0308 04:06:12.819464    7188 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: /etc/containerd/config.toml:
W0308 04:06:13.084824   11820 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: containerd config dump:
W0308 04:06:13.341087   11176 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: crio daemon status:
W0308 04:06:13.612232    3840 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: crio daemon config:
W0308 04:06:13.856407    6036 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: /etc/crio:
W0308 04:06:14.123443    4936 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                

                                                
                                                
>>> host: crio config:
W0308 04:06:14.371620    1004 main.go:291] Unable to resolve the current Docker CLI context "default": context "default": context not found: open C:\Users\jenkins.minikube4\.docker\contexts\meta\37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f\meta.json: The system cannot find the path specified.
* Profile "cilium-563400" not found. Run "minikube profile list" to view all profiles.
To start a cluster, run: "minikube start -p cilium-563400"

                                                
                                                
----------------------- debugLogs end: cilium-563400 [took: 13.5768885s] --------------------------------
helpers_test.go:175: Cleaning up "cilium-563400" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p cilium-563400
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p cilium-563400: (1.1868232s)
--- SKIP: TestNetworkPlugins/group/cilium (14.77s)

                                                
                                    
x
+
TestStartStop/group/disable-driver-mounts (1.29s)

                                                
                                                
=== RUN   TestStartStop/group/disable-driver-mounts
=== PAUSE TestStartStop/group/disable-driver-mounts

                                                
                                                

                                                
                                                
=== CONT  TestStartStop/group/disable-driver-mounts
start_stop_delete_test.go:103: skipping TestStartStop/group/disable-driver-mounts - only runs on virtualbox
helpers_test.go:175: Cleaning up "disable-driver-mounts-630400" profile ...
helpers_test.go:178: (dbg) Run:  out/minikube-windows-amd64.exe delete -p disable-driver-mounts-630400
helpers_test.go:178: (dbg) Done: out/minikube-windows-amd64.exe delete -p disable-driver-mounts-630400: (1.2903364s)
--- SKIP: TestStartStop/group/disable-driver-mounts (1.29s)

                                                
                                    
Copied to clipboard