Merge pull request #133350 from carlory/fix-pod-certificates

Fix prerelease lifecycle  for PodCertificateRequest
This commit is contained in:
Kubernetes Prow Robot
2025-08-01 06:35:38 -07:00
committed by GitHub
2 changed files with 8 additions and 8 deletions

View File

@@ -109,7 +109,7 @@ type ClusterTrustBundleList struct {
}
// +genclient
// +k8s:prerelease-lifecycle-gen:introduced=1.32
// +k8s:prerelease-lifecycle-gen:introduced=1.34
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
// PodCertificateRequest encodes a pod requesting a certificate from a given
@@ -323,7 +323,7 @@ const (
)
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
// +k8s:prerelease-lifecycle-gen:introduced=1.32
// +k8s:prerelease-lifecycle-gen:introduced=1.34
// PodCertificateRequestList is a collection of PodCertificateRequest objects
type PodCertificateRequestList struct {

View File

@@ -60,35 +60,35 @@ func (in *ClusterTrustBundleList) APILifecycleRemoved() (major, minor int) {
// APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
// It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
func (in *PodCertificateRequest) APILifecycleIntroduced() (major, minor int) {
return 1, 32
return 1, 34
}
// APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison.
// It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or "k8s:prerelease-lifecycle-gen:introduced" plus three minor.
func (in *PodCertificateRequest) APILifecycleDeprecated() (major, minor int) {
return 1, 35
return 1, 37
}
// APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison.
// It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor.
func (in *PodCertificateRequest) APILifecycleRemoved() (major, minor int) {
return 1, 38
return 1, 40
}
// APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
// It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
func (in *PodCertificateRequestList) APILifecycleIntroduced() (major, minor int) {
return 1, 32
return 1, 34
}
// APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison.
// It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or "k8s:prerelease-lifecycle-gen:introduced" plus three minor.
func (in *PodCertificateRequestList) APILifecycleDeprecated() (major, minor int) {
return 1, 35
return 1, 37
}
// APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison.
// It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor.
func (in *PodCertificateRequestList) APILifecycleRemoved() (major, minor int) {
return 1, 38
return 1, 40
}