mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-04 15:05:20 +00:00
Support the subresource of service proxy
This commit is contained in:
@@ -164,6 +164,7 @@ func init() {
|
||||
DeepCopy_api_ServiceAccountList,
|
||||
DeepCopy_api_ServiceList,
|
||||
DeepCopy_api_ServicePort,
|
||||
DeepCopy_api_ServiceProxyOptions,
|
||||
DeepCopy_api_ServiceSpec,
|
||||
DeepCopy_api_ServiceStatus,
|
||||
DeepCopy_api_TCPSocketAction,
|
||||
@@ -2744,6 +2745,14 @@ func DeepCopy_api_ServicePort(in ServicePort, out *ServicePort, c *conversion.Cl
|
||||
return nil
|
||||
}
|
||||
|
||||
func DeepCopy_api_ServiceProxyOptions(in ServiceProxyOptions, out *ServiceProxyOptions, c *conversion.Cloner) error {
|
||||
if err := DeepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil {
|
||||
return err
|
||||
}
|
||||
out.Path = in.Path
|
||||
return nil
|
||||
}
|
||||
|
||||
func DeepCopy_api_ServiceSpec(in ServiceSpec, out *ServiceSpec, c *conversion.Cloner) error {
|
||||
out.Type = in.Type
|
||||
if in.Ports != nil {
|
||||
|
||||
Reference in New Issue
Block a user