mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-11-09 07:17:10 -05:00
deps: hold back terraform-plugin deps
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
parent
f8d2b8cb7f
commit
b9077150f8
21 changed files with 57 additions and 41 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
// versions:
|
// versions:
|
||||||
// protoc-gen-go v1.36.6
|
// protoc-gen-go v1.36.10
|
||||||
// protoc v5.29.1
|
// protoc v5.29.1
|
||||||
// source: bootstrapper/initproto/init.proto
|
// source: bootstrapper/initproto/init.proto
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,9 @@ const _SystemdAction_name = "UnknownStartStopRestartReload"
|
||||||
var _SystemdAction_index = [...]uint8{0, 7, 12, 16, 23, 29}
|
var _SystemdAction_index = [...]uint8{0, 7, 12, 16, 23, 29}
|
||||||
|
|
||||||
func (i SystemdAction) String() string {
|
func (i SystemdAction) String() string {
|
||||||
if i >= SystemdAction(len(_SystemdAction_index)-1) {
|
idx := int(i) - 0
|
||||||
|
if i < 0 || idx >= len(_SystemdAction_index)-1 {
|
||||||
return "SystemdAction(" + strconv.FormatInt(int64(i), 10) + ")"
|
return "SystemdAction(" + strconv.FormatInt(int64(i), 10) + ")"
|
||||||
}
|
}
|
||||||
return _SystemdAction_name[_SystemdAction_index[i]:_SystemdAction_index[i+1]]
|
return _SystemdAction_name[_SystemdAction_index[idx]:_SystemdAction_index[idx+1]]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
// versions:
|
// versions:
|
||||||
// protoc-gen-go v1.36.6
|
// protoc-gen-go v1.36.10
|
||||||
// protoc v5.29.1
|
// protoc v5.29.1
|
||||||
// source: debugd/service/debugd.proto
|
// source: debugd/service/debugd.proto
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
// versions:
|
// versions:
|
||||||
// protoc-gen-go v1.36.6
|
// protoc-gen-go v1.36.10
|
||||||
// protoc v5.29.1
|
// protoc v5.29.1
|
||||||
// source: disk-mapper/recoverproto/recover.proto
|
// source: disk-mapper/recoverproto/recover.proto
|
||||||
|
|
||||||
|
|
|
||||||
10
go.mod
10
go.mod
|
|
@ -44,7 +44,6 @@ require (
|
||||||
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azsecrets v1.4.0
|
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azsecrets v1.4.0
|
||||||
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.6.2
|
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.6.2
|
||||||
github.com/BurntSushi/toml v1.5.0
|
github.com/BurntSushi/toml v1.5.0
|
||||||
github.com/aws/aws-sdk-go v1.55.8
|
|
||||||
github.com/aws/aws-sdk-go-v2 v1.39.2
|
github.com/aws/aws-sdk-go-v2 v1.39.2
|
||||||
github.com/aws/aws-sdk-go-v2/config v1.31.12
|
github.com/aws/aws-sdk-go-v2/config v1.31.12
|
||||||
github.com/aws/aws-sdk-go-v2/credentials v1.18.16
|
github.com/aws/aws-sdk-go-v2/credentials v1.18.16
|
||||||
|
|
@ -88,9 +87,9 @@ require (
|
||||||
github.com/hashicorp/hcl/v2 v2.24.0
|
github.com/hashicorp/hcl/v2 v2.24.0
|
||||||
github.com/hashicorp/terraform-exec v0.24.0
|
github.com/hashicorp/terraform-exec v0.24.0
|
||||||
github.com/hashicorp/terraform-json v0.27.2
|
github.com/hashicorp/terraform-json v0.27.2
|
||||||
github.com/hashicorp/terraform-plugin-framework v1.16.1
|
github.com/hashicorp/terraform-plugin-framework v1.15.1
|
||||||
github.com/hashicorp/terraform-plugin-framework-validators v0.19.0
|
github.com/hashicorp/terraform-plugin-framework-validators v0.18.0
|
||||||
github.com/hashicorp/terraform-plugin-go v0.29.0
|
github.com/hashicorp/terraform-plugin-go v0.28.0
|
||||||
github.com/hashicorp/terraform-plugin-log v0.9.0
|
github.com/hashicorp/terraform-plugin-log v0.9.0
|
||||||
github.com/hashicorp/terraform-plugin-testing v1.13.3
|
github.com/hashicorp/terraform-plugin-testing v1.13.3
|
||||||
github.com/hexops/gotextdiff v1.0.3
|
github.com/hexops/gotextdiff v1.0.3
|
||||||
|
|
@ -179,6 +178,7 @@ require (
|
||||||
github.com/agext/levenshtein v1.2.2 // indirect
|
github.com/agext/levenshtein v1.2.2 // indirect
|
||||||
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
|
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
|
||||||
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
|
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
|
||||||
|
github.com/aws/aws-sdk-go v1.55.8 // indirect
|
||||||
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.1 // indirect
|
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.1 // indirect
|
||||||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.9 // indirect
|
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.9 // indirect
|
||||||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.9 // indirect
|
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.9 // indirect
|
||||||
|
|
@ -367,7 +367,7 @@ require (
|
||||||
github.com/vtolstov/go-ioctl v0.0.0-20151206205506-6be9cced4810 // indirect
|
github.com/vtolstov/go-ioctl v0.0.0-20151206205506-6be9cced4810 // indirect
|
||||||
github.com/x448/float16 v0.8.4 // indirect
|
github.com/x448/float16 v0.8.4 // indirect
|
||||||
github.com/xlab/treeprint v1.2.0 // indirect
|
github.com/xlab/treeprint v1.2.0 // indirect
|
||||||
github.com/zclconf/go-cty v1.16.4 // indirect
|
github.com/zclconf/go-cty v1.17.0 // indirect
|
||||||
github.com/zeebo/errs v1.4.0 // indirect
|
github.com/zeebo/errs v1.4.0 // indirect
|
||||||
go.mongodb.org/mongo-driver v1.14.0 // indirect
|
go.mongodb.org/mongo-driver v1.14.0 // indirect
|
||||||
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
|
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
|
||||||
|
|
|
||||||
16
go.sum
16
go.sum
|
|
@ -535,12 +535,12 @@ github.com/hashicorp/terraform-exec v0.24.0 h1:mL0xlk9H5g2bn0pPF6JQZk5YlByqSqrO5
|
||||||
github.com/hashicorp/terraform-exec v0.24.0/go.mod h1:lluc/rDYfAhYdslLJQg3J0oDqo88oGQAdHR+wDqFvo4=
|
github.com/hashicorp/terraform-exec v0.24.0/go.mod h1:lluc/rDYfAhYdslLJQg3J0oDqo88oGQAdHR+wDqFvo4=
|
||||||
github.com/hashicorp/terraform-json v0.27.2 h1:BwGuzM6iUPqf9JYM/Z4AF1OJ5VVJEEzoKST/tRDBJKU=
|
github.com/hashicorp/terraform-json v0.27.2 h1:BwGuzM6iUPqf9JYM/Z4AF1OJ5VVJEEzoKST/tRDBJKU=
|
||||||
github.com/hashicorp/terraform-json v0.27.2/go.mod h1:GzPLJ1PLdUG5xL6xn1OXWIjteQRT2CNT9o/6A9mi9hE=
|
github.com/hashicorp/terraform-json v0.27.2/go.mod h1:GzPLJ1PLdUG5xL6xn1OXWIjteQRT2CNT9o/6A9mi9hE=
|
||||||
github.com/hashicorp/terraform-plugin-framework v1.16.1 h1:1+zwFm3MEqd/0K3YBB2v9u9DtyYHyEuhVOfeIXbteWA=
|
github.com/hashicorp/terraform-plugin-framework v1.15.1 h1:2mKDkwb8rlx/tvJTlIcpw0ykcmvdWv+4gY3SIgk8Pq8=
|
||||||
github.com/hashicorp/terraform-plugin-framework v1.16.1/go.mod h1:0xFOxLy5lRzDTayc4dzK/FakIgBhNf/lC4499R9cV4Y=
|
github.com/hashicorp/terraform-plugin-framework v1.15.1/go.mod h1:hxrNI/GY32KPISpWqlCoTLM9JZsGH3CyYlir09bD/fI=
|
||||||
github.com/hashicorp/terraform-plugin-framework-validators v0.19.0 h1:Zz3iGgzxe/1XBkooZCewS0nJAaCFPFPHdNJd8FgE4Ow=
|
github.com/hashicorp/terraform-plugin-framework-validators v0.18.0 h1:OQnlOt98ua//rCw+QhBbSqfW3QbwtVrcdWeQN5gI3Hw=
|
||||||
github.com/hashicorp/terraform-plugin-framework-validators v0.19.0/go.mod h1:GBKTNGbGVJohU03dZ7U8wHqc2zYnMUawgCN+gC0itLc=
|
github.com/hashicorp/terraform-plugin-framework-validators v0.18.0/go.mod h1:lZvZvagw5hsJwuY7mAY6KUz45/U6fiDR0CzQAwWD0CA=
|
||||||
github.com/hashicorp/terraform-plugin-go v0.29.0 h1:1nXKl/nSpaYIUBU1IG/EsDOX0vv+9JxAltQyDMpq5mU=
|
github.com/hashicorp/terraform-plugin-go v0.28.0 h1:zJmu2UDwhVN0J+J20RE5huiF3XXlTYVIleaevHZgKPA=
|
||||||
github.com/hashicorp/terraform-plugin-go v0.29.0/go.mod h1:vYZbIyvxyy0FWSmDHChCqKvI40cFTDGSb3D8D70i9GM=
|
github.com/hashicorp/terraform-plugin-go v0.28.0/go.mod h1:FDa2Bb3uumkTGSkTFpWSOwWJDwA7bf3vdP3ltLDTH6o=
|
||||||
github.com/hashicorp/terraform-plugin-log v0.9.0 h1:i7hOA+vdAItN1/7UrfBqBwvYPQ9TFvymaRGZED3FCV0=
|
github.com/hashicorp/terraform-plugin-log v0.9.0 h1:i7hOA+vdAItN1/7UrfBqBwvYPQ9TFvymaRGZED3FCV0=
|
||||||
github.com/hashicorp/terraform-plugin-log v0.9.0/go.mod h1:rKL8egZQ/eXSyDqzLUuwUYLVdlYeamldAHSxjUFADow=
|
github.com/hashicorp/terraform-plugin-log v0.9.0/go.mod h1:rKL8egZQ/eXSyDqzLUuwUYLVdlYeamldAHSxjUFADow=
|
||||||
github.com/hashicorp/terraform-plugin-sdk/v2 v2.37.0 h1:NFPMacTrY/IdcIcnUB+7hsore1ZaRWU9cnB6jFoBnIM=
|
github.com/hashicorp/terraform-plugin-sdk/v2 v2.37.0 h1:NFPMacTrY/IdcIcnUB+7hsore1ZaRWU9cnB6jFoBnIM=
|
||||||
|
|
@ -841,8 +841,8 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec
|
||||||
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
|
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
|
||||||
github.com/zalando/go-keyring v0.2.3 h1:v9CUu9phlABObO4LPWycf+zwMG7nlbb3t/B5wa97yms=
|
github.com/zalando/go-keyring v0.2.3 h1:v9CUu9phlABObO4LPWycf+zwMG7nlbb3t/B5wa97yms=
|
||||||
github.com/zalando/go-keyring v0.2.3/go.mod h1:HL4k+OXQfJUWaMnqyuSOc0drfGPX2b51Du6K+MRgZMk=
|
github.com/zalando/go-keyring v0.2.3/go.mod h1:HL4k+OXQfJUWaMnqyuSOc0drfGPX2b51Du6K+MRgZMk=
|
||||||
github.com/zclconf/go-cty v1.16.4 h1:QGXaag7/7dCzb+odlGrgr+YmYZFaOCMW6DEpS+UD1eE=
|
github.com/zclconf/go-cty v1.17.0 h1:seZvECve6XX4tmnvRzWtJNHdscMtYEx5R7bnnVyd/d0=
|
||||||
github.com/zclconf/go-cty v1.16.4/go.mod h1:VvMs5i0vgZdhYawQNq5kePSpLAoz8u1xvZgrPIxfnZE=
|
github.com/zclconf/go-cty v1.17.0/go.mod h1:wqFzcImaLTI6A5HfsRwB0nj5n0MRZFwmey8YoFPPs3U=
|
||||||
github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940 h1:4r45xpDWB6ZMSMNJFMOjqrGHynW3DIBuR2H9j0ug+Mo=
|
github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940 h1:4r45xpDWB6ZMSMNJFMOjqrGHynW3DIBuR2H9j0ug+Mo=
|
||||||
github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940/go.mod h1:CmBdvvj3nqzfzJ6nTCIwDTPZ56aVGvDrmztiO5g3qrM=
|
github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940/go.mod h1:CmBdvvj3nqzfzJ6nTCIwDTPZ56aVGvDrmztiO5g3qrM=
|
||||||
github.com/zeebo/errs v1.4.0 h1:XNdoD/RRMKP7HD0UhJnIzUy74ISdGGxURlYG8HSWSfM=
|
github.com/zeebo/errs v1.4.0 h1:XNdoD/RRMKP7HD0UhJnIzUy74ISdGGxURlYG8HSWSfM=
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@ go_library(
|
||||||
"//internal/attestation/variant",
|
"//internal/attestation/variant",
|
||||||
"//internal/sigstore",
|
"//internal/sigstore",
|
||||||
"//internal/staticupload",
|
"//internal/staticupload",
|
||||||
"@com_github_aws_aws_sdk_go//aws",
|
|
||||||
"@com_github_aws_aws_sdk_go_v2_service_s3//:s3",
|
"@com_github_aws_aws_sdk_go_v2_service_s3//:s3",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/aws/aws-sdk-go-v2/service/s3"
|
"github.com/aws/aws-sdk-go-v2/service/s3"
|
||||||
"github.com/aws/aws-sdk-go/aws"
|
|
||||||
"github.com/edgelesssys/constellation/v2/internal/api/attestationconfigapi"
|
"github.com/edgelesssys/constellation/v2/internal/api/attestationconfigapi"
|
||||||
apiclient "github.com/edgelesssys/constellation/v2/internal/api/client"
|
apiclient "github.com/edgelesssys/constellation/v2/internal/api/client"
|
||||||
"github.com/edgelesssys/constellation/v2/internal/attestation/variant"
|
"github.com/edgelesssys/constellation/v2/internal/attestation/variant"
|
||||||
|
|
@ -112,8 +111,8 @@ func (c Client) deleteVersion(versions attestationconfigapi.List, versionStr str
|
||||||
|
|
||||||
func (c Client) listCachedVersions(ctx context.Context, attestation variant.Variant) ([]string, error) {
|
func (c Client) listCachedVersions(ctx context.Context, attestation variant.Variant) ([]string, error) {
|
||||||
list, err := c.s3Client.ListObjectsV2(ctx, &s3.ListObjectsV2Input{
|
list, err := c.s3Client.ListObjectsV2(ctx, &s3.ListObjectsV2Input{
|
||||||
Bucket: aws.String(c.bucketID),
|
Bucket: toPtr(c.bucketID),
|
||||||
Prefix: aws.String(reportVersionDir(attestation)),
|
Prefix: toPtr(reportVersionDir(attestation)),
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("list objects: %w", err)
|
return nil, fmt.Errorf("list objects: %w", err)
|
||||||
|
|
@ -176,3 +175,7 @@ func executeAllCmds(ctx context.Context, client *apiclient.Client, cmds []crudCm
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func toPtr(s string) *string {
|
||||||
|
return &s
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,9 @@ const _Enforcement_name = "UnknownEqualMAAFallbackWarnOnly"
|
||||||
var _Enforcement_index = [...]uint8{0, 7, 12, 23, 31}
|
var _Enforcement_index = [...]uint8{0, 7, 12, 23, 31}
|
||||||
|
|
||||||
func (i Enforcement) String() string {
|
func (i Enforcement) String() string {
|
||||||
if i >= Enforcement(len(_Enforcement_index)-1) {
|
idx := int(i) - 0
|
||||||
|
if i < 0 || idx >= len(_Enforcement_index)-1 {
|
||||||
return "Enforcement(" + strconv.FormatInt(int64(i), 10) + ")"
|
return "Enforcement(" + strconv.FormatInt(int64(i), 10) + ")"
|
||||||
}
|
}
|
||||||
return _Enforcement_name[_Enforcement_index[i]:_Enforcement_index[i+1]]
|
return _Enforcement_name[_Enforcement_index[idx]:_Enforcement_index[idx+1]]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,9 @@ const _AuthMethod_name = "UnknownServicePrincipalUserAssignedIdentity"
|
||||||
var _AuthMethod_index = [...]uint8{0, 7, 23, 43}
|
var _AuthMethod_index = [...]uint8{0, 7, 23, 43}
|
||||||
|
|
||||||
func (i AuthMethod) String() string {
|
func (i AuthMethod) String() string {
|
||||||
if i >= AuthMethod(len(_AuthMethod_index)-1) {
|
idx := int(i) - 0
|
||||||
|
if i < 0 || idx >= len(_AuthMethod_index)-1 {
|
||||||
return "AuthMethod(" + strconv.FormatInt(int64(i), 10) + ")"
|
return "AuthMethod(" + strconv.FormatInt(int64(i), 10) + ")"
|
||||||
}
|
}
|
||||||
return _AuthMethod_name[_AuthMethod_index[i]:_AuthMethod_index[i+1]]
|
return _AuthMethod_name[_AuthMethod_index[idx]:_AuthMethod_index[idx+1]]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -21,8 +21,9 @@ const _Provider_name = "UnknownAWSAzureGCPOpenStackQEMU"
|
||||||
var _Provider_index = [...]uint8{0, 7, 10, 15, 18, 27, 31}
|
var _Provider_index = [...]uint8{0, 7, 10, 15, 18, 27, 31}
|
||||||
|
|
||||||
func (i Provider) String() string {
|
func (i Provider) String() string {
|
||||||
if i >= Provider(len(_Provider_index)-1) {
|
idx := int(i) - 0
|
||||||
|
if i < 0 || idx >= len(_Provider_index)-1 {
|
||||||
return "Provider(" + strconv.FormatInt(int64(i), 10) + ")"
|
return "Provider(" + strconv.FormatInt(int64(i), 10) + ")"
|
||||||
}
|
}
|
||||||
return _Provider_name[_Provider_index[i]:_Provider_index[i+1]]
|
return _Provider_name[_Provider_index[idx]:_Provider_index[idx+1]]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,5 @@ data:
|
||||||
}
|
}
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
creationTimestamp: null
|
|
||||||
name: edg-coredns
|
name: edg-coredns
|
||||||
namespace: kube-system
|
namespace: kube-system
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
creationTimestamp: null
|
|
||||||
labels:
|
labels:
|
||||||
k8s-app: kube-dns
|
k8s-app: kube-dns
|
||||||
name: coredns
|
name: coredns
|
||||||
|
|
@ -17,7 +16,6 @@ spec:
|
||||||
type: RollingUpdate
|
type: RollingUpdate
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
creationTimestamp: null
|
|
||||||
labels:
|
labels:
|
||||||
k8s-app: kube-dns
|
k8s-app: kube-dns
|
||||||
spec:
|
spec:
|
||||||
|
|
@ -43,7 +41,7 @@ spec:
|
||||||
failureThreshold: 5
|
failureThreshold: 5
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /health
|
path: /health
|
||||||
port: 8080
|
port: liveness-probe
|
||||||
scheme: HTTP
|
scheme: HTTP
|
||||||
initialDelaySeconds: 60
|
initialDelaySeconds: 60
|
||||||
successThreshold: 1
|
successThreshold: 1
|
||||||
|
|
@ -59,10 +57,16 @@ spec:
|
||||||
- containerPort: 9153
|
- containerPort: 9153
|
||||||
name: metrics
|
name: metrics
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
- containerPort: 8080
|
||||||
|
name: liveness-probe
|
||||||
|
protocol: TCP
|
||||||
|
- containerPort: 8181
|
||||||
|
name: readiness-probe
|
||||||
|
protocol: TCP
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /ready
|
path: /ready
|
||||||
port: 8181
|
port: readiness-probe
|
||||||
scheme: HTTP
|
scheme: HTTP
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
clusterIP: 10.96.0.10
|
clusterIP: 10.96.0.10
|
||||||
dnsDomain: cluster.local
|
dnsDomain: cluster.local
|
||||||
image: registry.k8s.io/coredns/coredns:v1.12.0@sha256:40384aa1f5ea6bfdc77997d243aec73da05f27aed0c5e9d65bfa98933c519d97
|
image: registry.k8s.io/coredns/coredns:v1.12.1@sha256:e8c262566636e6bc340ece6473b0eed193cad045384401529721ddbe6463d31c
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,9 @@ const _Role_name = "UnknownControlPlaneWorker"
|
||||||
var _Role_index = [...]uint8{0, 7, 19, 25}
|
var _Role_index = [...]uint8{0, 7, 19, 25}
|
||||||
|
|
||||||
func (i Role) String() string {
|
func (i Role) String() string {
|
||||||
if i >= Role(len(_Role_index)-1) {
|
idx := int(i) - 0
|
||||||
|
if i < 0 || idx >= len(_Role_index)-1 {
|
||||||
return "Role(" + strconv.FormatInt(int64(i), 10) + ")"
|
return "Role(" + strconv.FormatInt(int64(i), 10) + ")"
|
||||||
}
|
}
|
||||||
return _Role_name[_Role_index[i]:_Role_index[i+1]]
|
return _Role_name[_Role_index[idx]:_Role_index[idx+1]]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
// versions:
|
// versions:
|
||||||
// protoc-gen-go v1.36.6
|
// protoc-gen-go v1.36.10
|
||||||
// protoc v5.29.1
|
// protoc v5.29.1
|
||||||
// source: internal/versions/components/components.proto
|
// source: internal/versions/components/components.proto
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
// versions:
|
// versions:
|
||||||
// protoc-gen-go v1.36.6
|
// protoc-gen-go v1.36.10
|
||||||
// protoc v5.29.1
|
// protoc v5.29.1
|
||||||
// source: joinservice/joinproto/join.proto
|
// source: joinservice/joinproto/join.proto
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
// versions:
|
// versions:
|
||||||
// protoc-gen-go v1.36.6
|
// protoc-gen-go v1.36.10
|
||||||
// protoc v5.29.1
|
// protoc v5.29.1
|
||||||
// source: keyservice/keyserviceproto/keyservice.proto
|
// source: keyservice/keyserviceproto/keyservice.proto
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,12 @@
|
||||||
// Only update once they fixed dependency violations on their side.
|
// Only update once they fixed dependency violations on their side.
|
||||||
'github.com/google/go-tpm-tools',
|
'github.com/google/go-tpm-tools',
|
||||||
'terraform-provider-openstack/openstack',
|
'terraform-provider-openstack/openstack',
|
||||||
|
// terraform-plugin-go v0.29.0 breaks our protobuf generation
|
||||||
|
'github.com/hashicorp/terraform-plugin-go',
|
||||||
|
// terraform-plugin-framework v1.16.1 requires terraform-plugin-go v0.29.0
|
||||||
|
'github.com/hashicorp/terraform-plugin-framework',
|
||||||
|
// terraform-plugin-framework-validators v0.18.0 requires terraform-plugin-go v0.29.0
|
||||||
|
'github.com/hashicorp/terraform-plugin-framework-validators',
|
||||||
],
|
],
|
||||||
// Rules for changing renovates behaviour for different packages.
|
// Rules for changing renovates behaviour for different packages.
|
||||||
// The documentation for configuration options can be found here:
|
// The documentation for configuration options can be found here:
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
// versions:
|
// versions:
|
||||||
// protoc-gen-go v1.36.6
|
// protoc-gen-go v1.36.10
|
||||||
// protoc v5.29.1
|
// protoc v5.29.1
|
||||||
// source: upgrade-agent/upgradeproto/upgrade.proto
|
// source: upgrade-agent/upgradeproto/upgrade.proto
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
// versions:
|
// versions:
|
||||||
// protoc-gen-go v1.36.6
|
// protoc-gen-go v1.36.10
|
||||||
// protoc v5.29.1
|
// protoc v5.29.1
|
||||||
// source: verify/verifyproto/verify.proto
|
// source: verify/verifyproto/verify.proto
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue