Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 349 for HostIP (0.1 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

          tcpSocket:
            host: hostValue
            port: portValue
          terminationGracePeriodSeconds: 7
          timeoutSeconds: 3
        name: nameValue
        ports:
        - containerPort: 3
          hostIP: hostIPValue
          hostPort: 2
          name: nameValue
          protocol: protocolValue
        readinessProbe:
          exec:
            command:
            - commandValue
          failureThreshold: 6
          grpc:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

            "ports": [
              {
                "name": "nameValue",
                "hostPort": 2,
                "containerPort": 3,
                "protocol": "protocolValue",
                "hostIP": "hostIPValue"
              }
            ],
            "envFrom": [
              {
                "prefix": "prefixValue",
                "configMapRef": {
                  "name": "nameValue",
                  "optional": true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.yaml

          tcpSocket:
            host: hostValue
            port: portValue
          terminationGracePeriodSeconds: 7
          timeoutSeconds: 3
        name: nameValue
        ports:
        - containerPort: 3
          hostIP: hostIPValue
          hostPort: 2
          name: nameValue
          protocol: protocolValue
        readinessProbe:
          exec:
            command:
            - commandValue
          failureThreshold: 6
          grpc:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 32.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.json

            "ports": [
              {
                "name": "nameValue",
                "hostPort": 2,
                "containerPort": 3,
                "protocol": "protocolValue",
                "hostIP": "hostIPValue"
              }
            ],
            "envFrom": [
              {
                "prefix": "prefixValue",
                "configMapRef": {
                  "name": "nameValue",
                  "optional": true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 52K bytes
    - Viewed (0)
  5. pkg/envoy/proxy.go

    		}
    	}
    
    	if e.Concurrency > 0 {
    		startupArgs = append(startupArgs, "--concurrency", fmt.Sprint(e.Concurrency))
    	}
    
    	return startupArgs
    }
    
    var HostIP = os.Getenv("HOST_IP")
    
    // readBootstrapToJSON reads a config file, in YAML or JSON, and returns JSON string
    func readBootstrapToJSON(fname string) (string, error) {
    	b, err := os.ReadFile(fname)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodStatusResult.yaml

            message: messageValue
            reason: reasonValue
            signal: 2
            startedAt: "2005-01-01T01:01:01Z"
          waiting:
            message: messageValue
            reason: reasonValue
      hostIP: hostIPValue
      hostIPs:
      - ip: ipValue
      initContainerStatuses:
      - allocatedResources:
          allocatedResourcesKey: "0"
        containerID: containerIDValue
        image: imageValue
        imageID: imageIDValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. pkg/proxy/apis/config/validation/validation.go

    	allErrs := field.ErrorList{}
    
    	hostIP, port, err := net.SplitHostPort(input)
    	if err != nil {
    		allErrs = append(allErrs, field.Invalid(fldPath, input, "must be IP:port"))
    		return allErrs
    	}
    
    	if ip := netutils.ParseIPSloppy(hostIP); ip == nil {
    		allErrs = append(allErrs, field.Invalid(fldPath, hostIP, "must be a valid IP"))
    	}
    
    	if p, err := strconv.Atoi(port); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

              valueFrom:
                fieldRef:
                  fieldPath: spec.serviceAccountName
            - name: HOST_IP
              valueFrom:
                fieldRef:
                  fieldPath: status.hostIP
            - name: ISTIO_CPU_LIMIT
              valueFrom:
                resourceFieldRef:
                  divisor: "0"
                  resource: limits.cpu
            - name: PROXY_CONFIG
              value: |
                {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodeports/node_ports.go

    	usedPorts := make(framework.HostPortInfo)
    	for _, container := range deletedPod.Spec.Containers {
    		for _, podPort := range container.Ports {
    			if podPort.HostPort > 0 {
    				usedPorts.Add(podPort.HostIP, string(podPort.Protocol), podPort.HostPort)
    			}
    		}
    	}
    
    	// If the deleted pod doesn't use any host ports, it doesn't make the target pod schedulable.
    	if len(usedPorts) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 10:53:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodStatusResult.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top