1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2014-2021 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package image
import (
"github.com/snapcore/snapd/asserts"
"github.com/snapcore/snapd/seed/seedwriter"
)
type Options struct {
ModelFile string
Classic bool
// Preseed requests the image to be preseeded (only for UC20)
Preseed bool
// PreseedSignKey is the name of the key to use for signing preseed
// assertion (empty means the default key).
PreseedSignKey string
// AppArmor kernel features directory to bind-mount when preseeding.
// If empty then the features from /sys/kernel/security/apparmor will be used.
// (only for UC20)
AppArmorKernelFeaturesDir string
// SysfsOverlay is the optional sysfs overlay to be used for
// preseeding.
// Directories from /sys/class/* and /sys/devices/platform
// will be bind-mounted to the chroot when preseeding.
SysfsOverlay string
Channel string
// TODO: use OptionsSnap directly here?
Snaps []string
Components []string
SnapChannels map[string]string
// SeedManifest is a pre-provided seed manifest, to allow for
// creating reproducible seeds. If provided, the snap revisions and
// validation-sets specified in the seed manifest will be used to
// (re-)create the image seed.
SeedManifest *seedwriter.Manifest
// SeedManifestPath if set, specifies the file path where the
// seed.manifest file should be written.
SeedManifestPath string
// WideCohortKey can be used to supply a cohort covering all
// the snaps in the image, there is no generally suppported API
// to create such a cohort key.
WideCohortKey string
PrepareDir string
// Architecture to use if none is specified by the model,
// useful only for classic mode. If set must match the model otherwise.
Architecture string
// AllowSnapdKernelMismatch if set, will allow building images with a snap/kernel
// combination that would otherwise be unsupported.
AllowSnapdKernelMismatch bool
Customizations Customizations
// Assertion files to inject into the built image
// The first field is for filenames passed as input, the second one
// for the validated assertions that the Writer and Fetcher will use
ExtraAssertionsFiles []string
ExtraAssertions []asserts.Assertion
}
// Customizatons defines possible image customizations. Not all of
// them applies to all kind of systems.
type Customizations struct {
// ConsoleConf can be set to "disabled" to disable console-conf
// forcefully (UC16/18 only ATM).
ConsoleConf string `json:"console-conf"`
// CloudInitUserData can optionally point to cloud init user-data
// (UC16/18 only)
CloudInitUserData string `json:"cloud-init-user-data"`
// BootFlags can be set to a list of boot flags
// to set in the recovery bootloader (UC20 only).
// Currently only the "factory" hint flag is supported.
BootFlags []string `json:"boot-flags"`
// Validation controls whether validations should be taken
// into account by the store to select snap revisions.
// It can be set to "enforce" or "ignore".
Validation string `json:"validation"`
}
|