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:
parent
edc45fde72
commit
19edaca01a
213 changed files with 4113 additions and 3823 deletions
6
vendor/github.com/vmware/govmomi/govc/vm/guest/ps.go
generated
vendored
6
vendor/github.com/vmware/govmomi/govc/vm/guest/ps.go
generated
vendored
|
|
@ -1,11 +1,11 @@
|
|||
/*
|
||||
Copyright (c) 2014-2017 VMware, Inc. All Rights Reserved.
|
||||
Copyright (c) 2014-2023 VMware, Inc. All Rights Reserved.
|
||||
|
||||
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
|
||||
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,
|
||||
|
|
@ -159,7 +159,7 @@ func (cmd *ps) Run(ctx context.Context, f *flag.FlagSet) error {
|
|||
|
||||
type psResult struct {
|
||||
cmd *ps
|
||||
ProcessInfo []types.GuestProcessInfo
|
||||
ProcessInfo []types.GuestProcessInfo `json:"processInfo"`
|
||||
}
|
||||
|
||||
func (r *psResult) Write(w io.Writer) error {
|
||||
|
|
|
|||
6
vendor/github.com/vmware/govmomi/govc/vm/info.go
generated
vendored
6
vendor/github.com/vmware/govmomi/govc/vm/info.go
generated
vendored
|
|
@ -1,11 +1,11 @@
|
|||
/*
|
||||
Copyright (c) 2014-2015 VMware, Inc. All Rights Reserved.
|
||||
Copyright (c) 2014-2023 VMware, Inc. All Rights Reserved.
|
||||
|
||||
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
|
||||
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,
|
||||
|
|
@ -175,7 +175,7 @@ func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
|
|||
}
|
||||
|
||||
type infoResult struct {
|
||||
VirtualMachines []mo.VirtualMachine
|
||||
VirtualMachines []mo.VirtualMachine `json:"virtualMachines"`
|
||||
objects []*object.VirtualMachine
|
||||
entities map[types.ManagedObjectReference]string
|
||||
cmd *info
|
||||
|
|
|
|||
8
vendor/github.com/vmware/govmomi/govc/vm/ip.go
generated
vendored
8
vendor/github.com/vmware/govmomi/govc/vm/ip.go
generated
vendored
|
|
@ -1,11 +1,11 @@
|
|||
/*
|
||||
Copyright (c) 2014-2015 VMware, Inc. All Rights Reserved.
|
||||
Copyright (c) 2014-2023 VMware, Inc. All Rights Reserved.
|
||||
|
||||
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
|
||||
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,
|
||||
|
|
@ -68,7 +68,7 @@ func (cmd *ip) Description() string {
|
|||
By default the vm.ip command depends on vmware-tools to report the 'guest.ipAddress' field and will
|
||||
wait until it has done so. This value can also be obtained using:
|
||||
|
||||
govc vm.info -json $vm | jq -r .VirtualMachines[].Guest.IpAddress
|
||||
govc vm.info -json $vm | jq -r .virtualMachines[].guest.ipAddress
|
||||
|
||||
When given the '-a' flag, only IP addresses for which there is a corresponding virtual nic are listed.
|
||||
If there are multiple nics, the listed addresses will be comma delimited. The '-a' flag depends on
|
||||
|
|
@ -78,7 +78,7 @@ by tools for which there is no virtual nic are not included, for example that of
|
|||
|
||||
These values can also be obtained using:
|
||||
|
||||
govc vm.info -json $vm | jq -r .VirtualMachines[].Guest.Net[].IpConfig.IpAddress[].IpAddress
|
||||
govc vm.info -json $vm | jq -r .virtualMachines[].guest.net[].ipConfig.ipAddress[].ipAddress
|
||||
|
||||
When given the '-n' flag, filters '-a' behavior to the nic specified by MAC address or device name.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue