Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for portNames (0.14 sec)

  1. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    						ObjectTypes: &networking.EnvoyFilter_EnvoyConfigObjectMatch_RouteConfiguration{
    							RouteConfiguration: &networking.EnvoyFilter_RouteConfigurationMatch{
    								PortNumber: 443,
    								PortName:   "app1",
    								Gateway:    "ns1/gw1",
    							},
    						},
    					},
    				},
    				rc: &route.RouteConfiguration{Name: "https.443.app1.gw1.ns1"},
    			},
    			want: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. pkg/kubelet/container/helpers.go

    		}
    
    		// Protect against a port name being used more than once in a container.
    		if _, ok := names[name]; ok {
    			klog.InfoS("Port name conflicted, it is defined more than once", "portName", name)
    			continue
    		}
    		ports = append(ports, pm)
    		names[name] = struct{}{}
    	}
    	return
    }
    
    // HasAnyRegularContainerStarted returns true if any regular container has
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.gen.go

    func NewPortNameIsNotUnderNamingConvention(r *resource.Instance, portName string, port int, targetPort string) diag.Message {
    	return diag.NewMessage(
    		PortNameIsNotUnderNamingConvention,
    		r,
    		portName,
    		port,
    		targetPort,
    	)
    }
    
    // NewNamespaceMultipleInjectionLabels returns a new diag.Message based on NamespaceMultipleInjectionLabels.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. pkg/config/analysis/msg/messages.yaml

        template: "Port name %s (port: %d, targetPort: %s) doesn't follow the naming convention of Istio port."
        args:
          - name: portName
            type: string
          - name: port
            type: int
          - name: targetPort
            type: string
    
      # IST0119 RETIRED
      # IST0120 RETIRED
      # IST0121 RETIRED
      # IST0122 RETIRED
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top