* Add the ability to define an LXD provider which spins up containers
instead of virtual machines.
* Loading an LXD provider that is not reachable no longer crashes garm
on startup.
* Labels are no longer copied on image import. The LXD provider will
resolve the image fingerprint from the simplestreams server every time.
The image will be copied locally if a new version exists.
163 lines
5.4 KiB
Go
163 lines
5.4 KiB
Go
// Copyright 2022 Cloudbase Solutions SRL
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
// not use this file except in compliance with the License. You may obtain
|
|
// a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
// License for the specific language governing permissions and limitations
|
|
// under the License.
|
|
|
|
package config
|
|
|
|
import (
|
|
"fmt"
|
|
"net/url"
|
|
"os"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type LXDRemoteProtocol string
|
|
type LXDImageType string
|
|
|
|
func (l LXDImageType) String() string {
|
|
return string(l)
|
|
}
|
|
|
|
const (
|
|
SimpleStreams LXDRemoteProtocol = "simplestreams"
|
|
LXDImageVirtualMachine LXDImageType = "virtual-machine"
|
|
LXDImageContainer LXDImageType = "container"
|
|
)
|
|
|
|
// LXDImageRemote holds information about a remote server from which LXD can fetch
|
|
// OS images. Typically this will be a simplestreams server.
|
|
type LXDImageRemote struct {
|
|
Address string `toml:"addr" json:"addr"`
|
|
Public bool `toml:"public" json:"public"`
|
|
Protocol LXDRemoteProtocol `toml:"protocol" json:"protocol"`
|
|
InsecureSkipVerify bool `toml:"skip_verify" json:"skip-verify"`
|
|
}
|
|
|
|
func (l *LXDImageRemote) Validate() error {
|
|
if l.Protocol != SimpleStreams {
|
|
// Only supports simplestreams for now.
|
|
return fmt.Errorf("invalid remote protocol %s. Supported protocols: %s", l.Protocol, SimpleStreams)
|
|
}
|
|
if l.Address == "" {
|
|
return fmt.Errorf("missing address")
|
|
}
|
|
|
|
url, err := url.ParseRequestURI(l.Address)
|
|
if err != nil {
|
|
return errors.Wrap(err, "validating address")
|
|
}
|
|
|
|
if url.Scheme != "http" && url.Scheme != "https" {
|
|
return fmt.Errorf("address must be http or https")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// LXD holds connection information for an LXD cluster.
|
|
type LXD struct {
|
|
// UnixSocket is the path on disk to the LXD unix socket. If defined,
|
|
// this is prefered over connecting via HTTPs.
|
|
UnixSocket string `toml:"unix_socket_path" json:"unix-socket-path"`
|
|
|
|
// Project name is the name of the project in which this runner will create
|
|
// instances. If this option is not set, the default project will be used.
|
|
// The project used here, must have all required profiles created by you
|
|
// beforehand. For LXD, the "flavor" used in the runner definition for a pool
|
|
// equates to a profile in the desired project.
|
|
ProjectName string `toml:"project_name" json:"project-name"`
|
|
|
|
// IncludeDefaultProfile specifies whether or not this provider will always add
|
|
// the "default" profile to any newly created instance.
|
|
IncludeDefaultProfile bool `toml:"include_default_profile" json:"include-default-profile"`
|
|
|
|
// URL holds the URL of the remote LXD server.
|
|
// example: https://10.10.10.1:8443/
|
|
URL string `toml:"url" json:"url"`
|
|
// ClientCertificate is the x509 client certificate path used for authentication.
|
|
ClientCertificate string `toml:"client_certificate" json:"client_certificate"`
|
|
// ClientKey is the key used for client certificate authentication.
|
|
ClientKey string `toml:"client_key" json:"client-key"`
|
|
// TLS certificate of the remote server. If not specified, the system CA is used.
|
|
TLSServerCert string `toml:"tls_server_certificate" json:"tls-server-certificate"`
|
|
// TLSCA is the TLS CA certificate when running LXD in PKI mode.
|
|
TLSCA string `toml:"tls_ca" json:"tls-ca"`
|
|
|
|
// ImageRemotes is a map to a set of remote image repositories we can use to
|
|
// download images.
|
|
ImageRemotes map[string]LXDImageRemote `toml:"image_remotes" json:"image-remotes"`
|
|
|
|
// SecureBoot enables secure boot for VMs spun up using this provider.
|
|
SecureBoot bool `toml:"secure_boot" json:"secure-boot"`
|
|
|
|
// InstanceType allows you to choose between a virtual machine and a container
|
|
InstanceType LXDImageType `toml:"instance_type" json:"instance-type"`
|
|
}
|
|
|
|
func (l *LXD) GetInstanceType() LXDImageType {
|
|
switch l.InstanceType {
|
|
case LXDImageVirtualMachine, LXDImageContainer:
|
|
return l.InstanceType
|
|
default:
|
|
return LXDImageVirtualMachine
|
|
}
|
|
}
|
|
|
|
func (l *LXD) Validate() error {
|
|
if l.UnixSocket != "" {
|
|
if _, err := os.Stat(l.UnixSocket); err != nil {
|
|
return fmt.Errorf("could not access unix socket %s: %q", l.UnixSocket, err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
if l.URL == "" {
|
|
return fmt.Errorf("unix_socket or address must be specified")
|
|
}
|
|
|
|
url, err := url.ParseRequestURI(l.URL)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid LXD URL")
|
|
}
|
|
|
|
if url.Scheme != "https" {
|
|
return fmt.Errorf("address must be https")
|
|
}
|
|
|
|
if l.ClientCertificate == "" || l.ClientKey == "" {
|
|
return fmt.Errorf("client_certificate and client_key are mandatory")
|
|
}
|
|
|
|
if _, err := os.Stat(l.ClientCertificate); err != nil {
|
|
return fmt.Errorf("failed to access client certificate %s: %q", l.ClientCertificate, err)
|
|
}
|
|
|
|
if _, err := os.Stat(l.ClientKey); err != nil {
|
|
return fmt.Errorf("failed to access client key %s: %q", l.ClientKey, err)
|
|
}
|
|
|
|
if l.TLSServerCert != "" {
|
|
if _, err := os.Stat(l.TLSServerCert); err != nil {
|
|
return fmt.Errorf("failed to access tls_server_certificate %s: %q", l.TLSServerCert, err)
|
|
}
|
|
}
|
|
|
|
for name, val := range l.ImageRemotes {
|
|
if err := val.Validate(); err != nil {
|
|
return fmt.Errorf("remote %s is invalid: %s", name, err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|