Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 349 for port_name (0.18 sec)

  1. pkg/kubelet/container/helpers_test.go

    			envs: []EnvVar{
    				{
    					Name:  "POD_NAME",
    					Value: "bar",
    				},
    			},
    			expectedSubPath:   "",
    			expectedMountPath: "",
    			expectedOk:        true,
    		},
    		{
    			name: "volumes expanded with no envs subpath",
    			container: &v1.Container{
    				VolumeMounts: []v1.VolumeMount{{SubPathExpr: "/foo/$(POD_NAME)"}},
    			},
    			expectedSubPath:   "/foo/$(POD_NAME)",
    			expectedMountPath: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/telemetry/telemetry.go

    	return prefix
    }
    
    // BuildInboundStatPrefix builds a stat prefix based on the stat pattern and filter chain telemetry data.
    func BuildInboundStatPrefix(statPattern string, tm FilterChainMetadata, subset string, port uint32, portName string) string {
    	prefix := strings.ReplaceAll(statPattern, serviceStatPattern, tm.ShortHostname())
    	prefix = strings.ReplaceAll(prefix, serviceFQDNStatPattern, tm.InstanceHostname.String())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. pkg/api/v1/pod/util.go

    // targetPort is a number, use that.  If the targetPort is a string, look that
    // string up in all named ports in all containers in the target pod.  If no
    // match is found, fail.
    func FindPort(pod *v1.Pod, svcPort *v1.ServicePort) (int, error) {
    	portName := svcPort.TargetPort
    	switch portName.Type {
    	case intstr.String:
    		name := portName.StrVal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 17:18:04 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. pkg/proxy/types.go

    	Sync()
    	// SyncLoop runs periodic work.
    	// This is expected to run as a goroutine or as the main loop of the app.
    	// It does not return.
    	SyncLoop()
    }
    
    // ServicePortName carries a namespace + name + portname.  This is the unique
    // identifier for a load-balanced service.
    type ServicePortName struct {
    	types.NamespacedName
    	Port     string
    	Protocol v1.Protocol
    }
    
    func (spn ServicePortName) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/grpc-simple.yaml.injected

            - mountPath: /var/lib/grpc/data/
              name: grpc-io-proxyless-bootstrap
          initContainers:
          - command:
            - sh
            - -c
            - |-
              NODE_ID="sidecar~${INSTANCE_IP}~${POD_NAME}.${POD_NAMESPACE}~cluster.local"
              SERVER_URI="dns:///istiod.${ISTIO_NAMESPACE}.svc:15010"
              echo '
              {
                "xds_servers": [
                  {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 10 20:56:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. cluster/addons/metadata-proxy/gce/metadata-proxy.yaml

              - --api-override={{ prometheus_to_sd_endpoint }}
              - --source=metadata_proxy:http://127.0.0.1:989?whitelisted=request_count
              - --pod-id=$(POD_NAME)
              - --namespace-id=$(POD_NAMESPACE)
            env:
              - name: POD_NAME
                valueFrom:
                  fieldRef:
                    fieldPath: metadata.name
              - name: POD_NAMESPACE
                valueFrom:
                  fieldRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/files/grpc-simple.yaml

              name: grpc-io-proxyless-bootstrap
          env:
            - name: INSTANCE_IP
              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
            - name: POD_NAME
              valueFrom:
                fieldRef:
                  fieldPath: metadata.name
            - name: POD_NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 10 20:56:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/packaging/rpm/init.d/fess

        rc_reset
    fi
    
    #
    # Source function library.
    #
    if [ -f /etc/rc.d/init.d/functions ]; then
        . /etc/rc.d/init.d/functions
    fi
    
    # Sets the default values for fess variables used in this script
    PROC_NAME=org.codelibs.fess.FessBoot
    FESS_USER="${packaging.fess.user}"
    FESS_GROUP="${packaging.fess.group}"
    FESS_HOME="${packaging.fess.home.dir}"
    PID_DIR="${packaging.fess.pid.dir}"
    
    # Source the default env file
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. pkg/kubelet/lifecycle/handlers.go

    	if portReference.Type == intstr.Int {
    		return portReference.IntValue(), nil
    	}
    	portName := portReference.StrVal
    	port, err := strconv.Atoi(portName)
    	if err == nil {
    		return port, nil
    	}
    	for _, portSpec := range container.Ports {
    		if portSpec.Name == portName {
    			return int(portSpec.ContainerPort), nil
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 11:40:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/envoyfilter/rc_patch.go

    	}
    
    	// This is a gateway. Get all the fields in the gateway's RDS route name
    	routePortNumber, portName, gateway := model.ParseGatewayRDSRouteName(rc.Name)
    	if rMatch.PortNumber != 0 && !anyPortMatches(portMap, routePortNumber, int(rMatch.PortNumber)) {
    		return false
    	}
    	if rMatch.PortName != "" && rMatch.PortName != portName {
    		return false
    	}
    	if rMatch.Gateway != "" && rMatch.Gateway != gateway {
    		return false
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top