Master & Worker Nodes Provisioning

Hello guys.

I am new to Kubernetes. I am trying to follow the “Kubernetes the Hard Way” video as stipulated on the CKA Certification Course - Certified Kubernetes Administrator. I am following the instruction to provision some worker nodes and master nodes for a cluster on a Virtual Machine using Vagrant.

I have clone the vagrant directory as mentioned on the course. I am now trying to un the “vagrant up” command to create the necessary master and worker nodes on the VM. However this is failing due to the following Error:

C:\Projects\kubernetes-the-hard-way\vagrant>vagrant init ubuntu/jammy64
Vagrantfile already exists in this directory. Remove it before
running vagrant init.

C:\Projects\kubernetes-the-hard-way\vagrant>vagrant up
Bringing machine ‘master-1’ up with ‘virtualbox’ provider…
Bringing machine ‘master-2’ up with ‘virtualbox’ provider…
Bringing machine ‘loadbalancer’ up with ‘virtualbox’ provider…
Bringing machine ‘worker-1’ up with ‘virtualbox’ provider…
Bringing machine ‘worker-2’ up with ‘virtualbox’ provider…
==> master-1: Box ‘ubuntu/jammy64’ could not be found. Attempting to find and install…
master-1: Box Provider: virtualbox
master-1: Box Version: >= 0
The box ‘ubuntu/jammy64’ could not be found or
could not be accessed in the remote catalog. If this is a private
box on HashiCorp’s Vagrant Cloud, please verify you’re logged in via
vagrant login. Also, please double-check the name. The expanded
URL and error message are shown below:

URL: [“https://vagrantcloud.com/ubuntu/jammy64”]
Error: schannel: next InitializeSecurityContext failed: Unknown error (0x80092012) - The revocation function was unable to check revocation for the certificate.

I am not sure what could be wrong. Can anyone who knows the sequence steps please assist

HI @molefi.tshesebe

Which provider did you use for vagrant HyperV or VirtualBox ?? ubuntu/jammy64 work only with virtualbox

Regard