chore: update Go to 1.24, update pkgs

Also pull in usrmerged tools, so remove older hacks. Add a fixed enumer fork with Go 1.24 compatibility.

Signed-off-by: Dmitrii Sharshakov <dmitry.sharshakov@siderolabs.com>
This commit is contained in:
Dmitry Sharshakov 2025-02-14 18:29:55 +01:00 committed by Dmitrii Sharshakov
parent 7f1dd26697
commit 46d67fe446
No known key found for this signature in database
GPG Key ID: 9866BBFAF691F3AF
45 changed files with 226 additions and 255 deletions

View File

@ -222,7 +222,7 @@ ARG STRINGER_VERSION
RUN --mount=type=cache,target=/.cache go install golang.org/x/tools/cmd/stringer@${STRINGER_VERSION} \
&& mv /root/go/bin/stringer /usr/bin/stringer
ARG ENUMER_VERSION
RUN --mount=type=cache,target=/.cache go install github.com/dmarkham/enumer@${ENUMER_VERSION} \
RUN --mount=type=cache,target=/.cache go install github.com/dsseng/enumer@${ENUMER_VERSION} \
&& mv /root/go/bin/enumer /usr/bin/enumer
ARG DEEPCOPY_GEN_VERSION
RUN --mount=type=cache,target=/.cache go install k8s.io/code-generator/cmd/deepcopy-gen@${DEEPCOPY_GEN_VERSION} \
@ -712,15 +712,6 @@ COPY --link --from=pkg-kmod-amd64 /usr/lib/libkmod.* /rootfs/usr/lib/
COPY --link --from=pkg-kmod-amd64 /usr/bin/kmod /rootfs/usr/bin/modprobe
COPY --link --from=modules-amd64 /usr/lib/modules /rootfs/usr/lib/modules
COPY --link --from=machined-build-amd64 /machined /rootfs/usr/bin/init
RUN <<END
# move everything from /usr/sbin to /usr/bin and symlink
# TODO: make FHS and other packages already install everything to /usr/bin
# udevadm is a recursive symlink
rm /rootfs/usr/sbin/udevadm
mv /rootfs/usr/sbin/* /rootfs/usr/bin/
rmdir /rootfs/usr/sbin/
ln -s bin /rootfs/usr/sbin
END
# this is a no-op as it copies from a scratch image when WITH_DEBUG_SHELL is not set
COPY --link --from=pkg-debug-tools-amd64 * /rootfs/
@ -798,15 +789,6 @@ COPY --link --from=pkg-kmod-arm64 /usr/lib/libkmod.* /rootfs/usr/lib/
COPY --link --from=pkg-kmod-arm64 /usr/bin/kmod /rootfs/usr/bin/modprobe
COPY --link --from=modules-arm64 /usr/lib/modules /rootfs/usr/lib/modules
COPY --link --from=machined-build-arm64 /machined /rootfs/usr/bin/init
RUN <<END
# move everything from /usr/sbin to /usr/bin and symlink
# TODO: make FHS and other packages already install everything to /usr/bin
# udevadm is a recursive symlink
rm /rootfs/usr/sbin/udevadm
mv /rootfs/usr/sbin/* /rootfs/usr/bin/
rmdir /rootfs/usr/sbin/
ln -s bin /rootfs/usr/sbin
END
# this is a no-op as it copies from a scratch image when WITH_DEBUG_SHELL is not set
COPY --link --from=pkg-debug-tools-arm64 * /rootfs/
@ -1016,12 +998,6 @@ FROM --platform=${BUILDPLATFORM} iso-${TARGETARCH} AS iso
# The test target performs tests on the source code.
FROM base AS unit-tests-runner
RUN <<END
# TODO: do this in tools/pkgs
mv /usr/sbin/* /usr/bin/
rmdir /usr/sbin/
ln -s bin /usr/sbin
END
COPY --from=rootfs / /
COPY --from=pkg-ca-certificates / /
ARG TESTPKGS
@ -1036,12 +1012,6 @@ COPY --from=unit-tests-runner /src/coverage.txt /coverage.txt
# The unit-tests-race target performs tests with race detector.
FROM base AS unit-tests-race
RUN <<END
# TODO: do this in tools/pkgs
mv /usr/sbin/* /usr/bin/
rmdir /usr/sbin/
ln -s bin /usr/sbin
END
COPY --from=rootfs / /
COPY --from=pkg-ca-certificates / /
ARG TESTPKGS

View File

@ -17,13 +17,13 @@ ZSTD_COMPRESSION_LEVEL ?= 18
CI_RELEASE_TAG := $(shell git log --oneline --format=%B -n 1 HEAD^2 -- 2>/dev/null | head -n 1 | sed -r "/^release\(.*\)/ s/^release\((.*)\):.*$$/\\1/; t; Q")
ARTIFACTS := _out
TOOLS ?= ghcr.io/siderolabs/tools:v1.10.0-alpha.0-10-g9db33dd
TOOLS ?= ghcr.io/siderolabs/tools:v1.10.0-alpha.0-14-g46be459
DEBUG_TOOLS_SOURCE := scratch
EMBED_TARGET ?= embed
PKGS_PREFIX ?= ghcr.io/siderolabs
PKGS ?= v1.10.0-alpha.0-36-g117a1d6
PKGS ?= v1.10.0-alpha.0-38-g76a0316
EXTRAS ?= v1.10.0-alpha.0-3-g4102a78
KRES_IMAGE ?= ghcr.io/siderolabs/kres:latest
@ -67,7 +67,7 @@ PKG_KERNEL ?= $(PKGS_PREFIX)/kernel:$(PKGS)
PKG_TALOSCTL_CNI_BUNDLE ?= $(PKGS_PREFIX)/talosctl-cni-bundle:$(EXTRAS)
# renovate: datasource=github-tags depName=golang/go
GO_VERSION ?= 1.23
GO_VERSION ?= 1.24
# renovate: datasource=go depName=golang.org/x/tools
GOIMPORTS_VERSION ?= v0.28.0
# renovate: datasource=go depName=mvdan.cc/gofumpt
@ -77,7 +77,8 @@ GOLANGCILINT_VERSION ?= v1.62.2
# renovate: datasource=go depName=golang.org/x/tools
STRINGER_VERSION ?= v0.28.0
# renovate: datasource=go depName=github.com/dmarkham/enumer
ENUMER_VERSION ?= v1.5.10
# FIXME: https://github.com/dmarkham/enumer/issues/105
ENUMER_VERSION ?= v1.5.11-0.20250217145611-d1015c2bde3f
# renovate: datasource=go depName=k8s.io/code-generator
DEEPCOPY_GEN_VERSION ?= v0.32.0
# renovate: datasource=go depName=github.com/planetscale/vtprotobuf

10
go.mod
View File

@ -1,6 +1,6 @@
module github.com/siderolabs/talos
go 1.23.6
go 1.24.0
replace (
// see e.g. https://github.com/grpc/grpc-go/issues/6696
@ -149,7 +149,7 @@ require (
github.com/siderolabs/go-circular v0.2.1
github.com/siderolabs/go-cmd v0.1.3
github.com/siderolabs/go-copy v0.1.0
github.com/siderolabs/go-debug v0.4.0
github.com/siderolabs/go-debug v0.5.0
github.com/siderolabs/go-kmsg v0.1.4
github.com/siderolabs/go-kubeconfig v0.1.0
github.com/siderolabs/go-kubernetes v0.2.17
@ -182,11 +182,11 @@ require (
go.etcd.io/etcd/etcdutl/v3 v3.5.18
go.uber.org/zap v1.27.0
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba
golang.org/x/net v0.34.0
golang.org/x/net v0.35.0
golang.org/x/oauth2 v0.25.0
golang.org/x/sync v0.11.0
golang.org/x/sys v0.30.0
golang.org/x/term v0.28.0
golang.org/x/term v0.29.0
golang.org/x/text v0.22.0
golang.org/x/time v0.10.0
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6
@ -356,7 +356,7 @@ require (
go.opentelemetry.io/otel/metric v1.32.0 // indirect
go.opentelemetry.io/otel/trace v1.32.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.32.0 // indirect
golang.org/x/crypto v0.33.0 // indirect
golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/tools v0.29.0 // indirect

16
go.sum
View File

@ -655,8 +655,8 @@ github.com/siderolabs/go-cmd v0.1.3 h1:JrgZwqhJQeoec3QRON0LK+fv+0y7d0DyY7zsfkO6c
github.com/siderolabs/go-cmd v0.1.3/go.mod h1:bg7HY4mRNu4zKebAgUevSwuYNtcvPMJfuhLRkVKHZ0k=
github.com/siderolabs/go-copy v0.1.0 h1:OIWCtSg+rhOtnIZTpT31Gfpn17rv5kwJqQHG+QUEgC8=
github.com/siderolabs/go-copy v0.1.0/go.mod h1:4bF2rZOZAR/ags/U4AVSpjFE5RPGdEeSkOq6yR9YOkU=
github.com/siderolabs/go-debug v0.4.0 h1:pbFt6Rzumm90s3GvbRer7yIxFNc0gQ94I53omkqswHA=
github.com/siderolabs/go-debug v0.4.0/go.mod h1:9/dyHLRRIpqlJ0uTYyHo1XuZgoCgXzjjF+aIVTnr9Dc=
github.com/siderolabs/go-debug v0.5.0 h1:AQwFtvyFkSYTA1of4/UyDvVu8dVLoQP5sUYgmcp/u+4=
github.com/siderolabs/go-debug v0.5.0/go.mod h1:qtqaKzHrtj5ork8hhzswb3c225221aSVveehKTjBwBw=
github.com/siderolabs/go-kmsg v0.1.4 h1:RLAa90O9bWuhA3pXPAYAdrI+kzcqTshZASRA5yso/mo=
github.com/siderolabs/go-kmsg v0.1.4/go.mod h1:BLkt2N2DHT0wsFMz32lMw6vNEZL90c8ZnBjpIUoBb/M=
github.com/siderolabs/go-kubeconfig v0.1.0 h1:t/2oMWkLSdWHXglKPMz8ySXnx6ZjHckeGY79NaDcBTo=
@ -836,8 +836,8 @@ golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPh
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
golang.org/x/crypto v0.32.0 h1:euUpcYgM8WcP71gNpTqQCn6rC2t6ULUPiOzfWaXVVfc=
golang.org/x/crypto v0.32.0/go.mod h1:ZnnJkOaASj8g0AjIduWNlq2NRxL0PlBrbKVyZ6V/Ugc=
golang.org/x/crypto v0.33.0 h1:IOBPskki6Lysi0lo9qQvbxiQ+FvsCC/YWOecCHAixus=
golang.org/x/crypto v0.33.0/go.mod h1:bVdXmD7IV/4GdElGPozy6U7lWdRXA4qyRVGJV57uQ5M=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c h1:KL/ZBHXgKGVmuZBZ01Lt57yE5ws8ZPSkkihmEyq7FXc=
golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c/go.mod h1:tujkw807nyEEAamNbDrEGzRav+ilXA7PCRAd6xsmwiU=
@ -887,8 +887,8 @@ golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns=
golang.org/x/net v0.34.0 h1:Mb7Mrk043xzHgnRM88suvJFwzVrRfHEHJEl5/71CKw0=
golang.org/x/net v0.34.0/go.mod h1:di0qlW3YNM5oh6GqDGQr92MyTozJPmybPK4Ev/Gm31k=
golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8=
golang.org/x/net v0.35.0/go.mod h1:EglIi67kWsHKlRzzVMUD93VMSWGFOMSZgxFjparz1Qk=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
@ -977,8 +977,8 @@ golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuX
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY=
golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk=
golang.org/x/term v0.28.0 h1:/Ts8HFuMR2E6IP/jlo7QVLZHggjKQbhu/7H0LJFr3Gg=
golang.org/x/term v0.28.0/go.mod h1:Sw/lC2IAUZ92udQNf3WodGtn4k/XoLyZoh8v/8uiwek=
golang.org/x/term v0.29.0 h1:L6pJp37ocefwRRtYPKSWOWzOtWSxVajvz2ldH/xi3iU=
golang.org/x/term v0.29.0/go.mod h1:6bl4lRlvVuDgSf3179VpIxBF0o10JUpXWOnI7nErv7s=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=

View File

@ -1,4 +1,4 @@
go 1.23.6
go 1.24.0
use (
.

View File

@ -1,6 +1,6 @@
module github.com/siderolabs/cloud-image-uploader
go 1.23.6
go 1.24.0
require (
cloud.google.com/go/storage v1.49.0

View File

@ -1,6 +1,6 @@
module github.com/siderolabs/talos-hack-docgen
go 1.23.6
go 1.24.0
// forked go-yaml that introduces RawYAML interface, which can be used to populate YAML fields using bytes
// which are then encoded as a valid YAML blocks with proper indentiation

View File

@ -1,6 +1,6 @@
module github.com/siderolabs/gotagsrewrite
go 1.23.6
go 1.24.0
require (
github.com/fatih/structtag v1.2.0

View File

@ -2,5 +2,5 @@
set -e
# set SELinux labels for files according to file_contexts supplied
/sbin/setfiles -r $1 -F -vv $3 $1
setfiles -r $1 -F -vv $3 $1
mksquashfs $1 $2 -all-root -noappend -comp zstd -Xcompression-level $4 -no-progress

View File

@ -1,5 +1,5 @@
module module-sig-verify
go 1.23.6
go 1.24.0
require go.mozilla.org/pkcs7 v0.9.0

View File

@ -26,7 +26,7 @@ preface = """
* Flannel: 0.26.4
* Kubernetes: 1.32.2
Talos is built with Go 1.23.6.
Talos is built with Go 1.24.0.
"""
[notes.driver-rebind]

View File

@ -1,6 +1,6 @@
module github.com/siderolabs/structprotogen
go 1.23.6
go 1.24.0
require (
github.com/fatih/structtag v1.2.0

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: cluster/cluster.proto
@ -9,6 +9,7 @@ package cluster
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -190,7 +191,7 @@ func (x *HealthCheckProgress) GetMessage() string {
var File_cluster_cluster_proto protoreflect.FileDescriptor
var file_cluster_cluster_proto_rawDesc = []byte{
var file_cluster_cluster_proto_rawDesc = string([]byte{
0x0a, 0x15, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72,
0x1a, 0x13, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
@ -232,16 +233,16 @@ var file_cluster_cluster_proto_rawDesc = []byte{
0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61,
0x70, 0x69, 0x2f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
})
var (
file_cluster_cluster_proto_rawDescOnce sync.Once
file_cluster_cluster_proto_rawDescData = file_cluster_cluster_proto_rawDesc
file_cluster_cluster_proto_rawDescData []byte
)
func file_cluster_cluster_proto_rawDescGZIP() []byte {
file_cluster_cluster_proto_rawDescOnce.Do(func() {
file_cluster_cluster_proto_rawDescData = protoimpl.X.CompressGZIP(file_cluster_cluster_proto_rawDescData)
file_cluster_cluster_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_cluster_cluster_proto_rawDesc), len(file_cluster_cluster_proto_rawDesc)))
})
return file_cluster_cluster_proto_rawDescData
}
@ -276,7 +277,7 @@ func file_cluster_cluster_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_cluster_cluster_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_cluster_cluster_proto_rawDesc), len(file_cluster_cluster_proto_rawDesc)),
NumEnums: 0,
NumMessages: 3,
NumExtensions: 0,
@ -287,7 +288,6 @@ func file_cluster_cluster_proto_init() {
MessageInfos: file_cluster_cluster_proto_msgTypes,
}.Build()
File_cluster_cluster_proto = out.File
file_cluster_cluster_proto_rawDesc = nil
file_cluster_cluster_proto_goTypes = nil
file_cluster_cluster_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: common/common.proto
@ -9,6 +9,7 @@ package common
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
status "google.golang.org/genproto/googleapis/rpc/status"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
@ -910,7 +911,7 @@ var (
var File_common_common_proto protoreflect.FileDescriptor
var file_common_common_proto_rawDesc = []byte{
var file_common_common_proto_rawDesc = string([]byte{
0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x19, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61,
@ -1018,16 +1019,16 @@ var file_common_common_proto_rawDesc = []byte{
0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b,
0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_common_common_proto_rawDescOnce sync.Once
file_common_common_proto_rawDescData = file_common_common_proto_rawDesc
file_common_common_proto_rawDescData []byte
)
func file_common_common_proto_rawDescGZIP() []byte {
file_common_common_proto_rawDescOnce.Do(func() {
file_common_common_proto_rawDescData = protoimpl.X.CompressGZIP(file_common_common_proto_rawDescData)
file_common_common_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_common_common_proto_rawDesc), len(file_common_common_proto_rawDesc)))
})
return file_common_common_proto_rawDescData
}
@ -1090,7 +1091,7 @@ func file_common_common_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_common_common_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_common_common_proto_rawDesc), len(file_common_common_proto_rawDesc)),
NumEnums: 3,
NumMessages: 13,
NumExtensions: 6,
@ -1103,7 +1104,6 @@ func file_common_common_proto_init() {
ExtensionInfos: file_common_common_proto_extTypes,
}.Build()
File_common_common_proto = out.File
file_common_common_proto_rawDesc = nil
file_common_common_proto_goTypes = nil
file_common_common_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: inspect/inspect.proto
@ -9,6 +9,7 @@ package inspect
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -254,7 +255,7 @@ func (x *ControllerDependencyEdge) GetResourceId() string {
var File_inspect_inspect_proto protoreflect.FileDescriptor
var file_inspect_inspect_proto_rawDesc = []byte{
var file_inspect_inspect_proto_rawDesc = string([]byte{
0x0a, 0x15, 0x69, 0x6e, 0x73, 0x70, 0x65, 0x63, 0x74, 0x2f, 0x69, 0x6e, 0x73, 0x70, 0x65, 0x63,
0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x69, 0x6e, 0x73, 0x70, 0x65, 0x63, 0x74,
0x1a, 0x13, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
@ -312,16 +313,16 @@ var file_inspect_inspect_proto_rawDesc = []byte{
0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65,
0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x69, 0x6e, 0x73, 0x70, 0x65, 0x63, 0x74, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_inspect_inspect_proto_rawDescOnce sync.Once
file_inspect_inspect_proto_rawDescData = file_inspect_inspect_proto_rawDesc
file_inspect_inspect_proto_rawDescData []byte
)
func file_inspect_inspect_proto_rawDescGZIP() []byte {
file_inspect_inspect_proto_rawDescOnce.Do(func() {
file_inspect_inspect_proto_rawDescData = protoimpl.X.CompressGZIP(file_inspect_inspect_proto_rawDescData)
file_inspect_inspect_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_inspect_inspect_proto_rawDesc), len(file_inspect_inspect_proto_rawDesc)))
})
return file_inspect_inspect_proto_rawDescData
}
@ -359,7 +360,7 @@ func file_inspect_inspect_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_inspect_inspect_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_inspect_inspect_proto_rawDesc), len(file_inspect_inspect_proto_rawDesc)),
NumEnums: 1,
NumMessages: 3,
NumExtensions: 0,
@ -371,7 +372,6 @@ func file_inspect_inspect_proto_init() {
MessageInfos: file_inspect_inspect_proto_msgTypes,
}.Build()
File_inspect_inspect_proto = out.File
file_inspect_inspect_proto_rawDesc = nil
file_inspect_inspect_proto_goTypes = nil
file_inspect_inspect_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: machine/machine.proto
@ -9,6 +9,7 @@ package machine
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -11372,7 +11373,7 @@ func (x *ConnectRecord_Process) GetName() string {
var File_machine_machine_proto protoreflect.FileDescriptor
var file_machine_machine_proto_rawDesc = []byte{
var file_machine_machine_proto_rawDesc = string([]byte{
0x0a, 0x15, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65,
0x1a, 0x13, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
@ -13038,16 +13039,16 @@ var file_machine_machine_proto_rawDesc = []byte{
0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68,
0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e,
0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_machine_machine_proto_rawDescOnce sync.Once
file_machine_machine_proto_rawDescData = file_machine_machine_proto_rawDesc
file_machine_machine_proto_rawDescData []byte
)
func file_machine_machine_proto_rawDescGZIP() []byte {
file_machine_machine_proto_rawDescOnce.Do(func() {
file_machine_machine_proto_rawDescData = protoimpl.X.CompressGZIP(file_machine_machine_proto_rawDescData)
file_machine_machine_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_machine_machine_proto_rawDesc), len(file_machine_machine_proto_rawDesc)))
})
return file_machine_machine_proto_rawDescData
}
@ -13537,7 +13538,7 @@ func file_machine_machine_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_machine_machine_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_machine_machine_proto_rawDesc), len(file_machine_machine_proto_rawDesc)),
NumEnums: 15,
NumMessages: 172,
NumExtensions: 0,
@ -13549,7 +13550,6 @@ func file_machine_machine_proto_init() {
MessageInfos: file_machine_machine_proto_msgTypes,
}.Build()
File_machine_machine_proto = out.File
file_machine_machine_proto_rawDesc = nil
file_machine_machine_proto_goTypes = nil
file_machine_machine_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/config/config.proto
@ -9,6 +9,7 @@ package config
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -169,7 +170,7 @@ func (x *MachineTypeSpec) GetMachineType() MachineType {
var File_resource_config_config_proto protoreflect.FileDescriptor
var file_resource_config_config_proto_rawDesc = []byte{
var file_resource_config_config_proto_rawDesc = string([]byte{
0x0a, 0x1c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69,
0x67, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0f,
0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22,
@ -193,16 +194,16 @@ var file_resource_config_config_proto_rawDesc = []byte{
0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65,
0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f,
0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_config_config_proto_rawDescOnce sync.Once
file_resource_config_config_proto_rawDescData = file_resource_config_config_proto_rawDesc
file_resource_config_config_proto_rawDescData []byte
)
func file_resource_config_config_proto_rawDescGZIP() []byte {
file_resource_config_config_proto_rawDescOnce.Do(func() {
file_resource_config_config_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_config_config_proto_rawDescData)
file_resource_config_config_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_config_config_proto_rawDesc), len(file_resource_config_config_proto_rawDesc)))
})
return file_resource_config_config_proto_rawDescData
}
@ -232,7 +233,7 @@ func file_resource_config_config_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_config_config_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_config_config_proto_rawDesc), len(file_resource_config_config_proto_rawDesc)),
NumEnums: 1,
NumMessages: 2,
NumExtensions: 0,
@ -244,7 +245,6 @@ func file_resource_config_config_proto_init() {
MessageInfos: file_resource_config_config_proto_msgTypes,
}.Build()
File_resource_config_config_proto = out.File
file_resource_config_config_proto_rawDesc = nil
file_resource_config_config_proto_goTypes = nil
file_resource_config_config_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/block/block.proto
@ -9,6 +9,7 @@ package block
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
v1alpha1 "google.golang.org/genproto/googleapis/api/expr/v1alpha1"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
@ -1776,7 +1777,7 @@ func (x *VolumeStatusSpec) GetMountSpec() *MountSpec {
var File_resource_definitions_block_block_proto protoreflect.FileDescriptor
var file_resource_definitions_block_block_proto_rawDesc = []byte{
var file_resource_definitions_block_block_proto_rawDesc = string([]byte{
0x0a, 0x26, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x62, 0x6c, 0x6f,
0x63, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x20, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2e,
@ -2108,16 +2109,16 @@ var file_resource_definitions_block_block_proto_rawDesc = []byte{
0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65,
0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f,
0x6e, 0x73, 0x2f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_block_block_proto_rawDescOnce sync.Once
file_resource_definitions_block_block_proto_rawDescData = file_resource_definitions_block_block_proto_rawDesc
file_resource_definitions_block_block_proto_rawDescData []byte
)
func file_resource_definitions_block_block_proto_rawDescGZIP() []byte {
file_resource_definitions_block_block_proto_rawDescOnce.Do(func() {
file_resource_definitions_block_block_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_block_block_proto_rawDescData)
file_resource_definitions_block_block_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_block_block_proto_rawDesc), len(file_resource_definitions_block_block_proto_rawDesc)))
})
return file_resource_definitions_block_block_proto_rawDescData
}
@ -2191,7 +2192,7 @@ func file_resource_definitions_block_block_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_block_block_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_block_block_proto_rawDesc), len(file_resource_definitions_block_block_proto_rawDesc)),
NumEnums: 0,
NumMessages: 22,
NumExtensions: 0,
@ -2202,7 +2203,6 @@ func file_resource_definitions_block_block_proto_init() {
MessageInfos: file_resource_definitions_block_block_proto_msgTypes,
}.Build()
File_resource_definitions_block_block_proto = out.File
file_resource_definitions_block_block_proto_rawDesc = nil
file_resource_definitions_block_block_proto_goTypes = nil
file_resource_definitions_block_block_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/cluster/cluster.proto
@ -9,6 +9,7 @@ package cluster
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -520,7 +521,7 @@ func (x *MemberSpec) GetControlPlane() *ControlPlane {
var File_resource_definitions_cluster_cluster_proto protoreflect.FileDescriptor
var file_resource_definitions_cluster_cluster_proto_rawDesc = []byte{
var file_resource_definitions_cluster_cluster_proto_rawDesc = string([]byte{
0x0a, 0x2a, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x63,
0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x22, 0x74, 0x61,
@ -635,16 +636,16 @@ var file_resource_definitions_cluster_cluster_proto_rawDesc = []byte{
0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f,
0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x63, 0x6c, 0x75, 0x73,
0x74, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_cluster_cluster_proto_rawDescOnce sync.Once
file_resource_definitions_cluster_cluster_proto_rawDescData = file_resource_definitions_cluster_cluster_proto_rawDesc
file_resource_definitions_cluster_cluster_proto_rawDescData []byte
)
func file_resource_definitions_cluster_cluster_proto_rawDescGZIP() []byte {
file_resource_definitions_cluster_cluster_proto_rawDescOnce.Do(func() {
file_resource_definitions_cluster_cluster_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_cluster_cluster_proto_rawDescData)
file_resource_definitions_cluster_cluster_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_cluster_cluster_proto_rawDesc), len(file_resource_definitions_cluster_cluster_proto_rawDesc)))
})
return file_resource_definitions_cluster_cluster_proto_rawDescData
}
@ -690,7 +691,7 @@ func file_resource_definitions_cluster_cluster_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_cluster_cluster_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_cluster_cluster_proto_rawDesc), len(file_resource_definitions_cluster_cluster_proto_rawDesc)),
NumEnums: 0,
NumMessages: 7,
NumExtensions: 0,
@ -701,7 +702,6 @@ func file_resource_definitions_cluster_cluster_proto_init() {
MessageInfos: file_resource_definitions_cluster_cluster_proto_msgTypes,
}.Build()
File_resource_definitions_cluster_cluster_proto = out.File
file_resource_definitions_cluster_cluster_proto_rawDesc = nil
file_resource_definitions_cluster_cluster_proto_goTypes = nil
file_resource_definitions_cluster_cluster_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/cri/cri.proto
@ -9,6 +9,7 @@ package cri
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -438,7 +439,7 @@ func (x *SeccompProfileSpec) GetValue() *structpb.Struct {
var File_resource_definitions_cri_cri_proto protoreflect.FileDescriptor
var file_resource_definitions_cri_cri_proto_rawDesc = []byte{
var file_resource_definitions_cri_cri_proto_rawDesc = string([]byte{
0x0a, 0x22, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x63, 0x72, 0x69, 0x2f, 0x63, 0x72, 0x69, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2e, 0x72, 0x65, 0x73, 0x6f,
@ -554,16 +555,16 @@ var file_resource_definitions_cri_cri_proto_rawDesc = []byte{
0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73,
0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e,
0x73, 0x2f, 0x63, 0x72, 0x69, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_cri_cri_proto_rawDescOnce sync.Once
file_resource_definitions_cri_cri_proto_rawDescData = file_resource_definitions_cri_cri_proto_rawDesc
file_resource_definitions_cri_cri_proto_rawDescData []byte
)
func file_resource_definitions_cri_cri_proto_rawDescGZIP() []byte {
file_resource_definitions_cri_cri_proto_rawDescOnce.Do(func() {
file_resource_definitions_cri_cri_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_cri_cri_proto_rawDescData)
file_resource_definitions_cri_cri_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_cri_cri_proto_rawDesc), len(file_resource_definitions_cri_cri_proto_rawDesc)))
})
return file_resource_definitions_cri_cri_proto_rawDescData
}
@ -611,7 +612,7 @@ func file_resource_definitions_cri_cri_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_cri_cri_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_cri_cri_proto_rawDesc), len(file_resource_definitions_cri_cri_proto_rawDesc)),
NumEnums: 0,
NumMessages: 9,
NumExtensions: 0,
@ -622,7 +623,6 @@ func file_resource_definitions_cri_cri_proto_init() {
MessageInfos: file_resource_definitions_cri_cri_proto_msgTypes,
}.Build()
File_resource_definitions_cri_cri_proto = out.File
file_resource_definitions_cri_cri_proto_rawDesc = nil
file_resource_definitions_cri_cri_proto_goTypes = nil
file_resource_definitions_cri_cri_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/enums/enums.proto
@ -9,6 +9,7 @@ package enums
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -2481,7 +2482,7 @@ func (RuntimeMachineStage) EnumDescriptor() ([]byte, []int) {
var File_resource_definitions_enums_enums_proto protoreflect.FileDescriptor
var file_resource_definitions_enums_enums_proto_rawDesc = []byte{
var file_resource_definitions_enums_enums_proto_rawDesc = string([]byte{
0x0a, 0x26, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x20, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2e,
@ -2959,16 +2960,16 @@ var file_resource_definitions_enums_enums_proto_rawDesc = []byte{
0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66,
0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_enums_enums_proto_rawDescOnce sync.Once
file_resource_definitions_enums_enums_proto_rawDescData = file_resource_definitions_enums_enums_proto_rawDesc
file_resource_definitions_enums_enums_proto_rawDescData []byte
)
func file_resource_definitions_enums_enums_proto_rawDescGZIP() []byte {
file_resource_definitions_enums_enums_proto_rawDescOnce.Do(func() {
file_resource_definitions_enums_enums_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_enums_enums_proto_rawDescData)
file_resource_definitions_enums_enums_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_enums_enums_proto_rawDesc), len(file_resource_definitions_enums_enums_proto_rawDesc)))
})
return file_resource_definitions_enums_enums_proto_rawDescData
}
@ -3032,7 +3033,7 @@ func file_resource_definitions_enums_enums_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_enums_enums_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_enums_enums_proto_rawDesc), len(file_resource_definitions_enums_enums_proto_rawDesc)),
NumEnums: 39,
NumMessages: 0,
NumExtensions: 0,
@ -3043,7 +3044,6 @@ func file_resource_definitions_enums_enums_proto_init() {
EnumInfos: file_resource_definitions_enums_enums_proto_enumTypes,
}.Build()
File_resource_definitions_enums_enums_proto = out.File
file_resource_definitions_enums_enums_proto_rawDesc = nil
file_resource_definitions_enums_enums_proto_goTypes = nil
file_resource_definitions_enums_enums_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/etcd/etcd.proto
@ -9,6 +9,7 @@ package etcd
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -293,7 +294,7 @@ func (x *SpecSpec) GetListenClientAddresses() []*common.NetIP {
var File_resource_definitions_etcd_etcd_proto protoreflect.FileDescriptor
var file_resource_definitions_etcd_etcd_proto_rawDesc = []byte{
var file_resource_definitions_etcd_etcd_proto_rawDesc = string([]byte{
0x0a, 0x24, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x65, 0x74, 0x63, 0x64, 0x2f, 0x65, 0x74, 0x63, 0x64,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2e, 0x72, 0x65,
@ -366,16 +367,16 @@ var file_resource_definitions_etcd_etcd_proto_rawDesc = []byte{
0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f,
0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x65, 0x74, 0x63, 0x64,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_etcd_etcd_proto_rawDescOnce sync.Once
file_resource_definitions_etcd_etcd_proto_rawDescData = file_resource_definitions_etcd_etcd_proto_rawDesc
file_resource_definitions_etcd_etcd_proto_rawDescData []byte
)
func file_resource_definitions_etcd_etcd_proto_rawDescGZIP() []byte {
file_resource_definitions_etcd_etcd_proto_rawDescOnce.Do(func() {
file_resource_definitions_etcd_etcd_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_etcd_etcd_proto_rawDescData)
file_resource_definitions_etcd_etcd_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_etcd_etcd_proto_rawDesc), len(file_resource_definitions_etcd_etcd_proto_rawDesc)))
})
return file_resource_definitions_etcd_etcd_proto_rawDescData
}
@ -412,7 +413,7 @@ func file_resource_definitions_etcd_etcd_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_etcd_etcd_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_etcd_etcd_proto_rawDesc), len(file_resource_definitions_etcd_etcd_proto_rawDesc)),
NumEnums: 0,
NumMessages: 6,
NumExtensions: 0,
@ -423,7 +424,6 @@ func file_resource_definitions_etcd_etcd_proto_init() {
MessageInfos: file_resource_definitions_etcd_etcd_proto_msgTypes,
}.Build()
File_resource_definitions_etcd_etcd_proto = out.File
file_resource_definitions_etcd_etcd_proto_rawDesc = nil
file_resource_definitions_etcd_etcd_proto_goTypes = nil
file_resource_definitions_etcd_etcd_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/extensions/extensions.proto
@ -9,6 +9,7 @@ package extensions
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -251,7 +252,7 @@ func (x *Metadata) GetExtraInfo() string {
var File_resource_definitions_extensions_extensions_proto protoreflect.FileDescriptor
var file_resource_definitions_extensions_extensions_proto_rawDesc = []byte{
var file_resource_definitions_extensions_extensions_proto_rawDesc = string([]byte{
0x0a, 0x30, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
0x73, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f,
@ -296,16 +297,16 @@ var file_resource_definitions_extensions_extensions_proto_rawDesc = []byte{
0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x65, 0x78, 0x74,
0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_extensions_extensions_proto_rawDescOnce sync.Once
file_resource_definitions_extensions_extensions_proto_rawDescData = file_resource_definitions_extensions_extensions_proto_rawDesc
file_resource_definitions_extensions_extensions_proto_rawDescData []byte
)
func file_resource_definitions_extensions_extensions_proto_rawDescGZIP() []byte {
file_resource_definitions_extensions_extensions_proto_rawDescOnce.Do(func() {
file_resource_definitions_extensions_extensions_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_extensions_extensions_proto_rawDescData)
file_resource_definitions_extensions_extensions_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_extensions_extensions_proto_rawDesc), len(file_resource_definitions_extensions_extensions_proto_rawDesc)))
})
return file_resource_definitions_extensions_extensions_proto_rawDescData
}
@ -337,7 +338,7 @@ func file_resource_definitions_extensions_extensions_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_extensions_extensions_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_extensions_extensions_proto_rawDesc), len(file_resource_definitions_extensions_extensions_proto_rawDesc)),
NumEnums: 0,
NumMessages: 4,
NumExtensions: 0,
@ -348,7 +349,6 @@ func file_resource_definitions_extensions_extensions_proto_init() {
MessageInfos: file_resource_definitions_extensions_extensions_proto_msgTypes,
}.Build()
File_resource_definitions_extensions_extensions_proto = out.File
file_resource_definitions_extensions_extensions_proto_rawDesc = nil
file_resource_definitions_extensions_extensions_proto_goTypes = nil
file_resource_definitions_extensions_extensions_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/files/files.proto
@ -9,6 +9,7 @@ package files
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -129,7 +130,7 @@ func (x *EtcFileStatusSpec) GetSpecVersion() string {
var File_resource_definitions_files_files_proto protoreflect.FileDescriptor
var file_resource_definitions_files_files_proto_rawDesc = []byte{
var file_resource_definitions_files_files_proto_rawDesc = string([]byte{
0x0a, 0x26, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x2f, 0x66, 0x69, 0x6c,
0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x20, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2e,
@ -153,16 +154,16 @@ var file_resource_definitions_files_files_proto_rawDesc = []byte{
0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64,
0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x66, 0x69, 0x6c, 0x65, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_files_files_proto_rawDescOnce sync.Once
file_resource_definitions_files_files_proto_rawDescData = file_resource_definitions_files_files_proto_rawDesc
file_resource_definitions_files_files_proto_rawDescData []byte
)
func file_resource_definitions_files_files_proto_rawDescGZIP() []byte {
file_resource_definitions_files_files_proto_rawDescOnce.Do(func() {
file_resource_definitions_files_files_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_files_files_proto_rawDescData)
file_resource_definitions_files_files_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_files_files_proto_rawDesc), len(file_resource_definitions_files_files_proto_rawDesc)))
})
return file_resource_definitions_files_files_proto_rawDescData
}
@ -189,7 +190,7 @@ func file_resource_definitions_files_files_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_files_files_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_files_files_proto_rawDesc), len(file_resource_definitions_files_files_proto_rawDesc)),
NumEnums: 0,
NumMessages: 2,
NumExtensions: 0,
@ -200,7 +201,6 @@ func file_resource_definitions_files_files_proto_init() {
MessageInfos: file_resource_definitions_files_files_proto_msgTypes,
}.Build()
File_resource_definitions_files_files_proto = out.File
file_resource_definitions_files_files_proto_rawDesc = nil
file_resource_definitions_files_files_proto_goTypes = nil
file_resource_definitions_files_files_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/hardware/hardware.proto
@ -9,6 +9,7 @@ package hardware
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -557,7 +558,7 @@ func (x *SystemInformationSpec) GetSkuNumber() string {
var File_resource_definitions_hardware_hardware_proto protoreflect.FileDescriptor
var file_resource_definitions_hardware_hardware_proto_rawDesc = []byte{
var file_resource_definitions_hardware_hardware_proto_rawDesc = string([]byte{
0x0a, 0x2c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x68, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x2f,
0x68, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x23,
@ -655,16 +656,16 @@ var file_resource_definitions_hardware_hardware_proto_rawDesc = []byte{
0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66,
0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x68, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72,
0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_hardware_hardware_proto_rawDescOnce sync.Once
file_resource_definitions_hardware_hardware_proto_rawDescData = file_resource_definitions_hardware_hardware_proto_rawDesc
file_resource_definitions_hardware_hardware_proto_rawDescData []byte
)
func file_resource_definitions_hardware_hardware_proto_rawDescGZIP() []byte {
file_resource_definitions_hardware_hardware_proto_rawDescOnce.Do(func() {
file_resource_definitions_hardware_hardware_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_hardware_hardware_proto_rawDescData)
file_resource_definitions_hardware_hardware_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_hardware_hardware_proto_rawDesc), len(file_resource_definitions_hardware_hardware_proto_rawDesc)))
})
return file_resource_definitions_hardware_hardware_proto_rawDescData
}
@ -695,7 +696,7 @@ func file_resource_definitions_hardware_hardware_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_hardware_hardware_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_hardware_hardware_proto_rawDesc), len(file_resource_definitions_hardware_hardware_proto_rawDesc)),
NumEnums: 0,
NumMessages: 6,
NumExtensions: 0,
@ -706,7 +707,6 @@ func file_resource_definitions_hardware_hardware_proto_init() {
MessageInfos: file_resource_definitions_hardware_hardware_proto_msgTypes,
}.Build()
File_resource_definitions_hardware_hardware_proto = out.File
file_resource_definitions_hardware_hardware_proto_rawDesc = nil
file_resource_definitions_hardware_hardware_proto_goTypes = nil
file_resource_definitions_hardware_hardware_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/k8s/k8s.proto
@ -9,6 +9,7 @@ package k8s
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -2306,7 +2307,7 @@ func (x *StaticPodStatusSpec) GetPodStatus() *structpb.Struct {
var File_resource_definitions_k8s_k8s_proto protoreflect.FileDescriptor
var file_resource_definitions_k8s_k8s_proto_rawDesc = []byte{
var file_resource_definitions_k8s_k8s_proto_rawDesc = string([]byte{
0x0a, 0x22, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6b, 0x38, 0x73, 0x2f, 0x6b, 0x38, 0x73, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2e, 0x72, 0x65, 0x73, 0x6f,
@ -2796,16 +2797,16 @@ var file_resource_definitions_k8s_k8s_proto_rawDesc = []byte{
0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6b, 0x38,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_k8s_k8s_proto_rawDescOnce sync.Once
file_resource_definitions_k8s_k8s_proto_rawDescData = file_resource_definitions_k8s_k8s_proto_rawDesc
file_resource_definitions_k8s_k8s_proto_rawDescData []byte
)
func file_resource_definitions_k8s_k8s_proto_rawDescGZIP() []byte {
file_resource_definitions_k8s_k8s_proto_rawDescOnce.Do(func() {
file_resource_definitions_k8s_k8s_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_k8s_k8s_proto_rawDescData)
file_resource_definitions_k8s_k8s_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_k8s_k8s_proto_rawDesc), len(file_resource_definitions_k8s_k8s_proto_rawDesc)))
})
return file_resource_definitions_k8s_k8s_proto_rawDescData
}
@ -2919,7 +2920,7 @@ func file_resource_definitions_k8s_k8s_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_k8s_k8s_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_k8s_k8s_proto_rawDesc), len(file_resource_definitions_k8s_k8s_proto_rawDesc)),
NumEnums: 0,
NumMessages: 47,
NumExtensions: 0,
@ -2930,7 +2931,6 @@ func file_resource_definitions_k8s_k8s_proto_init() {
MessageInfos: file_resource_definitions_k8s_k8s_proto_msgTypes,
}.Build()
File_resource_definitions_k8s_k8s_proto = out.File
file_resource_definitions_k8s_k8s_proto_rawDesc = nil
file_resource_definitions_k8s_k8s_proto_goTypes = nil
file_resource_definitions_k8s_k8s_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/kubeaccess/kubeaccess.proto
@ -9,6 +9,7 @@ package kubeaccess
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -84,7 +85,7 @@ func (x *ConfigSpec) GetAllowedKubernetesNamespaces() []string {
var File_resource_definitions_kubeaccess_kubeaccess_proto protoreflect.FileDescriptor
var file_resource_definitions_kubeaccess_kubeaccess_proto_rawDesc = []byte{
var file_resource_definitions_kubeaccess_kubeaccess_proto_rawDesc = string([]byte{
0x0a, 0x30, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6b, 0x75, 0x62, 0x65, 0x61, 0x63, 0x63, 0x65, 0x73,
0x73, 0x2f, 0x6b, 0x75, 0x62, 0x65, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x2e, 0x70, 0x72, 0x6f,
@ -109,16 +110,16 @@ var file_resource_definitions_kubeaccess_kubeaccess_proto_rawDesc = []byte{
0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69,
0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6b, 0x75, 0x62, 0x65, 0x61, 0x63, 0x63, 0x65,
0x73, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_kubeaccess_kubeaccess_proto_rawDescOnce sync.Once
file_resource_definitions_kubeaccess_kubeaccess_proto_rawDescData = file_resource_definitions_kubeaccess_kubeaccess_proto_rawDesc
file_resource_definitions_kubeaccess_kubeaccess_proto_rawDescData []byte
)
func file_resource_definitions_kubeaccess_kubeaccess_proto_rawDescGZIP() []byte {
file_resource_definitions_kubeaccess_kubeaccess_proto_rawDescOnce.Do(func() {
file_resource_definitions_kubeaccess_kubeaccess_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_kubeaccess_kubeaccess_proto_rawDescData)
file_resource_definitions_kubeaccess_kubeaccess_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_kubeaccess_kubeaccess_proto_rawDesc), len(file_resource_definitions_kubeaccess_kubeaccess_proto_rawDesc)))
})
return file_resource_definitions_kubeaccess_kubeaccess_proto_rawDescData
}
@ -144,7 +145,7 @@ func file_resource_definitions_kubeaccess_kubeaccess_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_kubeaccess_kubeaccess_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_kubeaccess_kubeaccess_proto_rawDesc), len(file_resource_definitions_kubeaccess_kubeaccess_proto_rawDesc)),
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
@ -155,7 +156,6 @@ func file_resource_definitions_kubeaccess_kubeaccess_proto_init() {
MessageInfos: file_resource_definitions_kubeaccess_kubeaccess_proto_msgTypes,
}.Build()
File_resource_definitions_kubeaccess_kubeaccess_proto = out.File
file_resource_definitions_kubeaccess_kubeaccess_proto_rawDesc = nil
file_resource_definitions_kubeaccess_kubeaccess_proto_goTypes = nil
file_resource_definitions_kubeaccess_kubeaccess_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/kubespan/kubespan.proto
@ -9,6 +9,7 @@ package kubespan
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -431,7 +432,7 @@ func (x *PeerStatusSpec) GetLastEndpointChange() *timestamppb.Timestamp {
var File_resource_definitions_kubespan_kubespan_proto protoreflect.FileDescriptor
var file_resource_definitions_kubespan_kubespan_proto_rawDesc = []byte{
var file_resource_definitions_kubespan_kubespan_proto_rawDesc = string([]byte{
0x0a, 0x2c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6b, 0x75, 0x62, 0x65, 0x73, 0x70, 0x61, 0x6e, 0x2f,
0x6b, 0x75, 0x62, 0x65, 0x73, 0x70, 0x61, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x23,
@ -533,16 +534,16 @@ var file_resource_definitions_kubespan_kubespan_proto_rawDesc = []byte{
0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f,
0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6b, 0x75, 0x62, 0x65,
0x73, 0x70, 0x61, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_kubespan_kubespan_proto_rawDescOnce sync.Once
file_resource_definitions_kubespan_kubespan_proto_rawDescData = file_resource_definitions_kubespan_kubespan_proto_rawDesc
file_resource_definitions_kubespan_kubespan_proto_rawDescData []byte
)
func file_resource_definitions_kubespan_kubespan_proto_rawDescGZIP() []byte {
file_resource_definitions_kubespan_kubespan_proto_rawDescOnce.Do(func() {
file_resource_definitions_kubespan_kubespan_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_kubespan_kubespan_proto_rawDescData)
file_resource_definitions_kubespan_kubespan_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_kubespan_kubespan_proto_rawDesc), len(file_resource_definitions_kubespan_kubespan_proto_rawDesc)))
})
return file_resource_definitions_kubespan_kubespan_proto_rawDescData
}
@ -589,7 +590,7 @@ func file_resource_definitions_kubespan_kubespan_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_kubespan_kubespan_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_kubespan_kubespan_proto_rawDesc), len(file_resource_definitions_kubespan_kubespan_proto_rawDesc)),
NumEnums: 0,
NumMessages: 5,
NumExtensions: 0,
@ -600,7 +601,6 @@ func file_resource_definitions_kubespan_kubespan_proto_init() {
MessageInfos: file_resource_definitions_kubespan_kubespan_proto_msgTypes,
}.Build()
File_resource_definitions_kubespan_kubespan_proto = out.File
file_resource_definitions_kubespan_kubespan_proto_rawDesc = nil
file_resource_definitions_kubespan_kubespan_proto_goTypes = nil
file_resource_definitions_kubespan_kubespan_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/network/network.proto
@ -9,6 +9,7 @@ package network
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -4327,7 +4328,7 @@ func (x *WireguardSpec) GetPeers() []*WireguardPeer {
var File_resource_definitions_network_network_proto protoreflect.FileDescriptor
var file_resource_definitions_network_network_proto_rawDesc = []byte{
var file_resource_definitions_network_network_proto_rawDesc = string([]byte{
0x0a, 0x2a, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x6e,
0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x22, 0x74, 0x61,
@ -5272,16 +5273,16 @@ var file_resource_definitions_network_network_proto_rawDesc = []byte{
0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66,
0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_network_network_proto_rawDescOnce sync.Once
file_resource_definitions_network_network_proto_rawDescData = file_resource_definitions_network_network_proto_rawDesc
file_resource_definitions_network_network_proto_rawDescData []byte
)
func file_resource_definitions_network_network_proto_rawDescGZIP() []byte {
file_resource_definitions_network_network_proto_rawDescOnce.Do(func() {
file_resource_definitions_network_network_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_network_network_proto_rawDescData)
file_resource_definitions_network_network_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_network_network_proto_rawDesc), len(file_resource_definitions_network_network_proto_rawDesc)))
})
return file_resource_definitions_network_network_proto_rawDescData
}
@ -5507,7 +5508,7 @@ func file_resource_definitions_network_network_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_network_network_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_network_network_proto_rawDesc), len(file_resource_definitions_network_network_proto_rawDesc)),
NumEnums: 0,
NumMessages: 57,
NumExtensions: 0,
@ -5518,7 +5519,6 @@ func file_resource_definitions_network_network_proto_init() {
MessageInfos: file_resource_definitions_network_network_proto_msgTypes,
}.Build()
File_resource_definitions_network_network_proto = out.File
file_resource_definitions_network_network_proto_rawDesc = nil
file_resource_definitions_network_network_proto_goTypes = nil
file_resource_definitions_network_network_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/perf/perf.proto
@ -9,6 +9,7 @@ package perf
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -662,7 +663,7 @@ func (x *MemorySpec) GetDirectMap1G() uint64 {
var File_resource_definitions_perf_perf_proto protoreflect.FileDescriptor
var file_resource_definitions_perf_perf_proto_rawDesc = []byte{
var file_resource_definitions_perf_perf_proto_rawDesc = string([]byte{
0x0a, 0x24, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x70, 0x65, 0x72, 0x66, 0x2f, 0x70, 0x65, 0x72, 0x66,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2e, 0x72, 0x65,
@ -814,16 +815,16 @@ var file_resource_definitions_perf_perf_proto_rawDesc = []byte{
0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65,
0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x70, 0x65, 0x72, 0x66, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_perf_perf_proto_rawDescOnce sync.Once
file_resource_definitions_perf_perf_proto_rawDescData = file_resource_definitions_perf_perf_proto_rawDesc
file_resource_definitions_perf_perf_proto_rawDescData []byte
)
func file_resource_definitions_perf_perf_proto_rawDescGZIP() []byte {
file_resource_definitions_perf_perf_proto_rawDescOnce.Do(func() {
file_resource_definitions_perf_perf_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_perf_perf_proto_rawDescData)
file_resource_definitions_perf_perf_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_perf_perf_proto_rawDesc), len(file_resource_definitions_perf_perf_proto_rawDesc)))
})
return file_resource_definitions_perf_perf_proto_rawDescData
}
@ -853,7 +854,7 @@ func file_resource_definitions_perf_perf_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_perf_perf_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_perf_perf_proto_rawDesc), len(file_resource_definitions_perf_perf_proto_rawDesc)),
NumEnums: 0,
NumMessages: 3,
NumExtensions: 0,
@ -864,7 +865,6 @@ func file_resource_definitions_perf_perf_proto_init() {
MessageInfos: file_resource_definitions_perf_perf_proto_msgTypes,
}.Build()
File_resource_definitions_perf_perf_proto = out.File
file_resource_definitions_perf_perf_proto_rawDesc = nil
file_resource_definitions_perf_perf_proto_goTypes = nil
file_resource_definitions_perf_perf_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/proto/proto.proto
@ -9,6 +9,7 @@ package proto
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -169,7 +170,7 @@ func (x *Mount) GetGidMappings() []*LinuxIDMapping {
var File_resource_definitions_proto_proto_proto protoreflect.FileDescriptor
var file_resource_definitions_proto_proto_proto_rawDesc = []byte{
var file_resource_definitions_proto_proto_proto_rawDesc = string([]byte{
0x0a, 0x26, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x20, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2e,
@ -207,16 +208,16 @@ var file_resource_definitions_proto_proto_proto_rawDesc = []byte{
0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66,
0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_proto_proto_proto_rawDescOnce sync.Once
file_resource_definitions_proto_proto_proto_rawDescData = file_resource_definitions_proto_proto_proto_rawDesc
file_resource_definitions_proto_proto_proto_rawDescData []byte
)
func file_resource_definitions_proto_proto_proto_rawDescGZIP() []byte {
file_resource_definitions_proto_proto_proto_rawDescOnce.Do(func() {
file_resource_definitions_proto_proto_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_proto_proto_proto_rawDescData)
file_resource_definitions_proto_proto_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_proto_proto_proto_rawDesc), len(file_resource_definitions_proto_proto_proto_rawDesc)))
})
return file_resource_definitions_proto_proto_proto_rawDescData
}
@ -245,7 +246,7 @@ func file_resource_definitions_proto_proto_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_proto_proto_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_proto_proto_proto_rawDesc), len(file_resource_definitions_proto_proto_proto_rawDesc)),
NumEnums: 0,
NumMessages: 2,
NumExtensions: 0,
@ -256,7 +257,6 @@ func file_resource_definitions_proto_proto_proto_init() {
MessageInfos: file_resource_definitions_proto_proto_proto_msgTypes,
}.Build()
File_resource_definitions_proto_proto_proto = out.File
file_resource_definitions_proto_proto_proto_rawDesc = nil
file_resource_definitions_proto_proto_proto_goTypes = nil
file_resource_definitions_proto_proto_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/runtime/runtime.proto
@ -9,6 +9,7 @@ package runtime
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -1257,7 +1258,7 @@ func (x *WatchdogTimerStatusSpec) GetFeedInterval() *durationpb.Duration {
var File_resource_definitions_runtime_runtime_proto protoreflect.FileDescriptor
var file_resource_definitions_runtime_runtime_proto_rawDesc = []byte{
var file_resource_definitions_runtime_runtime_proto_rawDesc = string([]byte{
0x0a, 0x2a, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x72, 0x75, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x2f, 0x72,
0x75, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x22, 0x74, 0x61,
@ -1430,16 +1431,16 @@ var file_resource_definitions_runtime_runtime_proto_rawDesc = []byte{
0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65,
0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x72, 0x75, 0x6e, 0x74, 0x69, 0x6d,
0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_runtime_runtime_proto_rawDescOnce sync.Once
file_resource_definitions_runtime_runtime_proto_rawDescData = file_resource_definitions_runtime_runtime_proto_rawDesc
file_resource_definitions_runtime_runtime_proto_rawDescData []byte
)
func file_resource_definitions_runtime_runtime_proto_rawDescGZIP() []byte {
file_resource_definitions_runtime_runtime_proto_rawDescOnce.Do(func() {
file_resource_definitions_runtime_runtime_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_runtime_runtime_proto_rawDescData)
file_resource_definitions_runtime_runtime_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_runtime_runtime_proto_rawDesc), len(file_resource_definitions_runtime_runtime_proto_rawDesc)))
})
return file_resource_definitions_runtime_runtime_proto_rawDescData
}
@ -1499,7 +1500,7 @@ func file_resource_definitions_runtime_runtime_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_runtime_runtime_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_runtime_runtime_proto_rawDesc), len(file_resource_definitions_runtime_runtime_proto_rawDesc)),
NumEnums: 0,
NumMessages: 22,
NumExtensions: 0,
@ -1510,7 +1511,6 @@ func file_resource_definitions_runtime_runtime_proto_init() {
MessageInfos: file_resource_definitions_runtime_runtime_proto_msgTypes,
}.Build()
File_resource_definitions_runtime_runtime_proto = out.File
file_resource_definitions_runtime_runtime_proto_rawDesc = nil
file_resource_definitions_runtime_runtime_proto_goTypes = nil
file_resource_definitions_runtime_runtime_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/secrets/secrets.proto
@ -9,6 +9,7 @@ package secrets
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -837,7 +838,7 @@ func (x *TrustdCertsSpec) GetAcceptedCAs() []*common.PEMEncodedCertificate {
var File_resource_definitions_secrets_secrets_proto protoreflect.FileDescriptor
var file_resource_definitions_secrets_secrets_proto_rawDesc = []byte{
var file_resource_definitions_secrets_secrets_proto_rawDesc = string([]byte{
0x0a, 0x2a, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x2f, 0x73,
0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x22, 0x74, 0x61,
@ -1027,16 +1028,16 @@ var file_resource_definitions_secrets_secrets_proto_rawDesc = []byte{
0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66,
0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_secrets_secrets_proto_rawDescOnce sync.Once
file_resource_definitions_secrets_secrets_proto_rawDescData = file_resource_definitions_secrets_secrets_proto_rawDesc
file_resource_definitions_secrets_secrets_proto_rawDescData []byte
)
func file_resource_definitions_secrets_secrets_proto_rawDescGZIP() []byte {
file_resource_definitions_secrets_secrets_proto_rawDescOnce.Do(func() {
file_resource_definitions_secrets_secrets_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_secrets_secrets_proto_rawDescData)
file_resource_definitions_secrets_secrets_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_secrets_secrets_proto_rawDesc), len(file_resource_definitions_secrets_secrets_proto_rawDesc)))
})
return file_resource_definitions_secrets_secrets_proto_rawDescData
}
@ -1107,7 +1108,7 @@ func file_resource_definitions_secrets_secrets_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_secrets_secrets_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_secrets_secrets_proto_rawDesc), len(file_resource_definitions_secrets_secrets_proto_rawDesc)),
NumEnums: 0,
NumMessages: 12,
NumExtensions: 0,
@ -1118,7 +1119,6 @@ func file_resource_definitions_secrets_secrets_proto_init() {
MessageInfos: file_resource_definitions_secrets_secrets_proto_msgTypes,
}.Build()
File_resource_definitions_secrets_secrets_proto = out.File
file_resource_definitions_secrets_secrets_proto_rawDesc = nil
file_resource_definitions_secrets_secrets_proto_goTypes = nil
file_resource_definitions_secrets_secrets_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/siderolink/siderolink.proto
@ -9,6 +9,7 @@ package siderolink
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -224,7 +225,7 @@ func (x *TunnelSpec) GetNodeAddress() *common.NetIPPort {
var File_resource_definitions_siderolink_siderolink_proto protoreflect.FileDescriptor
var file_resource_definitions_siderolink_siderolink_proto_rawDesc = []byte{
var file_resource_definitions_siderolink_siderolink_proto_rawDesc = string([]byte{
0x0a, 0x30, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x69, 0x6e,
0x6b, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x69, 0x6e, 0x6b, 0x2e, 0x70, 0x72, 0x6f,
@ -264,16 +265,16 @@ var file_resource_definitions_siderolink_siderolink_proto_rawDesc = []byte{
0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69,
0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x69, 0x6e, 0x6b, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_siderolink_siderolink_proto_rawDescOnce sync.Once
file_resource_definitions_siderolink_siderolink_proto_rawDescData = file_resource_definitions_siderolink_siderolink_proto_rawDesc
file_resource_definitions_siderolink_siderolink_proto_rawDescData []byte
)
func file_resource_definitions_siderolink_siderolink_proto_rawDescGZIP() []byte {
file_resource_definitions_siderolink_siderolink_proto_rawDescOnce.Do(func() {
file_resource_definitions_siderolink_siderolink_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_siderolink_siderolink_proto_rawDescData)
file_resource_definitions_siderolink_siderolink_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_siderolink_siderolink_proto_rawDesc), len(file_resource_definitions_siderolink_siderolink_proto_rawDesc)))
})
return file_resource_definitions_siderolink_siderolink_proto_rawDescData
}
@ -303,7 +304,7 @@ func file_resource_definitions_siderolink_siderolink_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_siderolink_siderolink_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_siderolink_siderolink_proto_rawDesc), len(file_resource_definitions_siderolink_siderolink_proto_rawDesc)),
NumEnums: 0,
NumMessages: 3,
NumExtensions: 0,
@ -314,7 +315,6 @@ func file_resource_definitions_siderolink_siderolink_proto_init() {
MessageInfos: file_resource_definitions_siderolink_siderolink_proto_msgTypes,
}.Build()
File_resource_definitions_siderolink_siderolink_proto = out.File
file_resource_definitions_siderolink_siderolink_proto_rawDesc = nil
file_resource_definitions_siderolink_siderolink_proto_goTypes = nil
file_resource_definitions_siderolink_siderolink_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/time/time.proto
@ -9,6 +9,7 @@ package time
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -186,7 +187,7 @@ func (x *StatusSpec) GetSyncDisabled() bool {
var File_resource_definitions_time_time_proto protoreflect.FileDescriptor
var file_resource_definitions_time_time_proto_rawDesc = []byte{
var file_resource_definitions_time_time_proto_rawDesc = string([]byte{
0x0a, 0x24, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x6d, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2e, 0x72, 0x65,
@ -230,16 +231,16 @@ var file_resource_definitions_time_time_proto_rawDesc = []byte{
0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65,
0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_time_time_proto_rawDescOnce sync.Once
file_resource_definitions_time_time_proto_rawDescData = file_resource_definitions_time_time_proto_rawDesc
file_resource_definitions_time_time_proto_rawDescData []byte
)
func file_resource_definitions_time_time_proto_rawDescGZIP() []byte {
file_resource_definitions_time_time_proto_rawDescOnce.Do(func() {
file_resource_definitions_time_time_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_time_time_proto_rawDescData)
file_resource_definitions_time_time_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_time_time_proto_rawDesc), len(file_resource_definitions_time_time_proto_rawDesc)))
})
return file_resource_definitions_time_time_proto_rawDescData
}
@ -270,7 +271,7 @@ func file_resource_definitions_time_time_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_time_time_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_time_time_proto_rawDesc), len(file_resource_definitions_time_time_proto_rawDesc)),
NumEnums: 0,
NumMessages: 2,
NumExtensions: 0,
@ -281,7 +282,6 @@ func file_resource_definitions_time_time_proto_init() {
MessageInfos: file_resource_definitions_time_time_proto_msgTypes,
}.Build()
File_resource_definitions_time_time_proto = out.File
file_resource_definitions_time_time_proto_rawDesc = nil
file_resource_definitions_time_time_proto_goTypes = nil
file_resource_definitions_time_time_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/definitions/v1alpha1/v1alpha1.proto
@ -9,6 +9,7 @@ package v1alpha1
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -84,7 +85,7 @@ func (x *ServiceSpec) GetUnknown() bool {
var File_resource_definitions_v1alpha1_v1alpha1_proto protoreflect.FileDescriptor
var file_resource_definitions_v1alpha1_v1alpha1_proto_rawDesc = []byte{
var file_resource_definitions_v1alpha1_v1alpha1_proto_rawDesc = string([]byte{
0x0a, 0x2c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2f,
0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x23,
@ -105,16 +106,16 @@ var file_resource_definitions_v1alpha1_v1alpha1_proto_rawDesc = []byte{
0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69,
0x6f, 0x6e, 0x73, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_resource_definitions_v1alpha1_v1alpha1_proto_rawDescOnce sync.Once
file_resource_definitions_v1alpha1_v1alpha1_proto_rawDescData = file_resource_definitions_v1alpha1_v1alpha1_proto_rawDesc
file_resource_definitions_v1alpha1_v1alpha1_proto_rawDescData []byte
)
func file_resource_definitions_v1alpha1_v1alpha1_proto_rawDescGZIP() []byte {
file_resource_definitions_v1alpha1_v1alpha1_proto_rawDescOnce.Do(func() {
file_resource_definitions_v1alpha1_v1alpha1_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_definitions_v1alpha1_v1alpha1_proto_rawDescData)
file_resource_definitions_v1alpha1_v1alpha1_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_definitions_v1alpha1_v1alpha1_proto_rawDesc), len(file_resource_definitions_v1alpha1_v1alpha1_proto_rawDesc)))
})
return file_resource_definitions_v1alpha1_v1alpha1_proto_rawDescData
}
@ -140,7 +141,7 @@ func file_resource_definitions_v1alpha1_v1alpha1_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_definitions_v1alpha1_v1alpha1_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_definitions_v1alpha1_v1alpha1_proto_rawDesc), len(file_resource_definitions_v1alpha1_v1alpha1_proto_rawDesc)),
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
@ -151,7 +152,6 @@ func file_resource_definitions_v1alpha1_v1alpha1_proto_init() {
MessageInfos: file_resource_definitions_v1alpha1_v1alpha1_proto_msgTypes,
}.Build()
File_resource_definitions_v1alpha1_v1alpha1_proto = out.File
file_resource_definitions_v1alpha1_v1alpha1_proto_rawDesc = nil
file_resource_definitions_v1alpha1_v1alpha1_proto_goTypes = nil
file_resource_definitions_v1alpha1_v1alpha1_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: resource/network/device_config.proto
@ -9,6 +9,7 @@ package network
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -69,7 +70,7 @@ func (x *DeviceConfigSpecSpec) GetYamlMarshalled() []byte {
var File_resource_network_device_config_proto protoreflect.FileDescriptor
var file_resource_network_device_config_proto_rawDesc = []byte{
var file_resource_network_device_config_proto_rawDesc = string([]byte{
0x0a, 0x24, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x6e, 0x65, 0x74, 0x77, 0x6f,
0x72, 0x6b, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
@ -85,16 +86,16 @@ var file_resource_network_device_config_proto_rawDesc = []byte{
0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x2f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
})
var (
file_resource_network_device_config_proto_rawDescOnce sync.Once
file_resource_network_device_config_proto_rawDescData = file_resource_network_device_config_proto_rawDesc
file_resource_network_device_config_proto_rawDescData []byte
)
func file_resource_network_device_config_proto_rawDescGZIP() []byte {
file_resource_network_device_config_proto_rawDescOnce.Do(func() {
file_resource_network_device_config_proto_rawDescData = protoimpl.X.CompressGZIP(file_resource_network_device_config_proto_rawDescData)
file_resource_network_device_config_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_resource_network_device_config_proto_rawDesc), len(file_resource_network_device_config_proto_rawDesc)))
})
return file_resource_network_device_config_proto_rawDescData
}
@ -120,7 +121,7 @@ func file_resource_network_device_config_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_resource_network_device_config_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_resource_network_device_config_proto_rawDesc), len(file_resource_network_device_config_proto_rawDesc)),
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
@ -131,7 +132,6 @@ func file_resource_network_device_config_proto_init() {
MessageInfos: file_resource_network_device_config_proto_msgTypes,
}.Build()
File_resource_network_device_config_proto = out.File
file_resource_network_device_config_proto_rawDesc = nil
file_resource_network_device_config_proto_goTypes = nil
file_resource_network_device_config_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: security/security.proto
@ -9,6 +9,7 @@ package security
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -124,7 +125,7 @@ func (x *CertificateResponse) GetCrt() []byte {
var File_security_security_proto protoreflect.FileDescriptor
var file_security_security_proto_rawDesc = []byte{
var file_security_security_proto_rawDesc = string([]byte{
0x0a, 0x17, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x2f, 0x73, 0x65, 0x63, 0x75, 0x72,
0x69, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0b, 0x73, 0x65, 0x63, 0x75, 0x72,
0x69, 0x74, 0x79, 0x61, 0x70, 0x69, 0x22, 0x26, 0x0a, 0x12, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66,
@ -146,16 +147,16 @@ var file_security_security_proto_rawDesc = []byte{
0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72,
0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_security_security_proto_rawDescOnce sync.Once
file_security_security_proto_rawDescData = file_security_security_proto_rawDesc
file_security_security_proto_rawDescData []byte
)
func file_security_security_proto_rawDescGZIP() []byte {
file_security_security_proto_rawDescOnce.Do(func() {
file_security_security_proto_rawDescData = protoimpl.X.CompressGZIP(file_security_security_proto_rawDescData)
file_security_security_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_security_security_proto_rawDesc), len(file_security_security_proto_rawDesc)))
})
return file_security_security_proto_rawDescData
}
@ -184,7 +185,7 @@ func file_security_security_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_security_security_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_security_security_proto_rawDesc), len(file_security_security_proto_rawDesc)),
NumEnums: 0,
NumMessages: 2,
NumExtensions: 0,
@ -195,7 +196,6 @@ func file_security_security_proto_init() {
MessageInfos: file_security_security_proto_msgTypes,
}.Build()
File_security_security_proto = out.File
file_security_security_proto_rawDesc = nil
file_security_security_proto_goTypes = nil
file_security_security_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: storage/storage.proto
@ -9,6 +9,7 @@ package storage
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -585,7 +586,7 @@ func (x *BlockDeviceWipe) GetMetadata() *common.Metadata {
var File_storage_storage_proto protoreflect.FileDescriptor
var file_storage_storage_proto_rawDesc = []byte{
var file_storage_storage_proto_rawDesc = string([]byte{
0x0a, 0x15, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x2f, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65,
0x1a, 0x13, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
@ -670,16 +671,16 @@ var file_storage_storage_proto_rawDesc = []byte{
0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b,
0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f,
0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_storage_storage_proto_rawDescOnce sync.Once
file_storage_storage_proto_rawDescData = file_storage_storage_proto_rawDesc
file_storage_storage_proto_rawDescData []byte
)
func file_storage_storage_proto_rawDescGZIP() []byte {
file_storage_storage_proto_rawDescOnce.Do(func() {
file_storage_storage_proto_rawDescData = protoimpl.X.CompressGZIP(file_storage_storage_proto_rawDescData)
file_storage_storage_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_storage_storage_proto_rawDesc), len(file_storage_storage_proto_rawDesc)))
})
return file_storage_storage_proto_rawDescData
}
@ -728,7 +729,7 @@ func file_storage_storage_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_storage_storage_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_storage_storage_proto_rawDesc), len(file_storage_storage_proto_rawDesc)),
NumEnums: 2,
NumMessages: 7,
NumExtensions: 0,
@ -740,7 +741,6 @@ func file_storage_storage_proto_init() {
MessageInfos: file_storage_storage_proto_msgTypes,
}.Build()
File_storage_storage_proto = out.File
file_storage_storage_proto_rawDesc = nil
file_storage_storage_proto_goTypes = nil
file_storage_storage_proto_depIdxs = nil
}

View File

@ -1,6 +1,6 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.3
// protoc-gen-go v1.36.5
// protoc v5.29.3
// source: time/time.proto
@ -9,6 +9,7 @@ package time
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@ -185,7 +186,7 @@ func (x *TimeResponse) GetMessages() []*Time {
var File_time_time_proto protoreflect.FileDescriptor
var file_time_time_proto_rawDesc = []byte{
var file_time_time_proto_rawDesc = string([]byte{
0x0a, 0x0f, 0x74, 0x69, 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x04, 0x74, 0x69, 0x6d, 0x65, 0x1a, 0x13, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f,
@ -224,16 +225,16 @@ var file_time_time_proto_rawDesc = []byte{
0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63,
0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
})
var (
file_time_time_proto_rawDescOnce sync.Once
file_time_time_proto_rawDescData = file_time_time_proto_rawDesc
file_time_time_proto_rawDescData []byte
)
func file_time_time_proto_rawDescGZIP() []byte {
file_time_time_proto_rawDescOnce.Do(func() {
file_time_time_proto_rawDescData = protoimpl.X.CompressGZIP(file_time_time_proto_rawDescData)
file_time_time_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_time_time_proto_rawDesc), len(file_time_time_proto_rawDesc)))
})
return file_time_time_proto_rawDescData
}
@ -272,7 +273,7 @@ func file_time_time_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_time_time_proto_rawDesc,
RawDescriptor: unsafe.Slice(unsafe.StringData(file_time_time_proto_rawDesc), len(file_time_time_proto_rawDesc)),
NumEnums: 0,
NumMessages: 3,
NumExtensions: 0,
@ -283,7 +284,6 @@ func file_time_time_proto_init() {
MessageInfos: file_time_time_proto_msgTypes,
}.Build()
File_time_time_proto = out.File
file_time_time_proto_rawDesc = nil
file_time_time_proto_goTypes = nil
file_time_time_proto_depIdxs = nil
}

View File

@ -1094,7 +1094,7 @@ const (
DBusClientSocketLabel = "system_u:object_r:dbus_client_socket_t:s0"
// GoVersion is the version of Go compiler this release was built with.
GoVersion = "go1.23.6"
GoVersion = "go1.24.0"
// KubernetesTalosAPIServiceName is the name of the Kubernetes service to access Talos API.
KubernetesTalosAPIServiceName = "talos"

View File

@ -1 +1 @@
v1.10.0-alpha.0-36-g117a1d6
v1.10.0-alpha.0-38-g76a0316

View File

@ -1,6 +1,6 @@
module github.com/siderolabs/talos/pkg/machinery
go 1.23.6
go 1.24.0
replace (
// forked ethtool introduces missing APIs