Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for registry_ (0.64 sec)

  1. cluster/gce/gci/configure-helper.sh

    [plugins."io.containerd.grpc.v1.cri".registry.mirrors."docker.io"]
      endpoint = ["https://mirror.gcr.io","https://registry-1.docker.io"]
    # Enable registry.k8s.io as the primary mirror for k8s.gcr.io
    # See: https://github.com/kubernetes/k8s.io/issues/3411
    [plugins."io.containerd.grpc.v1.cri".registry.mirrors."k8s.gcr.io"]
      endpoint = ["https://registry.k8s.io", "https://k8s.gcr.io",]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/options_test.go

    					TrustedCAFile:  "/var/run/kubernetes/etcdca.crt",
    					CertFile:       "/var/run/kubernetes/etcdce.crt",
    					TracerProvider: noopoteltrace.NewTracerProvider(),
    				},
    				Prefix:                "/registry",
    				CompactionInterval:    storagebackend.DefaultCompactInterval,
    				CountMetricPollPeriod: time.Minute,
    				DBMetricPollInterval:  storagebackend.DefaultDBMetricPollInterval,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    					{
    						Name: "FakeNodeSelector",
    						Args: &runtime.Unknown{Raw: []byte(`{"nodeName":"node3"}`)},
    					},
    				},
    			},
    		),
    		WithFrameworkOutOfTreeRegistry(frameworkruntime.Registry{
    			"FakeNodeSelector": newFakeNodeSelector,
    		}),
    	)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Capture the bindings and events' controllers.
    	var wg sync.WaitGroup
    	wg.Add(2 * len(pods))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    var _ framework.PreScorePlugin = &TaintToleration{}
    var _ framework.ScorePlugin = &TaintToleration{}
    var _ framework.EnqueueExtensions = &TaintToleration{}
    
    const (
    	// Name is the name of the plugin used in the plugin registry and configurations.
    	Name = names.TaintToleration
    	// preScoreStateKey is the key in CycleState to TaintToleration pre-computed data for Scoring.
    	preScoreStateKey = "PreScore" + Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/options/options_test.go

    						TrustedCAFile:  "/var/run/kubernetes/etcdca.crt",
    						CertFile:       "/var/run/kubernetes/etcdce.crt",
    						TracerProvider: noopoteltrace.NewTracerProvider(),
    					},
    					Prefix:                "/registry",
    					CompactionInterval:    storagebackend.DefaultCompactInterval,
    					CountMetricPollPeriod: time.Minute,
    					DBMetricPollInterval:  storagebackend.DefaultDBMetricPollInterval,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/config.go

    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubeapiserver"
    	"k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes"
    	rbacrest "k8s.io/kubernetes/pkg/registry/rbac/rest"
    	"k8s.io/kubernetes/pkg/serviceaccount"
    )
    
    // Config defines configuration for the master
    type Config struct {
    	Generic *genericapiserver.Config
    	Extra
    }
    
    type Extra struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    						Value: "test-test-test",
    					},
    					{
    						Name: "POD_NAME",
    						ValueFrom: &v1.EnvVarSource{
    							FieldRef: &v1.ObjectFieldSelector{
    								APIVersion: "v1", //legacyscheme.Registry.GroupOrDie(v1.GroupName).GroupVersion.String(),
    								FieldPath:  "metadata.name",
    							},
    						},
    					},
    					{
    						Name:  "OUT_OF_ORDER_TEST",
    						Value: "$(OUT_OF_ORDER_TARGET)",
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "boolean"
              },
              "registry": {
                "default": "",
                "description": "registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes",
                "type": "string"
              },
              "tenant": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    		return fmt.Errorf("error creating plugins directory: %v", err)
    	}
    	if err := os.MkdirAll(kl.getPluginsRegistrationDir(), 0750); err != nil {
    		return fmt.Errorf("error creating plugins registry directory: %v", err)
    	}
    	if err := os.MkdirAll(kl.getPodResourcesDir(), 0750); err != nil {
    		return fmt.Errorf("error creating podresources directory: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top