Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for Healthy (0.34 sec)

  1. pilot/pkg/xds/delta.go

    		if firstRequest {
    			// probe happens before envoy sends first xDS request
    			if req.TypeUrl == v3.HealthInfoType {
    				log.Warnf("ADS: %q %s send health check probe before normal xDS request", con.Peer(), con.ID())
    				continue
    			}
    			firstRequest = false
    			if req.Node == nil || req.Node.Id == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.29.md

    - Removed `/livez` livezchecks for KMS v1 and v2 to ensure KMS health does not cause `kube-apiserver` restart. KMS health checks are still in place as a healthz and readiness checks. ([#120583](https://github.com/kubernetes/kubernetes/pull/120583), [@ritazh](https://github.com/ritazh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    					Build()
    				opt.Check = check.Status(http.StatusUnauthorized)
    				src.CallOrFail(t, opt)
    			})
    
    			t.NewSubTest("allow healthz").Run(func(t framework.TestContext) {
    				opt := opt.DeepCopy()
    				opt.HTTP.Path = "/healthz"
    				opt.Check = check.OK()
    				src.CallOrFail(t, opt)
    			})
    		})
    	})
    }
    
    func applyDrainingWorkaround(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

      gcloud compute health-checks --project "${PROJECT}" create tcp "${MASTER_NAME}-hc" --port=443
    
      gcloud compute backend-services create "${MASTER_NAME}" \
        --project "${PROJECT}" \
        --region "${REGION}" \
        --protocol tcp \
        --region "${REGION}" \
        --load-balancing-scheme internal \
        --health-checks "${MASTER_NAME}-hc"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    	proxier.syncRunner.Run()
    }
    
    // SyncLoop runs periodic work.  This is expected to run as a goroutine or as the main loop of the app.  It does not return.
    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    
    	// synthesize "last change queued" time as the informers are syncing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

              livenessProbe:
                failureThreshold: 10
                httpGet:
                  path: /api/health
                  port: 3000
                initialDelaySeconds: 60
                timeoutSeconds: 30
              readinessProbe:
                httpGet:
                  path: /api/health
                  port: 3000
          volumes:
            - name: config
              configMap:
                name: grafana
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    			break
    		}
    		if len(h.Command) == 0 {
    			errs = appendErrors(errs, fmt.Errorf("exec.command is required"))
    		}
    	default:
    		errs = appendErrors(errs, fmt.Errorf("unknown health check method %T", m))
    	}
    	return errs
    }
    
    // ValidateServiceEntry validates a service entry.
    var ValidateServiceEntry = RegisterValidateFunc("ValidateServiceEntry",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top