Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 81 for HostPort (0.12 sec)

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

            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:
            port: 1
    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

            ],
            "args": [
              "argsValue"
            ],
            "workingDir": "workingDirValue",
            "ports": [
              {
                "name": "nameValue",
                "hostPort": 2,
                "containerPort": 3,
                "protocol": "protocolValue",
                "hostIP": "hostIPValue"
              }
            ],
            "envFrom": [
              {
    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/HEAD/core.v1.ReplicationController.json

                "args": [
                  "argsValue"
                ],
                "workingDir": "workingDirValue",
                "ports": [
                  {
                    "name": "nameValue",
                    "hostPort": 2,
                    "containerPort": 3,
                    "protocol": "protocolValue",
                    "hostIP": "hostIPValue"
                  }
                ],
                "envFrom": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.yaml

                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
    - 35.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.yaml

                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
    - 35.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.json

                "args": [
                  "argsValue"
                ],
                "workingDir": "workingDirValue",
                "ports": [
                  {
                    "name": "nameValue",
                    "hostPort": 2,
                    "containerPort": 3,
                    "protocol": "protocolValue",
                    "hostIP": "hostIPValue"
                  }
                ],
                "envFrom": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.json

                "args": [
                  "argsValue"
                ],
                "workingDir": "workingDirValue",
                "ports": [
                  {
                    "name": "nameValue",
                    "hostPort": 2,
                    "containerPort": 3,
                    "protocol": "protocolValue",
                    "hostIP": "hostIPValue"
                  }
                ],
                "envFrom": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml

                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
    - 37.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.yaml

                  terminationGracePeriodSeconds: 7
                  timeoutSeconds: 3
                name: nameValue
                ports:
                - containerPort: 3
                  hostIP: hostIPValue
                  hostPort: 2
                  name: nameValue
                  protocol: protocolValue
                readinessProbe:
                  exec:
                    command:
                    - commandValue
                  failureThreshold: 6
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/status/server.go

    		proberPath = "/" + proberPath
    	}
    	var url string
    
    	hostPort := net.JoinHostPort(s.appProbersDestination, strconv.Itoa(prober.HTTPGet.Port.IntValue()))
    	if prober.HTTPGet.Scheme == apimirror.URISchemeHTTPS {
    		url = fmt.Sprintf("https://%s%s", hostPort, proberPath)
    	} else {
    		url = fmt.Sprintf("http://%s%s", hostPort, proberPath)
    	}
    	appReq, err := http.NewRequest(http.MethodGet, url, nil)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
Back to top