Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for startupProbe (0.18 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.yaml

                    gmsaCredentialSpec: gmsaCredentialSpecValue
                    gmsaCredentialSpecName: gmsaCredentialSpecNameValue
                    hostProcess: true
                    runAsUserName: runAsUserNameValue
                startupProbe:
                  exec:
                    command:
                    - commandValue
                  failureThreshold: 6
                  grpc:
                    port: 1
                    service: serviceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

          windowsOptions:
            gmsaCredentialSpec: gmsaCredentialSpecValue
            gmsaCredentialSpecName: gmsaCredentialSpecNameValue
            hostProcess: true
            runAsUserName: runAsUserNameValue
        startupProbe:
          exec:
            command:
            - commandValue
          failureThreshold: 6
          grpc:
            port: 1
            service: serviceValue
          httpGet:
            host: hostValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/etcd/local.go

    			LivenessProbe:  staticpodutil.LivenessProbe(probeHostname, "/livez", probePort, probeScheme),
    			ReadinessProbe: staticpodutil.ReadinessProbe(probeHostname, "/readyz", probePort, probeScheme),
    			StartupProbe:   staticpodutil.StartupProbe(probeHostname, "/readyz", probePort, probeScheme, componentHealthCheckTimeout),
    			Env:            kubeadmutil.MergeKubeadmEnvVars(cfg.Etcd.Local.ExtraEnvs),
    		},
    		etcdMounts,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  4. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

            {{- end }}
            resources:
              limits:
                cpu: "2"
                memory: 1Gi
              requests:
                cpu: 100m
                memory: 128Mi
            startupProbe:
              failureThreshold: 30
              httpGet:
                path: /healthz/ready
                port: 15021
                scheme: HTTP
              initialDelaySeconds: 1
              periodSeconds: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

            {{- end }}
            {{- with (index .InfrastructureLabels "topology.istio.io/network") }}
            - name: ISTIO_META_REQUESTED_NETWORK_VIEW
              value: {{.|quote}}
            {{- end }}
            startupProbe:
              failureThreshold: 30
              httpGet:
                path: /healthz/ready
                port: 15021
                scheme: HTTP
              initialDelaySeconds: 1
              periodSeconds: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/etcd/local_test.go

            path: /readyz
            port: 2381
            scheme: HTTP
          periodSeconds: 1
          timeoutSeconds: 15
        resources:
          requests:
            cpu: 100m
            memory: 100Mi
        startupProbe:
          failureThreshold: 24
          httpGet:
            host: 127.0.0.1
            path: /readyz
            port: 2381
            scheme: HTTP
          initialDelaySeconds: 10
          periodSeconds: 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/net_test.go

    			},
    		},
    		LivenessProbe: &corev1.Probe{
    			ProbeHandler: corev1.ProbeHandler{
    				HTTPGet: &corev1.HTTPGetAction{
    					Port: intstr.FromString("foo-2-port"),
    				},
    			},
    		},
    		StartupProbe: &corev1.Probe{
    			ProbeHandler: corev1.ProbeHandler{
    				HTTPGet: &corev1.HTTPGetAction{
    					Port: intstr.FromInt(7777),
    				},
    			},
    		},
    	}
    
    	containers := []corev1.Container{app1}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/values.yaml

          # This ensures the startup is reasonable fast (polling every 2s). 1s delay is used since the startup is not often ready instantly.
          startupProbe:
            enabled: true
            failureThreshold: 600 # 10 minutes
          # Resources for the sidecar.
          resources:
            requests:
              cpu: 100m
              memory: 128Mi
            limits:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/values.yaml

          # This ensures the startup is reasonable fast (polling every 2s). 1s delay is used since the startup is not often ready instantly.
          startupProbe:
            enabled: true
            failureThreshold: 600 # 10 minutes
    
          # Resources for the sidecar.
          resources:
            requests:
              cpu: 100m
              memory: 128Mi
            limits:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/kube/deployment.go

    		"TLSSettings":             cfg.TLSSettings,
    		"Cluster":                 cfg.Cluster.Name(),
    		"ReadinessTCPPort":        cfg.ReadinessTCPPort,
    		"ReadinessGRPCPort":       cfg.ReadinessGRPCPort,
    		"StartupProbe":            supportStartupProbe,
    		"IncludeExtAuthz":         cfg.IncludeExtAuthz,
    		"Revisions":               settings.Revisions.TemplateMap(),
    		"Compatibility":           settings.Compatibility,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top