Orka Cluster 3.2 CI/CD Integrations User Guide
How to get started with your preferred CI/CD integration. Learn how to set it up for the first time and how to get help.
Quick navigation
Time to read: 4 minutes, 23 seconds
Jump to: 1. Before you begin | 2. Some Orka CI/CD basics | 3. Pick your CI/CD integration | 4. Create a service account & get a token | 5. Create the template for your permanent or ephemeral agent | 6. Complete the CI/CD setup
The ultimate quick start
If you want to skip the detailed explanations, just run through these steps on your own:
- Review the list of available integrations at Orka Tools & Integrations and choose the one you want to use.
- Create a service account and get a token.
- List the available VMs and images.
- Create an SSH-enabled VM config for your workflow with the API.
- Complete the CI/CD integration setup as per its instructions.
Orka provides many integrations and plugins to set up a CI/CD pipeline with your preferred service provider. You can also build an in-house CI/CD integration with the Orka3 CLI or the Orka3 API. This page focuses on the ready CI/CD solutions for Orka.
The Orka CI/CD integrations will be most useful to:
- users with basic Orka knowledge and basic or advanced knowledge about their preferred CI/CD provider
- users with workflows that require automation
1. Before you begin
- Make sure you can access the account for your cluster in the MacStadium Customer Portal. See Cluster Access Management: Overview.
- Get your VPN connection information from your IP Plan. You can download it from the MacStadium portal.
- Connect to your Orka cluster via VPN. Make sure that your CI/CD integration can reach the cluster via VPN.
- Download and install a VPN client. Note that if you're using a custom Orka domain, you might need to make some additional configuration changes.
- Use the server address and credentials from the VPN section at the top of your IP Plan.
- Install the Orka3 CLI on your system.
2. Some Orka CI/CD basics
- CI/CD integrations must target your Orka API URL. If you are using an Orka domain or an external custom domain, you must ensure that the CI/CD integration can resolve the domain.
What's your Orka API URL?
You can get your Orka API URL from your IP Plan:
- For clusters deployed before Orka 2.1, it's the
.100
address for yourPrivate-1
network (usually,10.221.188.100
), prefixed withhttp
. For example:http://10.221.188.100
.- For clusters deployed with Orka 2.1 or later, it's the
.20
address for yourPrivate-1
network (usually10.221.188.20
). prefixed withhttp
. For example:http://10.221.188.20
.- You can also use
https://<orka-domain>
andhttps://<custom-domain>
(if configured). To get the Orka domain for your Orka cluster, contact MacStadium. To use an external custom domain, see here.Note that you can use
http://<orka-IP>
,https://<orka-domain>
, andhttps://<custom-domain>
interchangeably in your workflows.
- Most CI/CD integrations rely on SSH to connect to the VM where your builds run.
- Most CI/CD integrations provide both permanent and ephemeral build agents.
Glossary: Permanent build agent
A running VM that persists between the iterations of your CI/CD pipeline. This VM is never destroyed, and the CI/CD pipeline reuses it on every run.
Glossary: Ephemeral build agent
A new VM that spins up and lives for the duration of the CI/CD pipeline iteration. After the iteration is complete, the VM is destroyed.
3. Pick your CI/CD integration
Go to Orka Tools & Integrations and review the latest list of available integrations. Pick the one you want to use and navigate to its detailed setup instructions (usually available in the respective repo or official integration page).
4. Create a service account and get a token
Orka clusters now require authentication via Single Sign-On or via service account token.
Service accounts are intended for use with CI/CD integrations. They don't require username/password credentials to log in and let CI/CD integrations bypass the browser login via the Orka3 CLI. The tokens for service accounts also have an extended duration of 1 year.
orka3 sa create <SERVICE_ACCOUNT_NAME>
orka3 sa token <SERVICE_ACCOUNT_NAME>
Grab the token from the response and use it to authenticate the CI/CD integration with the Orka cluster.
These commands create a service account the the orka-default
namespace and obtain a valid token for it. If you need your CI/CD integration to be able to work in additional namespaces, you need to create the service account in the respective namespace or configure the respective role bindings.
5. Create the template for your permanent or ephemeral agent
Important
As the MacStadium team rolls out updates to the existing CI/CD integrations, you might no longer need to work with VM configs to deploy your build agents.
- Check if there are any VM configs on your environment.
orka3 vm-config list
- List the available base images that you can use to create a VM config.
orka3 image list
You will likely see a sonoma-90gb-orka3-arm
item. It is a fully installed and configured Apple Silicon-based macOS Sonoma image with a 90GB disk size. It also has an admin user configured, SSH and Apple Screen Sharing access enabled, and Orka VM Tools installed.
Glossary: Image
A disk image that represents VM storage. Base images are bootable disk images that provide the OS, file system, and storage for your VM configs and VMs.
(Intel-only) Empty images provide added storage or serve as the base image during manual OS installs from ISO.
- Create your first VM config:
Glossary: VM config
A template for an Orka virtual machine. You can deploy multiple VM instances (VMs) from a single VM config.
orka3 vmc create <NAME> --image sonoma-90gb-orka3-arm --cpu 4
Did you know?
Starting with Orka 3.0.0, you can deploy VMs using images from OCI-compatible registries.
So, instead of using the
sonoma-90gb-orka3-arm
image, you can use our latest Sonoma image from GitHub packages.orka3 vmc create <NAME> --image ghcr.io/macstadium/orka-images/sonoma:latest --cpu 4
VM configuration name limitations
The name you specify under
VM Name
must meet the following requirements:
- Does not exceed 50 characters
- Consists of lowercase alphanumeric characters or dashes (-)
- Starts with an alphabetic character and ends with an alphanumeric character
- Must be unique to the cluster
Your CI/CD pipeline will use this SSH-enabled VM config (template) to spin up permanent or ephemeral agents. Every agent is a deployed VM instance of a VM config.
Glossary: VM instance (VM)
A deployed instance of a VM config. VMs take up resources from your nodes and require a certain amount of CPU and RAM to run.
Are you not using the official Sonoma images?
If you're using another image as your starting point or if you are installing your OS from ISO, you will likely not have SSH or Screen Sharing enabled by default (even though the respective ports will be mapped by default). In this case, you need to connect to the VM via VNC. You can then enable SSH and Screen Sharing connectivity in the OS.
6. Complete the CI/CD setup
Revisit the setup instructions for your preferred Orka CI/CD integration. Fill in any configuration fields as needed.
Note that you might need to provide the SSH credentials for the VM.
What are the credentials for my VM config?
By default, the
sonoma-90gb-orka3-arm
image is configured with anadmin/admin
set of credentials.
What's next
You're ready to explore Orka on your own. You might find the following resources helpful:
- If you need to create more VMs and customize them, see Quick Start with the Orka3 CLI and Quick Start with the Orka3 API.
- Explore Orka Docs for more advanced tasks and tutorials.
- Seek help from the Orka community in the MacStadium Community Slack.
- File a support ticket in the MacStadium portal.
- Is a feature missing? Please share your feedback with us by filing a ticket in the Customer Portal.
- If you want to tap into Kubernetes, see this page.
Updated 29 days ago