Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for IngressBackend (0.16 sec)

  1. common-protos/k8s.io/api/networking/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional IngressStatus status = 3;
    }
    
    // IngressBackend describes all endpoints for a given service and port.
    message IngressBackend {
      // service references a service as a backend.
      // This is a mutually exclusive setting with "Resource".
      // +optional
      optional IngressServiceBackend service = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. pkg/apis/networking/types.go

    	// +optional
    	PathType *PathType
    
    	// backend defines the referenced service endpoint to which the traffic
    	// will be forwarded to.
    	Backend IngressBackend
    }
    
    // IngressBackend describes all endpoints for a given service and port.
    type IngressBackend struct {
    	// service references a service as a backend.
    	// This is a mutually exclusive setting with "Resource".
    	// +optional
    	Service *IngressServiceBackend
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional IngressStatus status = 3;
    }
    
    // IngressBackend describes all endpoints for a given service and port.
    message IngressBackend {
      // service references a service as a backend.
      // This is a mutually exclusive setting with "Resource".
      // +optional
      optional IngressServiceBackend service = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/types.go

    	// backend defines the referenced service endpoint to which the traffic
    	// will be forwarded to.
    	Backend IngressBackend `json:"backend" protobuf:"bytes,2,opt,name=backend"`
    }
    
    // IngressBackend describes all endpoints for a given service and port.
    type IngressBackend struct {
    	// service references a service as a backend.
    	// This is a mutually exclusive setting with "Resource".
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    var xxx_messageInfo_Ingress proto.InternalMessageInfo
    
    func (m *IngressBackend) Reset()      { *m = IngressBackend{} }
    func (*IngressBackend) ProtoMessage() {}
    func (*IngressBackend) Descriptor() ([]byte, []int) {
    	return fileDescriptor_90a532284de28347, []int{17}
    }
    func (m *IngressBackend) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *IngressBackend) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional IngressStatus status = 3;
    }
    
    // IngressBackend describes all endpoints for a given service and port.
    message IngressBackend {
      // Specifies the name of the referenced service.
      // +optional
      optional string serviceName = 1;
    
      // Specifies the port of the referenced service.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional IngressStatus status = 3;
    }
    
    // IngressBackend describes all endpoints for a given service and port.
    message IngressBackend {
      // Specifies the name of the referenced service.
      // +optional
      optional string serviceName = 1;
    
      // Specifies the port of the referenced service.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// Backend defines the referenced service endpoint to which the traffic
    	// will be forwarded to.
    	Backend IngressBackend `json:"backend" protobuf:"bytes,2,opt,name=backend"`
    }
    
    // IngressBackend describes all endpoints for a given service and port.
    type IngressBackend struct {
    	// Specifies the name of the referenced service.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  9. pkg/apis/networking/validation/validation.go

    	return allErrs
    }
    
    // validateIngressBackend tests if a given backend is valid.
    func validateIngressBackend(backend *networking.IngressBackend, fldPath *field.Path, opts IngressValidationOptions) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	hasResourceBackend := backend.Resource != nil
    	hasServiceBackend := backend.Service != nil
    
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

              {
                "group": "networking.k8s.io",
                "kind": "Ingress",
                "version": "v1"
              }
            ]
          },
          "io.k8s.api.networking.v1.IngressBackend": {
            "description": "IngressBackend describes all endpoints for a given service and port.",
            "properties": {
              "resource": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
Back to top