Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 645 for livez (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	fs.DurationVar(&s.LivezGracePeriod, "livez-grace-period", s.LivezGracePeriod, ""+
    		"This option represents the maximum amount of time it should take for apiserver to complete its startup sequence "+
    		"and become live. From apiserver's start time to when this amount of time has elapsed, /livez will assume "+
    		"that unfinished post-start hooks will complete successfully and therefore return true.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:monitoring
      rules:
      - nonResourceURLs:
        - /healthz
        - /healthz/*
        - /livez
        - /livez/*
        - /metrics
        - /metrics/slis
        - /readyz
        - /readyz/*
        verbs:
        - get
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  3. pkg/kube/inject/webhook_test.go

    			probers: `{"/app-health/bar/livez":{"httpGet":{"path":"/","port":9000,"scheme":"HTTP"}},` +
    				`"/app-health/foo/livez":{"httpGet":{"path":"/","port":8000,"scheme":"HTTP"}}}`,
    			want: []corev1.EnvVar{{
    				Name: status.KubeAppProberEnvName,
    				Value: `{"/app-health/bar/livez":{"httpGet":{"path":"/","port":9000,"scheme":"HTTP"}},` +
    					`"/app-health/foo/livez":{"httpGet":{"path":"/","port":8000,"scheme":"HTTP"}}}`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  4. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    				rbacv1helpers.NewRule("get").URLs(
    					"/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)
  5. cluster/addons/metrics-server/metrics-server-deployment.yaml

              httpGet:
                path: /readyz
                port: https
                scheme: HTTPS
              periodSeconds: 10
              failureThreshold: 3
            livenessProbe:
              httpGet:
                path: /livez
                port: https
                scheme: HTTPS
              periodSeconds: 10
              failureThreshold: 3
            volumeMounts:
            - mountPath: /tmp
              name: tmp-dir
          - name: metrics-server-nanny
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. pkg/proxy/healthcheck/proxier_health.go

    	ToBeDeletedTaint = "ToBeDeletedByClusterAutoscaler"
    )
    
    // ProxierHealthServer allows callers to:
    //  1. run a http server with /healthz and /livez endpoint handlers.
    //  2. update healthz timestamps before and after synchronizing dataplane.
    //  3. sync node status, for reporting unhealthy /healthz response
    //     if the node is marked for deletion by autoscaler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. pkg/proxy/metrics/metrics.go

    		},
    		[]string{"code"},
    	)
    
    	// ProxyLivezTotal is the number of returned HTTP Status for each
    	// livez probe.
    	ProxyLivezTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "proxy_livez_total",
    			Help:           "Cumulative proxy livez HTTP status",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"code"},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. prow/config/metrics/metrics.yaml

            image: registry.k8s.io/metrics-server/metrics-server:v0.7.1
            imagePullPolicy: IfNotPresent
            livenessProbe:
              failureThreshold: 3
              httpGet:
                path: /livez
                port: https
                scheme: HTTPS
              periodSeconds: 10
            name: metrics-server
            ports:
            - containerPort: 10250
              name: https
              protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 20:51:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    }
    
    // InstallLivezHandler registers handlers for liveness checking on the path
    // "/livez" to mux. *All handlers* for mux must be specified in
    // exactly one call to InstallHandler. Calling InstallHandler more
    // than once for the same mux will result in a panic.
    func InstallLivezHandler(mux mux, checks ...HealthChecker) {
    	InstallPathHandler(mux, "/livez", checks...)
    }
    
    // InstallPathHandler registers handlers for health checking on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. cmd/kube-scheduler/app/options/options_test.go

    					AllowCacheTTL:                10 * time.Second,
    					DenyCacheTTL:                 10 * time.Second,
    					RemoteKubeConfigFileOptional: true,
    					AlwaysAllowPaths:             []string{"/healthz", "/readyz", "/livez"}, // note: this does not match /healthz/ or /healthz/*
    					AlwaysAllowGroups:            []string{"system:masters"},
    				},
    				Logs: logs.NewOptions(),
    			},
    			expectedUsername: "config",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
Back to top