Fix various typos in pkg/apis
This commit is contained in:
		@@ -33,12 +33,12 @@ const GroupName = "apps"
 | 
				
			|||||||
// SchemeGroupVersion is group version used to register these objects
 | 
					// SchemeGroupVersion is group version used to register these objects
 | 
				
			||||||
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
					var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Kind takes an unqualified kind and returns back a Group qualified GroupKind
 | 
					// Kind takes an unqualified kind and returns a Group qualified GroupKind
 | 
				
			||||||
func Kind(kind string) unversioned.GroupKind {
 | 
					func Kind(kind string) unversioned.GroupKind {
 | 
				
			||||||
	return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
						return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Resource takes an unqualified resource and returns back a Group qualified GroupResource
 | 
					// Resource takes an unqualified resource and returns a Group qualified GroupResource
 | 
				
			||||||
func Resource(resource string) unversioned.GroupResource {
 | 
					func Resource(resource string) unversioned.GroupResource {
 | 
				
			||||||
	return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
						return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -28,12 +28,12 @@ const GroupName = "authentication.k8s.io"
 | 
				
			|||||||
// SchemeGroupVersion is group version used to register these objects
 | 
					// SchemeGroupVersion is group version used to register these objects
 | 
				
			||||||
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
					var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Kind takes an unqualified kind and returns back a Group qualified GroupKind
 | 
					// Kind takes an unqualified kind and returns a Group qualified GroupKind
 | 
				
			||||||
func Kind(kind string) unversioned.GroupKind {
 | 
					func Kind(kind string) unversioned.GroupKind {
 | 
				
			||||||
	return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
						return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Resource takes an unqualified resource and returns back a Group qualified GroupResource
 | 
					// Resource takes an unqualified resource and returns a Group qualified GroupResource
 | 
				
			||||||
func Resource(resource string) unversioned.GroupResource {
 | 
					func Resource(resource string) unversioned.GroupResource {
 | 
				
			||||||
	return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
						return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -26,12 +26,12 @@ const (
 | 
				
			|||||||
	ImpersonateUserHeader = "Impersonate-User"
 | 
						ImpersonateUserHeader = "Impersonate-User"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// ImpersonateGroupHeader is used to impersonate a particular group during an API server request.
 | 
						// ImpersonateGroupHeader is used to impersonate a particular group during an API server request.
 | 
				
			||||||
	// It can be repeated multipled times for multiple groups.
 | 
						// It can be repeated multiplied times for multiple groups.
 | 
				
			||||||
	ImpersonateGroupHeader = "Impersonate-Group"
 | 
						ImpersonateGroupHeader = "Impersonate-Group"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// ImpersonateUserExtraHeaderPrefix is a prefix for any header used to impersonate an entry in the
 | 
						// ImpersonateUserExtraHeaderPrefix is a prefix for any header used to impersonate an entry in the
 | 
				
			||||||
	// extra map[string][]string for user.Info.  The key will be every after the prefix.
 | 
						// extra map[string][]string for user.Info.  The key will be every after the prefix.
 | 
				
			||||||
	// It can be repeated multipled times for multiple map keys and the same key can be repeated multiple
 | 
						// It can be repeated multiplied times for multiple map keys and the same key can be repeated multiple
 | 
				
			||||||
	// times to have multiple elements in the slice under a single key
 | 
						// times to have multiple elements in the slice under a single key
 | 
				
			||||||
	ImpersonateUserExtraHeaderPrefix = "Impersonate-Extra-"
 | 
						ImpersonateUserExtraHeaderPrefix = "Impersonate-Extra-"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -27,12 +27,12 @@ const GroupName = "authorization.k8s.io"
 | 
				
			|||||||
// SchemeGroupVersion is group version used to register these objects
 | 
					// SchemeGroupVersion is group version used to register these objects
 | 
				
			||||||
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
					var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Kind takes an unqualified kind and returns back a Group qualified GroupKind
 | 
					// Kind takes an unqualified kind and returns a Group qualified GroupKind
 | 
				
			||||||
func Kind(kind string) unversioned.GroupKind {
 | 
					func Kind(kind string) unversioned.GroupKind {
 | 
				
			||||||
	return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
						return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Resource takes an unqualified resource and returns back a Group qualified GroupResource
 | 
					// Resource takes an unqualified resource and returns a Group qualified GroupResource
 | 
				
			||||||
func Resource(resource string) unversioned.GroupResource {
 | 
					func Resource(resource string) unversioned.GroupResource {
 | 
				
			||||||
	return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
						return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -28,12 +28,12 @@ const GroupName = "autoscaling"
 | 
				
			|||||||
// SchemeGroupVersion is group version used to register these objects
 | 
					// SchemeGroupVersion is group version used to register these objects
 | 
				
			||||||
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
					var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Kind takes an unqualified kind and returns back a Group qualified GroupKind
 | 
					// Kind takes an unqualified kind and returns a Group qualified GroupKind
 | 
				
			||||||
func Kind(kind string) unversioned.GroupKind {
 | 
					func Kind(kind string) unversioned.GroupKind {
 | 
				
			||||||
	return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
						return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Resource takes an unqualified resource and returns back a Group qualified GroupResource
 | 
					// Resource takes an unqualified resource and returns a Group qualified GroupResource
 | 
				
			||||||
func Resource(resource string) unversioned.GroupResource {
 | 
					func Resource(resource string) unversioned.GroupResource {
 | 
				
			||||||
	return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
						return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -28,12 +28,12 @@ const GroupName = "batch"
 | 
				
			|||||||
// SchemeGroupVersion is group version used to register these objects
 | 
					// SchemeGroupVersion is group version used to register these objects
 | 
				
			||||||
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
					var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Kind takes an unqualified kind and returns back a Group qualified GroupKind
 | 
					// Kind takes an unqualified kind and returns a Group qualified GroupKind
 | 
				
			||||||
func Kind(kind string) unversioned.GroupKind {
 | 
					func Kind(kind string) unversioned.GroupKind {
 | 
				
			||||||
	return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
						return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Resource takes an unqualified resource and returns back a Group qualified GroupResource
 | 
					// Resource takes an unqualified resource and returns a Group qualified GroupResource
 | 
				
			||||||
func Resource(resource string) unversioned.GroupResource {
 | 
					func Resource(resource string) unversioned.GroupResource {
 | 
				
			||||||
	return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
						return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -33,12 +33,12 @@ const GroupName = "certificates"
 | 
				
			|||||||
// SchemeGroupVersion is group version used to register these objects
 | 
					// SchemeGroupVersion is group version used to register these objects
 | 
				
			||||||
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
					var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Kind takes an unqualified kind and returns back a Group qualified GroupKind
 | 
					// Kind takes an unqualified kind and returns a Group qualified GroupKind
 | 
				
			||||||
func Kind(kind string) unversioned.GroupKind {
 | 
					func Kind(kind string) unversioned.GroupKind {
 | 
				
			||||||
	return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
						return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Resource takes an unqualified resource and returns back a Group qualified GroupResource
 | 
					// Resource takes an unqualified resource and returns a Group qualified GroupResource
 | 
				
			||||||
func Resource(resource string) unversioned.GroupResource {
 | 
					func Resource(resource string) unversioned.GroupResource {
 | 
				
			||||||
	return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
						return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -29,7 +29,7 @@ type CertificateSigningRequest struct {
 | 
				
			|||||||
	unversioned.TypeMeta `json:",inline"`
 | 
						unversioned.TypeMeta `json:",inline"`
 | 
				
			||||||
	api.ObjectMeta       `json:"metadata,omitempty"`
 | 
						api.ObjectMeta       `json:"metadata,omitempty"`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// The certificate request itself and any additonal information.
 | 
						// The certificate request itself and any additional information.
 | 
				
			||||||
	Spec CertificateSigningRequestSpec `json:"spec,omitempty"`
 | 
						Spec CertificateSigningRequestSpec `json:"spec,omitempty"`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Derived information about the request.
 | 
						// Derived information about the request.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -34,7 +34,7 @@ option go_package = "v1alpha1";
 | 
				
			|||||||
message CertificateSigningRequest {
 | 
					message CertificateSigningRequest {
 | 
				
			||||||
  optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1;
 | 
					  optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // The certificate request itself and any additonal information.
 | 
					  // The certificate request itself and any additional information.
 | 
				
			||||||
  optional CertificateSigningRequestSpec spec = 2;
 | 
					  optional CertificateSigningRequestSpec spec = 2;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Derived information about the request.
 | 
					  // Derived information about the request.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -29,12 +29,12 @@ const GroupName = "certificates"
 | 
				
			|||||||
// SchemeGroupVersion is group version used to register these objects
 | 
					// SchemeGroupVersion is group version used to register these objects
 | 
				
			||||||
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: "v1alpha1"}
 | 
					var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: "v1alpha1"}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Kind takes an unqualified kind and returns back a Group qualified GroupKind
 | 
					// Kind takes an unqualified kind and returns a Group qualified GroupKind
 | 
				
			||||||
func Kind(kind string) unversioned.GroupKind {
 | 
					func Kind(kind string) unversioned.GroupKind {
 | 
				
			||||||
	return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
						return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Resource takes an unqualified resource and returns back a Group qualified GroupResource
 | 
					// Resource takes an unqualified resource and returns a Group qualified GroupResource
 | 
				
			||||||
func Resource(resource string) unversioned.GroupResource {
 | 
					func Resource(resource string) unversioned.GroupResource {
 | 
				
			||||||
	return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
						return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -29,7 +29,7 @@ type CertificateSigningRequest struct {
 | 
				
			|||||||
	unversioned.TypeMeta `json:",inline"`
 | 
						unversioned.TypeMeta `json:",inline"`
 | 
				
			||||||
	v1.ObjectMeta        `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
 | 
						v1.ObjectMeta        `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// The certificate request itself and any additonal information.
 | 
						// The certificate request itself and any additional information.
 | 
				
			||||||
	Spec CertificateSigningRequestSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
 | 
						Spec CertificateSigningRequestSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Derived information about the request.
 | 
						// Derived information about the request.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -29,7 +29,7 @@ package v1alpha1
 | 
				
			|||||||
// AUTO-GENERATED FUNCTIONS START HERE
 | 
					// AUTO-GENERATED FUNCTIONS START HERE
 | 
				
			||||||
var map_CertificateSigningRequest = map[string]string{
 | 
					var map_CertificateSigningRequest = map[string]string{
 | 
				
			||||||
	"":       "Describes a certificate signing request",
 | 
						"":       "Describes a certificate signing request",
 | 
				
			||||||
	"spec":   "The certificate request itself and any additonal information.",
 | 
						"spec":   "The certificate request itself and any additional information.",
 | 
				
			||||||
	"status": "Derived information about the request.",
 | 
						"status": "Derived information about the request.",
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -32,12 +32,12 @@ const GroupName = "componentconfig"
 | 
				
			|||||||
// SchemeGroupVersion is group version used to register these objects
 | 
					// SchemeGroupVersion is group version used to register these objects
 | 
				
			||||||
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
					var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Kind takes an unqualified kind and returns back a Group qualified GroupKind
 | 
					// Kind takes an unqualified kind and returns a Group qualified GroupKind
 | 
				
			||||||
func Kind(kind string) unversioned.GroupKind {
 | 
					func Kind(kind string) unversioned.GroupKind {
 | 
				
			||||||
	return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
						return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Resource takes an unqualified resource and returns back a Group qualified GroupResource
 | 
					// Resource takes an unqualified resource and returns a Group qualified GroupResource
 | 
				
			||||||
func Resource(resource string) unversioned.GroupResource {
 | 
					func Resource(resource string) unversioned.GroupResource {
 | 
				
			||||||
	return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
						return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -66,7 +66,7 @@ type KubeProxyConfiguration struct {
 | 
				
			|||||||
	// Must be greater than 0. Only applicable for proxyMode=userspace.
 | 
						// Must be greater than 0. Only applicable for proxyMode=userspace.
 | 
				
			||||||
	UDPIdleTimeout unversioned.Duration `json:"udpTimeoutMilliseconds"`
 | 
						UDPIdleTimeout unversioned.Duration `json:"udpTimeoutMilliseconds"`
 | 
				
			||||||
	// conntrackMax is the maximum number of NAT connections to track (0 to
 | 
						// conntrackMax is the maximum number of NAT connections to track (0 to
 | 
				
			||||||
	// leave as-is).  This takes precendence over conntrackMaxPerCore.
 | 
						// leave as-is).  This takes precedence over conntrackMaxPerCore.
 | 
				
			||||||
	ConntrackMax int32 `json:"conntrackMax"`
 | 
						ConntrackMax int32 `json:"conntrackMax"`
 | 
				
			||||||
	// conntrackMaxPerCore is the maximum number of NAT connections to track
 | 
						// conntrackMaxPerCore is the maximum number of NAT connections to track
 | 
				
			||||||
	// per CPU core (0 to leave as-is).  This value is only considered if
 | 
						// per CPU core (0 to leave as-is).  This value is only considered if
 | 
				
			||||||
@@ -233,7 +233,7 @@ type KubeletConfiguration struct {
 | 
				
			|||||||
	// status to master. Note: be cautious when changing the constant, it
 | 
						// status to master. Note: be cautious when changing the constant, it
 | 
				
			||||||
	// must work with nodeMonitorGracePeriod in nodecontroller.
 | 
						// must work with nodeMonitorGracePeriod in nodecontroller.
 | 
				
			||||||
	NodeStatusUpdateFrequency unversioned.Duration `json:"nodeStatusUpdateFrequency"`
 | 
						NodeStatusUpdateFrequency unversioned.Duration `json:"nodeStatusUpdateFrequency"`
 | 
				
			||||||
	// imageMinimumGCAge is the minimum age for a unused image before it is
 | 
						// imageMinimumGCAge is the minimum age for an unused image before it is
 | 
				
			||||||
	// garbage collected.
 | 
						// garbage collected.
 | 
				
			||||||
	ImageMinimumGCAge unversioned.Duration `json:"imageMinimumGCAge"`
 | 
						ImageMinimumGCAge unversioned.Duration `json:"imageMinimumGCAge"`
 | 
				
			||||||
	// imageGCHighThresholdPercent is the percent of disk usage after which
 | 
						// imageGCHighThresholdPercent is the percent of disk usage after which
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -63,7 +63,7 @@ type KubeProxyConfiguration struct {
 | 
				
			|||||||
	// Must be greater than 0. Only applicable for proxyMode=userspace.
 | 
						// Must be greater than 0. Only applicable for proxyMode=userspace.
 | 
				
			||||||
	UDPIdleTimeout unversioned.Duration `json:"udpTimeoutMilliseconds"`
 | 
						UDPIdleTimeout unversioned.Duration `json:"udpTimeoutMilliseconds"`
 | 
				
			||||||
	// conntrackMax is the maximum number of NAT connections to track (0 to
 | 
						// conntrackMax is the maximum number of NAT connections to track (0 to
 | 
				
			||||||
	// leave as-is).  This takes precendence over conntrackMaxPerCore.
 | 
						// leave as-is).  This takes precedence over conntrackMaxPerCore.
 | 
				
			||||||
	ConntrackMax int32 `json:"conntrackMax"`
 | 
						ConntrackMax int32 `json:"conntrackMax"`
 | 
				
			||||||
	// conntrackMaxPerCore is the maximum number of NAT connections to track
 | 
						// conntrackMaxPerCore is the maximum number of NAT connections to track
 | 
				
			||||||
	// per CPU core (0 to leave as-is).  This value is only considered if
 | 
						// per CPU core (0 to leave as-is).  This value is only considered if
 | 
				
			||||||
@@ -287,7 +287,7 @@ type KubeletConfiguration struct {
 | 
				
			|||||||
	// status to master. Note: be cautious when changing the constant, it
 | 
						// status to master. Note: be cautious when changing the constant, it
 | 
				
			||||||
	// must work with nodeMonitorGracePeriod in nodecontroller.
 | 
						// must work with nodeMonitorGracePeriod in nodecontroller.
 | 
				
			||||||
	NodeStatusUpdateFrequency unversioned.Duration `json:"nodeStatusUpdateFrequency"`
 | 
						NodeStatusUpdateFrequency unversioned.Duration `json:"nodeStatusUpdateFrequency"`
 | 
				
			||||||
	// imageMinimumGCAge is the minimum age for a unused image before it is
 | 
						// imageMinimumGCAge is the minimum age for an unused image before it is
 | 
				
			||||||
	// garbage collected.
 | 
						// garbage collected.
 | 
				
			||||||
	ImageMinimumGCAge unversioned.Duration `json:"imageMinimumGCAge"`
 | 
						ImageMinimumGCAge unversioned.Duration `json:"imageMinimumGCAge"`
 | 
				
			||||||
	// imageGCHighThresholdPercent is the percent of disk usage after which
 | 
						// imageGCHighThresholdPercent is the percent of disk usage after which
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -30,12 +30,12 @@ const GroupName = "extensions"
 | 
				
			|||||||
// SchemeGroupVersion is group version used to register these objects
 | 
					// SchemeGroupVersion is group version used to register these objects
 | 
				
			||||||
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
					var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Kind takes an unqualified kind and returns back a Group qualified GroupKind
 | 
					// Kind takes an unqualified kind and returns a Group qualified GroupKind
 | 
				
			||||||
func Kind(kind string) unversioned.GroupKind {
 | 
					func Kind(kind string) unversioned.GroupKind {
 | 
				
			||||||
	return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
						return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Resource takes an unqualified resource and returns back a Group qualified GroupResource
 | 
					// Resource takes an unqualified resource and returns a Group qualified GroupResource
 | 
				
			||||||
func Resource(resource string) unversioned.GroupResource {
 | 
					func Resource(resource string) unversioned.GroupResource {
 | 
				
			||||||
	return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
						return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -550,7 +550,7 @@ type HTTPIngressRuleValue struct {
 | 
				
			|||||||
// HTTPIngressPath associates a path regex with a backend. Incoming urls matching
 | 
					// HTTPIngressPath associates a path regex with a backend. Incoming urls matching
 | 
				
			||||||
// the path are forwarded to the backend.
 | 
					// the path are forwarded to the backend.
 | 
				
			||||||
type HTTPIngressPath struct {
 | 
					type HTTPIngressPath struct {
 | 
				
			||||||
	// Path is a extended POSIX regex as defined by IEEE Std 1003.1,
 | 
						// Path is an extended POSIX regex as defined by IEEE Std 1003.1,
 | 
				
			||||||
	// (i.e this follows the egrep/unix syntax, not the perl syntax)
 | 
						// (i.e this follows the egrep/unix syntax, not the perl syntax)
 | 
				
			||||||
	// matched against the path of an incoming request. Currently it can
 | 
						// matched against the path of an incoming request. Currently it can
 | 
				
			||||||
	// contain characters disallowed from the conventional "path"
 | 
						// contain characters disallowed from the conventional "path"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -248,7 +248,7 @@ message FSGroupStrategyOptions {
 | 
				
			|||||||
// HTTPIngressPath associates a path regex with a backend. Incoming urls matching
 | 
					// HTTPIngressPath associates a path regex with a backend. Incoming urls matching
 | 
				
			||||||
// the path are forwarded to the backend.
 | 
					// the path are forwarded to the backend.
 | 
				
			||||||
message HTTPIngressPath {
 | 
					message HTTPIngressPath {
 | 
				
			||||||
  // Path is a extended POSIX regex as defined by IEEE Std 1003.1,
 | 
					  // Path is an extended POSIX regex as defined by IEEE Std 1003.1,
 | 
				
			||||||
  // (i.e this follows the egrep/unix syntax, not the perl syntax)
 | 
					  // (i.e this follows the egrep/unix syntax, not the perl syntax)
 | 
				
			||||||
  // matched against the path of an incoming request. Currently it can
 | 
					  // matched against the path of an incoming request. Currently it can
 | 
				
			||||||
  // contain characters disallowed from the conventional "path"
 | 
					  // contain characters disallowed from the conventional "path"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -755,7 +755,7 @@ type HTTPIngressRuleValue struct {
 | 
				
			|||||||
// HTTPIngressPath associates a path regex with a backend. Incoming urls matching
 | 
					// HTTPIngressPath associates a path regex with a backend. Incoming urls matching
 | 
				
			||||||
// the path are forwarded to the backend.
 | 
					// the path are forwarded to the backend.
 | 
				
			||||||
type HTTPIngressPath struct {
 | 
					type HTTPIngressPath struct {
 | 
				
			||||||
	// Path is a extended POSIX regex as defined by IEEE Std 1003.1,
 | 
						// Path is an extended POSIX regex as defined by IEEE Std 1003.1,
 | 
				
			||||||
	// (i.e this follows the egrep/unix syntax, not the perl syntax)
 | 
						// (i.e this follows the egrep/unix syntax, not the perl syntax)
 | 
				
			||||||
	// matched against the path of an incoming request. Currently it can
 | 
						// matched against the path of an incoming request. Currently it can
 | 
				
			||||||
	// contain characters disallowed from the conventional "path"
 | 
						// contain characters disallowed from the conventional "path"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -198,7 +198,7 @@ func (FSGroupStrategyOptions) SwaggerDoc() map[string]string {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
var map_HTTPIngressPath = map[string]string{
 | 
					var map_HTTPIngressPath = map[string]string{
 | 
				
			||||||
	"":        "HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.",
 | 
						"":        "HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.",
 | 
				
			||||||
	"path":    "Path is a extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend.",
 | 
						"path":    "Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend.",
 | 
				
			||||||
	"backend": "Backend defines the referenced service endpoint to which the traffic will be forwarded to.",
 | 
						"backend": "Backend defines the referenced service endpoint to which the traffic will be forwarded to.",
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -207,7 +207,7 @@ func (HTTPIngressPath) SwaggerDoc() map[string]string {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
var map_HTTPIngressRuleValue = map[string]string{
 | 
					var map_HTTPIngressRuleValue = map[string]string{
 | 
				
			||||||
	"":      "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.",
 | 
						"":      "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.",
 | 
				
			||||||
	"paths": "A collection of paths that map requests to backends.",
 | 
						"paths": "A collection of paths that map requests to backends.",
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -28,12 +28,12 @@ const GroupName = "imagepolicy.k8s.io"
 | 
				
			|||||||
// SchemeGroupVersion is group version used to register these objects
 | 
					// SchemeGroupVersion is group version used to register these objects
 | 
				
			||||||
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
					var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Kind takes an unqualified kind and returns back a Group qualified GroupKind
 | 
					// Kind takes an unqualified kind and returns a Group qualified GroupKind
 | 
				
			||||||
func Kind(kind string) unversioned.GroupKind {
 | 
					func Kind(kind string) unversioned.GroupKind {
 | 
				
			||||||
	return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
						return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Resource takes an unqualified resource and returns back a Group qualified GroupResource
 | 
					// Resource takes an unqualified resource and returns a Group qualified GroupResource
 | 
				
			||||||
func Resource(resource string) unversioned.GroupResource {
 | 
					func Resource(resource string) unversioned.GroupResource {
 | 
				
			||||||
	return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
						return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -28,12 +28,12 @@ const GroupName = "policy"
 | 
				
			|||||||
// SchemeGroupVersion is group version used to register these objects
 | 
					// SchemeGroupVersion is group version used to register these objects
 | 
				
			||||||
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
					var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Kind takes an unqualified kind and returns back a Group qualified GroupKind
 | 
					// Kind takes an unqualified kind and returns a Group qualified GroupKind
 | 
				
			||||||
func Kind(kind string) unversioned.GroupKind {
 | 
					func Kind(kind string) unversioned.GroupKind {
 | 
				
			||||||
	return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
						return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Resource takes an unqualified resource and returns back a Group qualified GroupResource
 | 
					// Resource takes an unqualified resource and returns a Group qualified GroupResource
 | 
				
			||||||
func Resource(resource string) unversioned.GroupResource {
 | 
					func Resource(resource string) unversioned.GroupResource {
 | 
				
			||||||
	return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
						return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -28,12 +28,12 @@ const GroupName = "rbac.authorization.k8s.io"
 | 
				
			|||||||
// SchemeGroupVersion is group version used to register these objects
 | 
					// SchemeGroupVersion is group version used to register these objects
 | 
				
			||||||
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
					var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Kind takes an unqualified kind and returns back a Group qualified GroupKind
 | 
					// Kind takes an unqualified kind and returns a Group qualified GroupKind
 | 
				
			||||||
func Kind(kind string) unversioned.GroupKind {
 | 
					func Kind(kind string) unversioned.GroupKind {
 | 
				
			||||||
	return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
						return SchemeGroupVersion.WithKind(kind).GroupKind()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Resource takes an unqualified resource and returns back a Group qualified GroupResource
 | 
					// Resource takes an unqualified resource and returns a Group qualified GroupResource
 | 
				
			||||||
func Resource(resource string) unversioned.GroupResource {
 | 
					func Resource(resource string) unversioned.GroupResource {
 | 
				
			||||||
	return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
						return SchemeGroupVersion.WithResource(resource).GroupResource()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -71,7 +71,7 @@ type Subject struct {
 | 
				
			|||||||
	// If the Authorizer does not recognized the kind value, the Authorizer should report an error.
 | 
						// If the Authorizer does not recognized the kind value, the Authorizer should report an error.
 | 
				
			||||||
	Kind string
 | 
						Kind string
 | 
				
			||||||
	// APIVersion holds the API group and version of the referenced object. For non-object references such as "Group" and "User" this is
 | 
						// APIVersion holds the API group and version of the referenced object. For non-object references such as "Group" and "User" this is
 | 
				
			||||||
	// expected to be API version of this API group. For example "rbac/v1alpha1".
 | 
						// expected to be API version of this API group. For example, "rbac/v1alpha1".
 | 
				
			||||||
	APIVersion string
 | 
						APIVersion string
 | 
				
			||||||
	// Name of the object being referenced.
 | 
						// Name of the object being referenced.
 | 
				
			||||||
	Name string
 | 
						Name string
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user