Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 394 for Healthy (0.31 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/with_retry_after.go

    limitations under the License.
    */
    
    package filters
    
    import (
    	"net/http"
    	"strings"
    )
    
    var (
    	// health probes and metrics scraping are never rejected, we will continue
    	// serving these requests after shutdown delay duration elapses.
    	pathPrefixesExemptFromRetryAfter = []string{
    		"/readyz",
    		"/livez",
    		"/healthz",
    		"/metrics",
    	}
    )
    
    // isRequestExemptFunc returns true if the request should not be rejected,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 31 14:10:46 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/apiclient/wait_test.go

    				{name: "kube-apiserver", url: "https://127.0.0.1:1111/healthz"},
    				{name: "kube-controller-manager", url: "https://127.0.0.1:2222/healthz"},
    				{name: "kube-scheduler", url: "https://127.0.0.1:3333/healthz"},
    			},
    		},
    		{
    			name: "default ports",
    			cfg:  &kubeadmapi.ClusterConfiguration{},
    			expected: []controlPlaneComponent{
    				{name: "kube-apiserver", url: "https://127.0.0.1:6443/healthz"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. docs/metrics/healthcheck/README.md

    ## Liveness probe
    
    This probe always responds with '200 OK'. Only fails if 'etcd' is configured and unreachable. When liveness probe fails, Kubernetes like platforms restart the container.
    
    ```
    livenessProbe:
      httpGet:
        path: /minio/health/live
        port: 9000
        scheme: HTTP
      initialDelaySeconds: 120
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jul 06 16:18:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. .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)
  6. pilot/pkg/autoregistration/internal/state/store.go

    }
    
    // UpdateHealth updates the associated WorkloadEntries health status
    // based on the corresponding health check performed by istio-agent.
    func (s *Store) UpdateHealth(proxyID, entryName, entryNs string, condition *v1alpha1.IstioCondition) error {
    	// get previous status
    	cfg := s.store.Get(gvk.WorkloadEntry, entryName, entryNs)
    	if cfg == nil {
    		return fmt.Errorf("failed to update health status for %v: WorkloadEntry %v not found", proxyID, entryNs)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. pilot/pkg/autoregistration/internal/health/util.go

    // limitations under the License.
    
    package health
    
    import (
    	"istio.io/api/meta/v1alpha1"
    	"istio.io/istio/pilot/pkg/model/status"
    	"istio.io/istio/pkg/config"
    )
    
    // IsEligibleForHealthStatusUpdates returns true if a given WorkloadEntry
    // is allowed to receive health status updates sent by an Istio Proxy.
    //
    // Consider a workload eligible for health status updates as long as the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 07:04:17 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions-no-proxy.yaml

              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
              failureThreshold: 10
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. releasenotes/notes/agent-probe-keepalives.yaml

    issue:
    - 36390
    
    releaseNotes:
    - |
      **Improved** istio-agent health probe rewrite to not re-use connections, mirring Kubernetes' probing behavior.
    
    upgradeNotes:
    - title: Health Probes will no longer re-use connections
      content: |
        Health probes using the istio-agent [health probe rewrite](https://istio.io/latest/docs/ops/configuration/mesh/app-health-check/) will
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 07 20:06:21 UTC 2021
    - 963 bytes
    - Viewed (0)
  10. 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)
Back to top