Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 294 for httpGet (0.44 sec)

  1. cluster/gce/manifests/kube-apiserver.manifest

        {{container_env}}
        "livenessProbe": {
          "httpGet": {
            "scheme": "HTTPS",
            "host": "{{healthcheck_ip}}",
            "port": {{secure_port}},
            "path": "/livez?exclude=etcd&exclude=kms-provider-0&exclude=kms-provider-1"
          },
          "initialDelaySeconds": {{liveness_probe_initial_delay}},
          "timeoutSeconds": 15
        },
        "readinessProbe": {
          "httpGet": {
            "scheme": "HTTPS",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/testdata/vmconfig/ipv4/workloadgroup.yaml

              # this should override the value from the global meshconfig
              PROXY_CONFIG_ANNOT_VALUE: bar
        labels: {}
      template:
        ports: {}
        serviceAccount: vm-serviceaccount
      probe:
        httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 377 bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go

    	return b
    }
    
    // WithHTTPGet sets the HTTPGet field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the HTTPGet field is set to the value of the last call.
    func (b *ProbeApplyConfiguration) WithHTTPGet(value *HTTPGetActionApplyConfiguration) *ProbeApplyConfiguration {
    	b.HTTPGet = value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  4. istioctl/pkg/workload/testdata/vmconfig/ipv4/mesh.yaml.golden

        POD_NAMESPACE: bar
        PROXY_CONFIG_ANNOT_VALUE: bar
        SERVICE_ACCOUNT: vm-serviceaccount
        TRUST_DOMAIN: ""
      readinessProbe:
        httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 625 bytes
    - Viewed (0)
  5. istioctl/pkg/workload/testdata/vmconfig/ipv6/mesh.yaml.golden

        POD_NAMESPACE: bar
        PROXY_CONFIG_ANNOT_VALUE: bar
        SERVICE_ACCOUNT: vm-serviceaccount
        TRUST_DOMAIN: ""
      readinessProbe:
        httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 625 bytes
    - Viewed (0)
  6. releasenotes/notes/fix-healthcheck-host-override.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 45632
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 10 17:23:40 UTC 2023
    - 167 bytes
    - Viewed (0)
  7. cluster/addons/metrics-server/metrics-server-deployment.yaml

            - containerPort: 10250
              name: https
              protocol: TCP
            readinessProbe:
              httpGet:
                path: /readyz
                port: https
                scheme: HTTPS
              periodSeconds: 10
              failureThreshold: 3
            livenessProbe:
              httpGet:
                path: /livez
                port: https
                scheme: HTTPS
              periodSeconds: 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/testdata/multiversion.yaml

                fieldRef:
                  fieldPath: status.podIP
            - name: NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
            readinessProbe:
              httpGet:
                path: /
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions-no-proxy.yaml

                fieldRef:
                  fieldPath: status.podIP
            - name: NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
            readinessProbe:
              httpGet:
                path: /
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. pkg/controller/deployment/util/hash_test.go

                        "requests": {
                            "cpu": "1",
                            "memory": "1Gi"
                        }
                    },
                    "livenessProbe": {
                        "httpGet": {
                            "path": "/private/status",
                            "port": 9077,
                            "scheme": "HTTP"
                        },
                        "initialDelaySeconds": 30,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 28 19:00:40 UTC 2019
    - 4K bytes
    - Viewed (0)
Back to top