Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for registry_ (0.32 sec)

  1. pkg/volume/plugins.go

    					// implementations without a valid VolumeSource will fail.
    					VolumeSource: v1.VolumeSource{},
    				},
    			},
    			Containers: []v1.Container{
    				{
    					Name:    "pv-recycler",
    					Image:   "registry.k8s.io/build-image/debian-base:bookworm-v1.0.3",
    					Command: []string{"/bin/sh"},
    					Args:    []string{"-c", "test -e /scrub && find /scrub -mindepth 1 -delete && test -z \"$(ls -A /scrub)\" || exit 1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  2. pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"registry": {
    						SchemaProps: spec.SchemaProps{
    							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",
    							Default:     "",
    							Type:        []string{"string"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  3. cluster/addons/dns/kube-dns/kube-dns.yaml.sed

          - name: kube-dns-config
            configMap:
              name: kube-dns
              optional: true
          nodeSelector:
            kubernetes.io/os: linux
          containers:
          - name: kubedns
            image: registry.k8s.io/dns/k8s-dns-kube-dns:1.23.1
            resources:
              # TODO: Set memory limits when we've profiled the container for large
              # clusters, then set request = limit to keep this container in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    		RecordTime: store.clock.Now(),
    	}
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		store.updateCache(add)
    	}
    }
    
    func TestHistogramCacheReadWait(t *testing.T) {
    	registry := k8smetrics.NewKubeRegistry()
    	if err := registry.Register(metrics.WatchCacheReadWait); err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	ctx := context.Background()
    	testedMetrics := "apiserver_watch_cache_read_wait_seconds"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. api/openapi-spec/swagger.json

              "type": "boolean"
            },
            "registry": {
              "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
    - 3.1M bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Kubectl support both:
      - kubectl create secret docker-registry <NAME> --from-file=<path/to/.docker/config.json>
      - kubectl create secret docker-registry <NAME> --from-file=.dockerconfigjson=<path/to/.docker/config.json> ([#119589](https://github.com/kubernetes/kubernetes/pull/119589), [@carlory](https://github.com/carlory)) [SIG CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    	"k8s.io/kubernetes/pkg/scheduler/util"
    )
    
    // Name of the plugin used in the plugin registry and configurations.
    const Name = names.SchedulingGates
    
    // SchedulingGates checks if a Pod carries .spec.schedulingGates.
    type SchedulingGates struct {
    	enableSchedulingQueueHint bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/fit.go

    var _ framework.FilterPlugin = &Fit{}
    var _ framework.EnqueueExtensions = &Fit{}
    var _ framework.PreScorePlugin = &Fit{}
    var _ framework.ScorePlugin = &Fit{}
    
    const (
    	// Name is the name of the plugin used in the plugin registry and configurations.
    	Name = names.NodeResourcesFit
    
    	// preFilterStateKey is the key in CycleState to NodeResourcesFit pre-computed data.
    	// Using the name of the plugin will likely help us avoid collisions with other plugins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  9. build/common.sh

    KUBE_BUILD_IMAGE_CROSS_TAG="$(cat "${KUBE_ROOT}/build/build-image/cross/VERSION")"
    readonly KUBE_BUILD_IMAGE_CROSS_TAG
    
    readonly KUBE_DOCKER_REGISTRY="${KUBE_DOCKER_REGISTRY:-registry.k8s.io}"
    KUBE_BASE_IMAGE_REGISTRY="${KUBE_BASE_IMAGE_REGISTRY:-registry.k8s.io/build-image}"
    readonly KUBE_BASE_IMAGE_REGISTRY
    
    # This version number is used to cause everyone to rebuild their data containers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    func TestPrefix(t *testing.T) {
    	testcases := map[string]string{
    		"custom/prefix":     "/custom/prefix/",
    		"/custom//prefix//": "/custom/prefix/",
    		"/registry":         "/registry/",
    	}
    	for configuredPrefix, effectivePrefix := range testcases {
    		_, store, _ := testSetup(t, withPrefix(configuredPrefix))
    		if store.pathPrefix != effectivePrefix {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top