Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 774 for Healthy (0.18 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    					"/livez", "/readyz", "/healthz",
    					"/version", "/version/",
    					"/openapi", "/openapi/*",
    					"/api", "/api/*",
    					"/apis", "/apis/*",
    				).RuleOrDie(),
    			},
    		},
    		{
    			// a role which provides minimal read access to the monitoring endpoints
    			// (i.e. /metrics, /livez/*, /readyz/*, /healthz/*, /livez, /readyz, /healthz)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. .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)
  5. CHANGELOG/CHANGELOG-1.27.md

    - Fixes #115825. Kube-proxy will now include the `healthz` state in its response to the LB HC as to avoid indicating to the LB that it should use the node in question when Kube-proxy is not healthy. ([#111661](https://github.com/kubernetes/kubernetes/pull/111661), [@alexanderConstantinescu](https://github.com/alexanderConstantinescu)) [SIG Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server.go

    // app probers.
    func FormatProberURL(container string) (string, string, string) {
    	return fmt.Sprintf("/app-health/%v/readyz", container),
    		fmt.Sprintf("/app-health/%v/livez", container),
    		fmt.Sprintf("/app-health/%v/startupz", container)
    }
    
    // Run opens a the status port and begins accepting probes.
    func (s *Server) Run(ctx context.Context) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  7. pkg/probe/http/http_test.go

    				t.Fatal(err)
    			}
    			health, output, err := prober.Probe(req, 1*time.Second)
    			if test.health == probe.Unknown && err == nil {
    				t.Errorf("case %d: expected error", i)
    			}
    			if test.health != probe.Unknown && err != nil {
    				t.Errorf("case %d: unexpected error: %v", i, err)
    			}
    			if health != test.health {
    				t.Errorf("case %d: expected %v, got %v", i, test.health, health)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:40:08 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top