Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 402 for readinessProbe (0.17 sec)

  1. pkg/test/framework/components/echo/kube/testdata/multiversion.yaml

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

    	UnhealthyStatus  int32
    	UnhealthyMessage string
    }
    
    const (
    	lastStateUndefined = iota
    	lastStateHealthy
    	lastStateUnhealthy
    )
    
    func fillInDefaults(cfg *v1alpha3.ReadinessProbe, ipAddresses []string) *v1alpha3.ReadinessProbe {
    	cfg = cfg.DeepCopy()
    	// Thresholds have a minimum of 1
    	cfg.FailureThreshold = orDefault(cfg.FailureThreshold, 1)
    	cfg.SuccessThreshold = orDefault(cfg.SuccessThreshold, 1)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:44 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions-no-proxy.yaml

              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
            - name: NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
            readinessProbe:
              httpGet:
                path: /
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.6K 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. pkg/kube/inject/testdata/inject/ready_live.yaml.injected

            livenessProbe:
              httpGet:
                path: /app-health/hello/livez
                port: 15020
            name: hello
            ports:
            - containerPort: 80
              name: http
            readinessProbe:
              httpGet:
                path: /app-health/hello/readyz
                port: 15020
            resources: {}
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            livenessProbe:
              httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.injected

                  - pilot-agent
                  - wait
            name: istio-proxy
            ports:
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
            readinessProbe:
              failureThreshold: 4
              httpGet:
                path: /healthz/ready
                port: 15021
              periodSeconds: 15
              timeoutSeconds: 3
            resources:
              limits:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions.yaml

              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
            - name: NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
            readinessProbe:
              httpGet:
                path: /
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. hack/testdata/pod-with-metadata-and-probes.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      annotations:
        test: test
      labels:
        run: target
      name: target
    spec:
      containers:
      - image: registry.k8s.io/nginx:1.7.9
        name: target
        readinessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        livenessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        startupProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 17:26:20 UTC 2024
    - 471 bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/tcp-probes.yaml

              ports:
                - name: http
                  containerPort: 80
              livenessProbe:
                tcpSocket:
                  port: http
              readinessProbe:
                tcpSocket:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 26 08:44:57 UTC 2021
    - 607 bytes
    - Viewed (0)
Back to top