generated from cybozu-go/neco-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_vmxenabled.go
53 lines (50 loc) · 1.21 KB
/
config_vmxenabled.go
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
package necogcp
import "github.com/cybozu-go/neco-gcp/pkg/setup"
// The base image of the VMXEnabled image.
// This setting is used by both "necogcp create-image" and "necogcp neco-test create-image".
const (
VMXEnabledBaseImageProject = "ubuntu-os-cloud"
VMXEnabledBaseImage = "ubuntu-2204-jammy-v20240701"
)
// The settings of software which installed in the VMXEnabled image.
// This setting is used by both "necogcp create-image" and "necogcp neco-test create-image".
var VMXEnabledArtifacts = setup.ArtifactSet{
GoVersion: "1.23.2",
EtcdVersion: "3.5.17",
PlacematVersion: "2.4.7",
CoreOSVersion: "3975.2.2",
CtVersion: "0.9.3", //If upgrading a version, make sure the binary is included in the GitHub release
DebPackages: []string{
"git",
"build-essential",
"less",
"wget",
"systemd-container",
"lldpd",
"qemu",
"qemu-kvm",
"socat",
"picocom",
"swtpm",
"cloud-utils",
"bird2",
"squid",
"chrony",
"dnsmasq",
"xauth",
"bash-completion",
"dbus",
"jq",
"libgpgme11",
"freeipmi-tools",
"unzip",
"skopeo",
// required by building neco
"fakeroot",
// docker CE
"docker-ce",
"docker-ce-cli",
"docker-buildx-plugin",
"containerd.io",
},
}