Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for lives (0.04 sec)

  1. pkg/controller/daemon/update_test.go

    			expectControllerRevisions: []*apps.ControllerRevision{crOfDs1, orphanCrInSameNsWithDs1},
    		},
    		{
    			name: "Skip adopting the controller revision in namespace other than the one in which DS lives",
    			managerFunc: func(ctx context.Context) *daemonSetsController {
    				manager, _, _, err := newTestController(ctx, ds1, orphanCrNotInSameNsWithDs1)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/core.go

    		controllerContext.InformerFactory.Core().V1().Nodes(),
    		controllerContext.ComponentConfig.KubeCloudShared.ClusterName,
    		utilfeature.DefaultFeatureGate,
    	)
    	if err != nil {
    		// This error shouldn't fail. It lives like this as a legacy.
    		klog.FromContext(ctx).Error(err, "Failed to start service controller")
    		return nil, false, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    			encryptionConfigPath: "testdata/encryption-configs/no-kms-provider.yaml",
    			wantHealthzChecks:    []string{"etcd"},
    			wantReadyzChecks:     []string{"etcd", "etcd-readiness"},
    			wantLivezChecks:      []string{"etcd"},
    		},
    		{
    			name:                 "no kms-provider+reload, expect single kms healthz check, no kms livez check",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		"/healthz/wrapping-health",
    		"/livez",
    		"/livez/delegate-health",
    		"/livez/log",
    		"/livez/ping",
    		"/livez/poststarthook/delegate-post-start-hook",
    		"/livez/poststarthook/generic-apiserver-start-informers",
    		"/livez/poststarthook/max-in-flight-filter",
    		"/livez/poststarthook/storage-object-count-tracker-hook",
    		"/livez/poststarthook/wrapping-post-start-hook",
    		"/metrics",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/number_generated_rules_test.go

    			if fp.filterRules.Lines() != test.expectedFilterRules {
    				t.Errorf("expected number of Filter rules: %d, got: %d", test.expectedFilterRules, fp.filterRules.Lines())
    			}
    
    			if fp.natRules.Lines() != test.expectedNatRules {
    				t.Errorf("expected number of NAT rules: %d, got: %d", test.expectedNatRules, fp.natRules.Lines())
    			}
    
    			// print generated iptables data
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. hack/update-vendor.sh

      local go_mod_replace="${local_tmp_dir}/go.mod.replace.tmp"
      local go_mod_other="${local_tmp_dir}/go.mod.other.tmp"
      # separate replace and non-replace directives
      awk "
         # print lines between 'require (' ... ')' lines
         /^require [(]/          { inrequire=1; next                            }
         inrequire && /^[)]/     { inrequire=0; next                            }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/token.go

    			to trust the server it is talking to. Then a bootstrap token with the "signing" usage can be used.
    			bootstrap tokens can also function as a way to allow short-lived authentication to the API Server
    			(the token serves as a way for the API Server to trust the client), for example for doing the TLS Bootstrap.
    
    			What is a bootstrap token more exactly?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder_test.go

    			if !gotProperties.Equal(wantedProperties) {
    				t.Fatalf("unexpected properties, got: %s, expected: %s", gotProperties.List(), wantedProperties.List())
    			}
    
    			// wipe out TypeMeta/ObjectMeta content, with those many lines of descriptions. We trust that they match here.
    			for _, metaField := range []string{"kind", "apiVersion", "metadata"} {
    				if _, found := got.schema.Properties["kind"]; found {
    					prop := got.schema.Properties[metaField]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/etcd/local.go

    				},
    			},
    			// The etcd probe endpoints are explained here:
    			// https://github.com/kubernetes/kubeadm/issues/3039
    			LivenessProbe:  staticpodutil.LivenessProbe(probeHostname, "/livez", probePort, probeScheme),
    			ReadinessProbe: staticpodutil.ReadinessProbe(probeHostname, "/readyz", probePort, probeScheme),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  10. cmd/kube-scheduler/app/server.go

    	})
    }
    
    // newHealthEndpointsAndMetricsHandler creates an API health server from the config, and will also
    // embed the metrics handler.
    // TODO: healthz check is deprecated, please use livez and readyz instead. Will be removed in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top