Kargo replaces traditional hypervisors with a cloud-native container and virtualization platform. Kargo works seamlessly in on-prem, cloud, and local environments, leveraging Kubernetes to create a robust and scalable platform for modern compute and platform as a service use cases.
Join Kargo users and contributors in the ContainerCraft Community Discord!
Note: Kargo is in early development. Checkout @usrbinkat's inaugural Twitter/X Thread to see how it all started.
Try Kargo with just a browser to get started with GitHub Codespaces following the steps below.
Ensure you have the following tools and accounts:
Check out the video to see Kargo deploy for yourself, or try it in your browser with the steps below.
Log in to GitHub.
Launch Kargo in GitHub Codespaces:
Code
button above to start a new Codespace.main
konductor
Open the VSCode Integrated Terminal:
[ Ctrl +
]` to open the terminal.Authenticate Credentials
Login to Pulumi Cloud and other services.
task login
Configure the Pulumi IaC Stack parameters.
# confirm Pulumi stack
export ORGANIZATION="${GITHUB_USER:-${GITHUB_REPOSITORY_OWNER:-}}"
export DEPLOYMENT="${RepositoryName:-}"
task configure
Deploy Kubernetes using Talos.
task kubernetes
Deploy the Kubevirt PaaS IaC to Kubernetes.
task deploy
Deploy an Ubuntu Virtual Machine on the platform using Kubevirt.
Note: Run this step manually via integrated terminal.
# Purge old known host fingerprints
task ssh-clean
# Enable the VM instance
pulumi config set --path vm.enabled true
# Deploy the Kubevirt VM instance
pulumi up --skip-preview --refresh=false
Access the VM via SSH using a Kubernetes NodePort service.
ssh -p 30590 -i ~/.ssh/id_rsa -o StrictHostKeyChecking=no kc2@localhost screenfetch
Use virtctl
to access the VM via SSH without a NodePort service.
# SSH using virtctl
virtctl ssh kc2@ubuntu
Use virtctl
to access the serial console of the VM.
# Serial console access
virtctl console ubuntu
Tip: To exit the serial console, press
Ctrl + ]
or close the terminal.
Clean up all Kubernetes and Pulumi resources.
task clean-all
Kargo thrives on community contributions. Learn how to get involved by reading our CONTRIBUTING.md.
Use our GitHub Actions integration and the act
tool to test CI pipelines locally before pushing your changes.
To test Kargo CI locally:
task act
For more discussion, support, and contribution, join our ContainerCraft Community Discord Kargo Channel.
For more information, explore the Kargo Project FAQ.