Portforward API
This commit is contained in:
48
api/v1beta1/portforward_types.go
Normal file
48
api/v1beta1/portforward_types.go
Normal file
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
Copyright 2025 Vegard Engen.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
package v1beta1
|
||||
|
||||
import (
|
||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||
)
|
||||
|
||||
// PortForward is a placeholder type to allow future CRD support if needed.
|
||||
// Right now, port forwards are managed entirely through annotations on Services.
|
||||
// +kubebuilder:object:root=true
|
||||
// +kubebuilder:subresource:status
|
||||
type PortForward struct {
|
||||
metav1.TypeMeta `json:",inline"`
|
||||
metav1.ObjectMeta `json:"metadata,omitempty"`
|
||||
|
||||
Spec PortForwardSpec `json:"spec,omitempty"`
|
||||
Status PortForwardStatus `json:"status,omitempty"`
|
||||
}
|
||||
|
||||
type PortForwardSpec struct {
|
||||
// Reserved for future CRD-based management
|
||||
}
|
||||
|
||||
type PortForwardStatus struct {
|
||||
// Reserved for future CRD-based status
|
||||
}
|
||||
|
||||
// PortForwardList contains a list of PortForward
|
||||
// Currently unused, defined for completeness
|
||||
type PortForwardList struct {
|
||||
metav1.TypeMeta `json:",inline"`
|
||||
metav1.ListMeta `json:"metadata,omitempty"`
|
||||
Items []PortForward `json:"items"`
|
||||
}
|
||||
@@ -682,6 +682,87 @@ func (in *NetworkconfigurationStatus) DeepCopy() *NetworkconfigurationStatus {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *PortForward) DeepCopyInto(out *PortForward) {
|
||||
*out = *in
|
||||
out.TypeMeta = in.TypeMeta
|
||||
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
||||
out.Spec = in.Spec
|
||||
out.Status = in.Status
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PortForward.
|
||||
func (in *PortForward) DeepCopy() *PortForward {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(PortForward)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||||
func (in *PortForward) DeepCopyObject() runtime.Object {
|
||||
if c := in.DeepCopy(); c != nil {
|
||||
return c
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *PortForwardList) DeepCopyInto(out *PortForwardList) {
|
||||
*out = *in
|
||||
out.TypeMeta = in.TypeMeta
|
||||
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
||||
if in.Items != nil {
|
||||
in, out := &in.Items, &out.Items
|
||||
*out = make([]PortForward, len(*in))
|
||||
for i := range *in {
|
||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PortForwardList.
|
||||
func (in *PortForwardList) DeepCopy() *PortForwardList {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(PortForwardList)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *PortForwardSpec) DeepCopyInto(out *PortForwardSpec) {
|
||||
*out = *in
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PortForwardSpec.
|
||||
func (in *PortForwardSpec) DeepCopy() *PortForwardSpec {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(PortForwardSpec)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *PortForwardStatus) DeepCopyInto(out *PortForwardStatus) {
|
||||
*out = *in
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PortForwardStatus.
|
||||
func (in *PortForwardStatus) DeepCopy() *PortForwardStatus {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(PortForwardStatus)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ServiceEntry) DeepCopyInto(out *ServiceEntry) {
|
||||
*out = *in
|
||||
|
||||
Reference in New Issue
Block a user