Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 85 for Healthy (3.11 sec)

  1. tests/integration/pilot/vm_test.go

    				d := fmt.Sprintf("%s-%s", autoVM.Config().Service, "v1")
    				scaleDeploymentOrFail(t, d, autoVM.Config().Namespace.Name(), 0)
    				// it should take at most just over GracePeriod to cleanup if all pilots are healthy
    				retry.UntilSuccessOrFail(t, func() error {
    					if len(getWorkloadEntriesOrFail(t, autoVM)) > 0 {
    						return errors.New("expected 0 WorkloadEntries")
    					}
    					return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/multicluster_test.go

    						return fmt.Errorf("container %s in %s is not started", status.Name, pod)
    					}
    				}
    				return nil
    			}, retry.Timeout(5*time.Minute), retry.Delay(time.Second))
    
    			// make sure the pod comes up healthy
    			retry.UntilSuccessOrFail(t, func() error {
    				pod, err := pods.Get(context.TODO(), pod, metav1.GetOptions{})
    				if err != nil {
    					return err
    				}
    				status := pod.Status.ContainerStatuses
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/health.go

    func CheckClusterHealth(client clientset.Interface, cfg *kubeadmapi.ClusterConfiguration, ignoreChecksErrors sets.Set[string], printer output.Printer) error {
    	_, _ = printer.Println("[upgrade] Running cluster health checks")
    
    	healthChecks := []preflight.Checker{
    		&healthCheck{
    			name:   "CreateJob",
    			client: client,
    			cfg:    cfg,
    			f:      createJob,
    		},
    		&healthCheck{
    			name:   "ControlPlaneNodesReady",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. cmd/callhome.go

    			healthInfo = hi
    		case <-healthCtx.Done():
    			return
    		}
    	}
    }
    
    const (
    	subnetHealthPath = "/api/health/upload"
    )
    
    func sendHealthInfo(ctx context.Context, healthInfo madmin.HealthInfo) error {
    	url := globalSubnetConfig.BaseURL + subnetHealthPath
    
    	filename := fmt.Sprintf("health_%s.json.gz", UTCNow().Format("20060102150405"))
    	url += "?filename=" + filename
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 16:53:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    	}
    	return nil
    }
    
    // postStartHookHealthz implements a healthz check for poststarthooks.  It will return a "hookNotFinished"
    // error until the poststarthook is finished.
    type postStartHookHealthz struct {
    	name string
    
    	// done will be closed when the postStartHook is finished
    	done chan struct{}
    }
    
    var _ healthz.HealthChecker = postStartHookHealthz{}
    
    func (h postStartHookHealthz) Name() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. .github/workflows/tests.yml

              MYSQL_RANDOM_ROOT_PASSWORD: "yes"
            ports:
              - 9910:3306
            options: >-
              --health-cmd "mysqladmin ping -ugorm -pgorm"
              --health-interval 10s
              --health-start-period 10s
              --health-timeout 5s
              --health-retries 10
    
        steps:
        - name: Set up Go 1.x
          uses: actions/setup-go@v4
          with:
            go-version: ${{ matrix.go }}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/DaemonHealthStats.java

    import org.gradle.internal.util.NumberUtil;
    import org.gradle.launcher.daemon.server.health.gc.DefaultGarbageCollectionMonitor;
    import org.gradle.launcher.daemon.server.health.gc.GarbageCollectionInfo;
    import org.gradle.launcher.daemon.server.health.gc.GarbageCollectionMonitor;
    import org.gradle.launcher.daemon.server.health.gc.GarbageCollectionStats;
    import org.gradle.launcher.daemon.server.health.gc.GarbageCollectorMonitoringStrategy;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. .github/workflows/iam-integrations.yaml

              ETCD_ADVERTISE_CLIENT_URLS: "http://0.0.0.0:2379"
            ports:
              - "2379:2379"
            options: >-
              --health-cmd "etcdctl endpoint health"
              --health-interval 10s
              --health-timeout 5s
              --health-retries 5
          openid:
            image: quay.io/minio/dex
            ports:
              - "5556:5556"
            env:
              DEX_LDAP_SERVER: "openldap:389"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- end }}
            ports:
    {{- range $i, $p := $appContainer.ContainerPorts }}
            - containerPort: {{ $p.Port }}
    {{- if eq .Port 3333 }}
              name: tcp-health-port
    {{- else if and ($appContainer.ImageFullPath) (eq .Port 17171) }}
              name: tcp-health-port
    {{- end }}
    {{- end }}
            env:
            - name: INSTANCE_IP
              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus;
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationStrategy;
    import org.gradle.launcher.daemon.server.health.gc.GarbageCollectionStats;
    import org.gradle.launcher.daemon.server.health.gc.GarbageCollectorMonitoringStrategy;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.util.ArrayList;
    import java.util.List;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top