go.mod: update images to 0.11

Mainly to include:

- distro/rhel9: Make /boot 600 MiB big on RHEL 9.3+
- fedora: exclude sdubby
- Minimal image builds

Signed-off-by: Ondřej Budai <ondrej@budai.cz>
This commit is contained in:
Ondřej Budai 2023-10-06 10:00:29 +02:00 committed by Ondřej Budai
parent edc45fde72
commit 19edaca01a
213 changed files with 4113 additions and 3823 deletions

View file

@ -5,9 +5,18 @@ type Azure struct {
}
func (p *Azure) GetPackages() []string {
return []string{"WALinuxAgent"}
return []string{
"cloud-init",
"WALinuxAgent",
}
}
func (p *Azure) GetServices() []string {
return []string{"waagent"}
return []string{
"cloud-init.service",
"cloud-config.service",
"cloud-final.service",
"cloud-init-local.service",
"waagent",
}
}

View file

@ -9,5 +9,10 @@ func (p *EC2) GetPackages() []string {
}
func (p *EC2) GetServices() []string {
return []string{"cloud-init.service"}
return []string{
"cloud-init.service",
"cloud-config.service",
"cloud-final.service",
"cloud-init-local.service",
}
}

View file

@ -0,0 +1,21 @@
package environment
type KVM struct {
BaseEnvironment
}
func (e *KVM) GetPackages() []string {
return []string{
"cloud-init",
"qemu-guest-agent",
}
}
func (e *KVM) GetServices() []string {
return []string{
"cloud-init.service",
"cloud-config.service",
"cloud-final.service",
"cloud-init-local.service",
}
}