Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for registry_ (0.15 sec)

  1. pkg/scheduler/framework/plugins/registry.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    )
    
    // NewInTreeRegistry builds the registry with all the in-tree plugins.
    // A scheduler that runs out of tree plugins can register additional plugins
    // through the WithFrameworkOutOfTreeRegistry option.
    func NewInTreeRegistry() runtime.Registry {
    	fts := plfeature.Features{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. cluster/addons/dns/kube-dns/kube-dns.yaml.base

          - 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
    - 7K bytes
    - Viewed (0)
  3. cluster/addons/dns/nodelocaldns/nodelocaldns.yaml

            operator: "Exists"
          - effect: "NoExecute"
            operator: "Exists"
          - effect: "NoSchedule"
            operator: "Exists"
          containers:
          - name: node-cache
            image: registry.k8s.io/dns/k8s-dns-node-cache:1.23.1
            resources:
              requests:
                cpu: 25m
                memory: 5Mi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/apis.go

    	authorizationrest "k8s.io/kubernetes/pkg/registry/authorization/rest"
    	certificatesrest "k8s.io/kubernetes/pkg/registry/certificates/rest"
    	coordinationrest "k8s.io/kubernetes/pkg/registry/coordination/rest"
    	corerest "k8s.io/kubernetes/pkg/registry/core/rest"
    	eventsrest "k8s.io/kubernetes/pkg/registry/events/rest"
    	flowcontrolrest "k8s.io/kubernetes/pkg/registry/flowcontrol/rest"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/options/options.go

    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	openapinamer "k8s.io/apiserver/pkg/endpoints/openapi"
    	genericregistry "k8s.io/apiserver/pkg/registry/generic"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    	genericoptions "k8s.io/apiserver/pkg/server/options"
    	storagevalue "k8s.io/apiserver/pkg/storage/value"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. cluster/addons/dns/kube-dns/kube-dns.yaml.in

          - 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
    - 7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
Back to top