Bump K8s deps to 0.26 and add codegen for 0.26

This commit is contained in:
Joshua Casey
2023-01-18 10:09:36 -06:00
committed by Ryan Richard
parent 585adc96d8
commit a430f4b730
196 changed files with 34954 additions and 170 deletions

View File

@@ -0,0 +1,14 @@
// Copyright 2021-2022 the Pinniped contributors. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
package validation
import (
"k8s.io/apimachinery/pkg/util/validation/field"
identityapi "go.pinniped.dev/generated/1.26/apis/concierge/identity"
)
func ValidateWhoAmIRequest(whoAmIRequest *identityapi.WhoAmIRequest) field.ErrorList {
return nil // add validation for spec here if we expand it
}