1
0
mirror of https://github.com/openfaas/faasd.git synced 2025-07-10 15:33:39 +00:00

Migrate to containerd v1.7.0 and update dependencies

* Updates containerd to v1.7.0 and new binary for 32-bit
Arm OSes.
* Updates Go dependencies - openfaas and external

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
This commit is contained in:
Alex Ellis (OpenFaaS Ltd)
2023-03-19 10:55:53 +00:00
committed by Alex Ellis
parent 9efd019e86
commit c41c2cd9fc
1133 changed files with 104391 additions and 75499 deletions
Makefile
cmd
docs
go.modgo.sum
hack
vendor
github.com
AdaLogics
AdamKorcz
go-118-fuzz-build
Microsoft
go-winio
hcsshim
.gitattributes.gitignore.golangci.ymlMakefileProtobuild.tomlREADME.mdSECURITY.md
computestorage
container.goerrors.gofunctional_tests.ps1hcsshim.gohnsendpoint.gohnsglobals.gohnsnetwork.gohnspolicylist.gohnssupport.gointerface.go
internal
layer.go
osversion
pkg
process.gotools.gozsyscall_windows.go
cespare
containerd
containerd
.cirrus.yml.golangci.yml.mailmap.zuul.yamlADOPTERS.mdBUILDING.mdMakefileMakefile.linuxProtobuild.tomlREADME.mdRELEASES.mdROADMAP.mdSCOPE.mdVagrantfile
api
archive
cio
client.goclient_opts.gocontainer.gocontainer_checkpoint_opts.gocontainer_opts.gocontainer_opts_unix.gocontainer_restore_opts.gocontainerd.service
containers
containerstore.go
content
defaults
diff.go
diff
events.go
events
filters
image.goimage_store.go
images
import.goinstall.go
labels
leases
log
mount
namespaces.go
namespaces
oci
oss_fuzz.go
pkg
platforms
plugin
process.go
protobuf
pull.go
reference
remotes
rootfs
runtime
sandbox.go
sandbox
services.go
services
snapshots
snapshotter_default_unix.gosnapshotter_opts_unix.gosnapshotter_opts_windows.go
sys
task.gotask_opts.gotask_opts_unix.go
tracing
transfer.gounpacker.go
version
continuity
fifo
go-cni
ttrpc
typeurl
containernetworking
cni
pkg
invoke
cyphar
docker
cli
docker-credential-helpers
docker
go-logr
gogo
golang
google
imdario
inconshreveable
klauspost
mattn
mitchellh
moby
opencontainers
openfaas
faas-provider
prometheus
spf13
vishvananda
go.opencensus.io
go.opentelemetry.io
golang.org
x
mod
net
context
ctxhttp
sys
execabs
unix
ioctl.goioctl_zos.goptrace_darwin.goptrace_ios.gosyscall_aix.gosyscall_bsd.gosyscall_darwin.gosyscall_darwin_amd64.gosyscall_darwin_arm64.gosyscall_dragonfly.gosyscall_freebsd.gosyscall_freebsd_386.gosyscall_freebsd_amd64.gosyscall_freebsd_arm.gosyscall_freebsd_arm64.gosyscall_freebsd_riscv64.gosyscall_hurd.gosyscall_linux.gosyscall_netbsd.gosyscall_openbsd.gosyscall_solaris.gosyscall_zos_s390x.gozerrors_linux.gozptrace_armnn_linux.gozptrace_linux_arm64.gozptrace_mipsnn_linux.gozptrace_mipsnnle_linux.gozptrace_x86_linux.gozsyscall_aix_ppc.gozsyscall_aix_ppc64.gozsyscall_aix_ppc64_gc.gozsyscall_aix_ppc64_gccgo.gozsyscall_darwin_amd64.gozsyscall_darwin_arm64.gozsyscall_dragonfly_amd64.gozsyscall_freebsd_386.gozsyscall_freebsd_amd64.gozsyscall_freebsd_arm.gozsyscall_freebsd_arm64.gozsyscall_freebsd_riscv64.gozsyscall_linux.gozsyscall_netbsd_386.gozsyscall_netbsd_amd64.gozsyscall_netbsd_arm.gozsyscall_netbsd_arm64.gozsyscall_openbsd_386.gozsyscall_openbsd_amd64.gozsyscall_openbsd_arm.gozsyscall_openbsd_arm64.gozsyscall_openbsd_mips64.gozsyscall_openbsd_ppc64.gozsyscall_openbsd_riscv64.gozsyscall_solaris_amd64.gozsyscall_zos_s390x.goztypes_freebsd_386.goztypes_freebsd_amd64.goztypes_freebsd_arm.goztypes_freebsd_arm64.goztypes_freebsd_riscv64.goztypes_linux.goztypes_linux_386.goztypes_linux_amd64.goztypes_linux_arm.goztypes_linux_arm64.goztypes_linux_loong64.goztypes_linux_mips.goztypes_linux_mips64.goztypes_linux_mips64le.goztypes_linux_mipsle.goztypes_linux_ppc.goztypes_linux_ppc64.goztypes_linux_ppc64le.goztypes_linux_riscv64.goztypes_linux_s390x.goztypes_linux_sparc64.go
windows
text
unicode
tools
google.golang.org
genproto
googleapis
protobuf
field_mask
grpc
protobuf
modules.txt

@ -0,0 +1,45 @@
//go:build !windows
// +build !windows
package sequential
import "os"
// Create creates the named file with mode 0666 (before umask), truncating
// it if it already exists. If successful, methods on the returned
// File can be used for I/O; the associated file descriptor has mode
// O_RDWR.
// If there is an error, it will be of type *PathError.
func Create(name string) (*os.File, error) {
return os.Create(name)
}
// Open opens the named file for reading. If successful, methods on
// the returned file can be used for reading; the associated file
// descriptor has mode O_RDONLY.
// If there is an error, it will be of type *PathError.
func Open(name string) (*os.File, error) {
return os.Open(name)
}
// OpenFile is the generalized open call; most users will use Open
// or Create instead. It opens the named file with specified flag
// (O_RDONLY etc.) and perm, (0666 etc.) if applicable. If successful,
// methods on the returned File can be used for I/O.
// If there is an error, it will be of type *PathError.
func OpenFile(name string, flag int, perm os.FileMode) (*os.File, error) {
return os.OpenFile(name, flag, perm)
}
// CreateTemp creates a new temporary file in the directory dir
// with a name beginning with prefix, opens the file for reading
// and writing, and returns the resulting *os.File.
// If dir is the empty string, TempFile uses the default directory
// for temporary files (see os.TempDir).
// Multiple programs calling TempFile simultaneously
// will not choose the same file. The caller can use f.Name()
// to find the pathname of the file. It is the caller's responsibility
// to remove the file when no longer needed.
func CreateTemp(dir, prefix string) (f *os.File, err error) {
return os.CreateTemp(dir, prefix)
}