Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for appProtocol (0.29 sec)

  1. istioctl/pkg/validate/validate_test.go

    apiVersion: v1
    kind: Service
    metadata:
      name: hello
    spec:
      ports:
        - appProtocol: http
          port: 9080`
    	validPortNamingSvcWithAppProtocol2 = `
    apiVersion: v1
    kind: Service
    metadata:
      name: hello
    spec:
      ports:
        - appProtocol: http
          name: fake # should not have error since the appProtocol field
          port: 9080`
    	inValidPortNamingSvcWithAppProtocol = `
    apiVersion: v1
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jul 25 08:08:36 GMT 2023
    - 21.5K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

        kind: Gateway
        name: {{.Name}}
        uid: {{.UID}}
    spec:
      ports:
      {{- range $key, $val := .Ports }}
      - name: {{ $val.Name | quote }}
        port: {{ $val.Port }}
        protocol: TCP
        appProtocol: {{ $val.AppProtocol }}
      {{- end }}
      selector:
        "{{.GatewayNameLabel}}": {{.Name}}
      {{- if and (.Spec.Addresses) (eq .ServiceType "LoadBalancer") }}
      loadBalancerIP: {{ (index .Spec.Addresses 0).Value | quote}}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

        name: "{{.Name}}"
        uid: "{{.UID}}"
    spec:
      ports:
      {{- range $key, $val := .Ports }}
      - name: {{ $val.Name | quote }}
        port: {{ $val.Port }}
        protocol: TCP
        appProtocol: {{ $val.AppProtocol }}
      {{- end }}
      selector:
        "{{.GatewayNameLabel}}": "{{.Name}}"
      {{- if and (.Spec.Addresses) (eq .ServiceType "LoadBalancer") }}
      loadBalancerIP: {{ (index .Spec.Addresses 0).Value | quote}}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // port represents the port number of the endpoint.
      // If this is not specified, ports are not restricted and must be
      // interpreted in the context of the specific consumer.
      optional int32 port = 3;
    
      // appProtocol represents the application protocol for this port.
      // This field follows standard Kubernetes label syntax.
      // Un-prefixed names are reserved for IANA standard service names (as per
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/discovery/v1/generated.proto

      //
      // * Other protocols should use implementation-defined prefixed names such as
      // mycompany.com/my-custom-protocol.
      // +optional
      optional string appProtocol = 4;
    }
    
    // EndpointSlice represents a subset of the endpoints that implement a service.
    // For a given service there may be multiple EndpointSlice objects, selected by
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
  6. istioctl/pkg/validate/validate.go

    		for _, port := range ports {
    			p := port.(map[string]any)
    			if p["protocol"] != nil && strings.EqualFold(p["protocol"].(string), serviceProtocolUDP) {
    				continue
    			}
    			if ap := p["appProtocol"]; ap != nil {
    				if protocol.Parse(ap.(string)).IsUnsupported() {
    					errs = multierror.Append(errs, fmt.Errorf("service %q doesn't follow Istio protocol selection. "+
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Jan 22 17:58:52 GMT 2024
    - 15K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/describe.go

    	}
    }
    
    func findProtocolForPort(port *corev1.ServicePort) string {
    	var protocol string
    	if port.Name == "" && port.AppProtocol == nil && port.Protocol != corev1.ProtocolUDP {
    		protocol = "auto-detect"
    	} else {
    		protocol = string(configKube.ConvertProtocol(port.Port, port.Name, port.Protocol, port.AppProtocol))
    	}
    	return protocol
    }
    
    func isMeshed(pod *corev1.Pod) bool {
    	return inject.FindSidecar(pod) != nil
    }
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/describe_test.go

    		},
    		{
    			port: corev1.ServicePort{
    				Name:     "GRPC-port",
    				Protocol: corev1.ProtocolTCP,
    			},
    			expectedProtocol: "GRPC",
    		},
    		{
    			port: corev1.ServicePort{
    				AppProtocol: &http,
    				Protocol:    corev1.ProtocolTCP,
    			},
    			expectedProtocol: "HTTP",
    		},
    		{
    			port: corev1.ServicePort{
    				Protocol: corev1.ProtocolTCP,
    				Port:     80,
    			},
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Mar 28 09:54:01 GMT 2024
    - 30.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - Remove `kubernetes.io/grpc` standard appProtocol ([#116866](https://github.com/kubernetes/kubernetes/pull/116866), [@LiorLieberman](https://github.com/LiorLieberman)) [SIG API Machinery and Apps]
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 15:20:21 GMT 2024
    - 434.3K bytes
    - Viewed (3)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      //
      // * Other protocols should use implementation-defined prefixed names such as
      // mycompany.com/my-custom-protocol.
      // +optional
      optional string appProtocol = 4;
    }
    
    // EndpointSubset is a group of addresses with a common set of ports. The
    // expanded set of endpoints is the Cartesian product of Addresses x Ports.
    // For example, given:
    //
    // 	{
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
Back to top