With Go installed on your system, run the following command:
go install github.com/edgelesssys/uplosi@latest
Alternatively, you can download the binary from the releases page.
The main purpose of uplosi is to upload OS images to cloud providers. Uploading images requires a configuration file to be present in the current working directory.
uplosi upload <image> [flags]
# edit uplosi.conf, then run
uplosi upload image.raw -i
--disable-variant-glob
string: list of variant name globs to disable--enable-variant-glob
string: list of variant name globs to enable-h
,--help
: help for uplosi-i
,--increment-version
: increment version number after upload-v
: version for uplosi
Uplosi requires configuration files in TOML format to be present in the user's workspace (CWD). Namely, the following files are read:
uplosi.conf
— the main configuration file, read firstuplosi.conf.d/*.conf
— (optional) additional configuration files, read in alphabetical order
Any settings specified in the additional configuration files will override the settings specified in the main configuration file. The configuration has the following structure:
[base]
# Base configuration that is applied to every variant.
[variant.<name>] # e.g. variant.default
# Variant specific configuration that overrides the base configuration.
[base]
imageVersion = "1.2.3"
name = "my-image"
[base.aws]
# AWS specific configuration that is applied to every variant.
region = "eu-central-1"
replicationRegions = ["us-east-2", "ap-south-1"]
bucket = "my-bucket"
publish = true
[base.azure]
# Azure specific configuration that is applied to every variant.
subscriptionID = "00000000-0000-0000-0000-000000000000"
location = "northeurope"
resourceGroup = "my-rg"
sharedImageGallery = "my_gallery"
sharingNamePrefix = "myshared"
[base.gcp]
# GCP specific configuration that is applied to every variant.
project = "myproject-123456"
location = "europe-west3"
bucket = "my-bucket"
[base.openstack]
# OpenStack specific configuration that is applied to every variant.
cloud = "mycloud"
tags = ["tag-a", "tag-b"]
minDiskGB = 32
[variant.foo]
# Variant specific configuration that overrides the base configuration.
provider = "aws"
imageVersionFile = "foo-version.txt" # overrides base.imageVersion
[variant.foo.aws]
# Variant specific configuration that overrides the base.aws configuration.
replicationRegions = []
publish = false
[variant.bar]
# Variant specific configuration that overrides the base configuration.
provider = "azure"
[variant.bar.azure]
# Variant specific configuration that overrides the base.azure configuration.
resourceGroup = "my-rg-bar" # overrides base.azure.resourceGroup
The following settings are supported:
- Default: none
- Required: yes
The cloud provider to upload the image to: aws
, azure
or gcp
.
- Default:
"0.0.0"
- Required: no
A version string with the format <major>.<minor>.<patch>
, e.g. 1.0.0
.
This version string can be used as a template parameter {{.Version}}
in all template strings.
Additionally, the individual version components can be accessed via {{.VersionMajor}}
, {{.VersionMinor}}
and {{.VersionPatch}}
.
- Default: none
- Required: no
A file to read the image version from. The file must contain a single line with the image version string.
If set, the file contents will overwrite the imageVersion
setting.
When using the -i
/ --increment-version
command line option, the version will be incremented after uploading and written back to the file.
- Default: none
- Required: yes
The name of the image to upload. This name can be used as a template parameter {{.Name}}
in all template strings.
- Default: none
- Required: yes
The primary AWS region to upload the ami to. Example: eu-central-1
.
This region is used for the S3 bucket, EBS snapshot and the primary AMI.
Subsequent AMIs are copied to all other regions specified in replicationRegions
.
- Default:
[]
- Required: no
Additional AWS regions that the ami will be replicated in. Example: ["us-east-2", "ap-south-1"]
.
- Default:
"{{.Name}}-{{.Version}}"
- Required: no
- Template: yes
The name of the AMI.
- Default:
"{{.Name}}-{{.Version}}"
- Required: no
- Template: yes
The description of the AMI.
- Default: none
- Required: yes
- Template: yes
The bucket to upload the image to during the upload process.
- Default: none (defaults to
us-east-1
) - Required: no
- Template: no
The region where the buckets exist or should be created.
- Default:
"{{.Name}}-{{.Version}}.raw"
- Required: no
- Template: yes
Name of temporary blob within bucket
. Image is uploaded to this blob before being converted to an AMI.
- Default:
"{{.Name}}-{{.Version}}"
- Required: no
- Template: yes
Name of the EBS snapshot that is the backing store for the AMI.
- Default:
false
- Required: no
If set, the AMI will be published (made publicly available) after uploading.
- Default: none
- Required: yes
Id of the Azure subscription to upload the image to. Use az account subscription list
to list all available subscriptions.
- Default: none
- Required: yes
The primary Azure region to upload the image to. Example: northeurope
.
This region is used for the resource group, disk and gallery.
Subsequent images are replicated to all other regions specified in replicationRegions
.
- Default:
[]
- Required: no
Additional Azure regions that the image will be replicated in. Example: ["northeurope", "eastus2"]
.
- Default: none
- Required: yes
- Template: yes
The resource group to create the image and any additional resources in.
Will be created if it does not exist. Example: "my-rg"
.
- Default:
"azure-sev-snp"
- Required: no
- Template: yes
The attestation variant to use. One of azure-tdx
, azure-sev-snp
, azure-trustedlaunch
.
Used to determine the security type of the image.
- Default: none
- Required: yes
- Template: yes
Name of the shared image gallery to upload the image to. Example: "my_gallery"
.
Will be created if it does not exist.
- Default:
"community"
- Required: no
- Template: yes
Sharing profile to use for the gallery image. One of community
, groups
, private
.
Community images are publicly available, group images are available to a specific group of users, private images are only available to the owner.
- Default: none
- Required: if
sharingProfile
iscommunity
orgroups
- Template: yes
Prefix for the shared image name. Example: "my-image"
.
The full name will contain the prefix with a random suffix.
- Default:
"{{.Name}}"
- Required: no
- Template: yes
Name of the image definition within the shared image gallery.
- Default:
"Linux"
- Required: no
- Template: yes
The name of a group of related images created by a publisher. Examples: "UbuntuServer"
, "FedoraServer"
.
- Default:
"{{.Name}}-{{.VersionMajor}}"
- Required: no
- Template: yes
An instance of an offer, such as a major release of a distribution. Example: "18.04-LTS"
.
- Default:
"Contoso"
- Required: no
- Template: yes
The organization that created the image. Example: "Edgeless Systems"
.
- Default:
"{{.Name}}-{{.Version}}"
- Required: no
- Template: yes
Name of the temporary disk. Image is uploaded to this disk before being converted to an image.
- Default:
[]
- Required: no
Additional Secure Boot UEFI certificates can be added to the image to perform Trusted Launch with images that contain boot components which have been signed using a custom key. The certificates will be bound as UEFI db keys to an Image Version. The values have to be specified as single-line base64-encoded DER certificates. Example: ["MIIC0DCCAbigAwIBAgIUI7..."]
.
- Default: none
- Required: yes
Name of the GCP project to upload the image to. Example: "my-project"
.
Can be retrieved with gcloud config get-value project
.
- Default: none
- Required: yes
Location of the GCP project to create resources in. Example: "europe-west3"
.
Images will be accessible globally, regardless of the location setting.
- Default:
"{{.Name}}-{{replaceAll .Version \".\" \"-\"}}"
- Required: no
- Template: yes
Name of the image to create. Example: "my-image-1-0-0"
.
- Default:
"{{.Name}}"
- Required: no
- Template: yes
Family that the image belongs to. Example: "my-image"
.
- Default: none
- Required: yes
- Template: yes
Name of the GCS bucket to upload the image to temporarily. Example: "my-bucket"
.
Will be created if it does not exist.
- Default:
"{{.Name}}-{{.Version}}.tar.gz"
- Required: no
- Template: yes
Name of the temporary blob within bucket
. Image is uploaded to this blob before being converted to an image.
- Default: none
- Required: yes
Name in OpenStack's cloud.yaml used for authentication.
- Default:
"{{.Name}}-{{.Version}}"
- Required: no
- Template: yes
Name of the image to create. Example: "my-image-1.0.0"
.
- Default:
"public"
- Required: no
Visibility of the image to create. Possible values are "public", "private", "shared", "community"`.
base.openstack.hidden
/ variant.<name>.openstack.hidden
- Default:
false
- Required: no
Hidden status of the image in listings.
- Default:
[]
- Required: no
Tags added to the image.
- Default:
0
- Required: no
Minimum disk size of the image in GB.
- Default:
0
- Required: no
Minimum amount of RAM reserved for a VM created from this image.
- Default:
false
- Required: no
If set, prevents accidential deletion of the image.
- Default:
{}
- Required: no
Extra key-value pairs attached to the image. Example: {"hw_firmware_type" = "uefi", "os_type" = "linux"}
.
Warning
This command is highly experimental. It does not account for all PCRs and all possibilities of their measurements, is only tested in a very specific environment and should not be used in production use-cases.
Uplosi can also, from a given raw disk image, calculate TPM PCR values (Namely PCRs 4, 9, and 11)
ahead of the image boot to allow to craft remote attestation policies for images.
It requires systemd-dissect
to be present in $PATH
.
sudo uplosi measurements <image> [flags]
sudo uplosi measurements image.raw --output-file pcrs.json
--output-file
string: path to a JSON file the output should be written to--uki-path
string: path to the unified kernel image (UKI) within the ESP of the image (default:/boot/EFI/BOOT/BOOTX64.EFI
)-h
,--help
: help for uplosi-v
: version for uplosi