Skip to content

A GitHub Action to install & configure LXD on a runner.

Notifications You must be signed in to change notification settings

canonical/setup-lxd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 

Repository files navigation

setup-lxd

NB: this action is currently in alpha, breaking changes can occur at any time. Please pin a SHA or exact version in your CI.

A GitHub Action which installs and configures the LXD snap on a runner.

When run with no inputs:

uses: canonical/setup-lxd@main

this action will install or refresh the LXD snap using the latest/candidate channel.

You can specify a different group membership required to access LXD:

uses: canonical/setup-lxd@main
with:
  group: lxd

and then users of that group will have full control over LXD.

You can specify a snap channel with the channel input:

uses: canonical/setup-lxd@main
with:
  channel: 5.21/stable

and then this action will install/refresh LXD from the specified channel.

Example usage

name: "Install latest LXD"
on: push
jobs:
  job1:
    runs-on: ubuntu-latest
    steps:

    - name: Setup LXD
      uses: canonical/setup-lxd@[version]
      with:
        channel: latest/edge

    - name: Launch container
      run: |
        lxc launch ubuntu:24.04 u1

Maintainers