Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,056 for controllee (0.12 sec)

  1. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // associated IngressClass defines which controller will implement the
      // resource. This replaces the deprecated `kubernetes.io/ingress.class`
      // annotation. For backwards compatibility, when that annotation is set, it
      // must be given precedence over this field. The controller may emit a
      // warning if the field and annotation have different values.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/certificates.go

    // components.  This includes replication controllers, service endpoints and
    // nodes.
    package app
    
    import (
    	"context"
    	"fmt"
    
    	"k8s.io/controller-manager/controller"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/cmd/kube-controller-manager/names"
    	"k8s.io/kubernetes/pkg/controller/certificates/approver"
    	"k8s.io/kubernetes/pkg/controller/certificates/cleaner"
    	"k8s.io/kubernetes/pkg/controller/certificates/rootcacertpublisher"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/aggregate/config_test.go

    	store1 := memory.Make(collection.SchemasFor(collections.HTTPRoute))
    	controller1 := memory.NewController(store1)
    	go controller1.Run(stop)
    
    	store2 := memory.Make(collection.SchemasFor(collections.HTTPRoute))
    	controller2 := memory.NewController(store2)
    	go controller2.Run(stop)
    
    	stores := []model.ConfigStoreController{controller1, controller2}
    
    	cacheStore, err := MakeCache(stores)
    	if err != nil {
    		t.Fatal(err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/types.go

    	// If the Job controller observes a mode that it doesn't recognize, which
    	// is possible during upgrades due to version skew, the controller
    	// skips updates for the Job.
    	// +optional
    	CompletionMode *CompletionMode `json:"completionMode,omitempty" protobuf:"bytes,9,opt,name=completionMode,casttype=CompletionMode"`
    
    	// suspend specifies whether the Job controller should create Pods or not. If
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"suspend":                 "suspend specifies whether the Job controller should create Pods or not. If a Job is created with suspend set to true, no Pods are created by the Job controller. If a Job is suspended after creation (i.e. the flag goes from false to true),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/handler.go

    )
    
    const (
    	// timeToWaitForReady is the amount of time to wait to let an admission controller to be ready to satisfy a request.
    	// this is useful when admission controllers need to warm their caches before letting requests through.
    	timeToWaitForReady = 10 * time.Second
    )
    
    // ReadyFunc is a function that returns true if the admission controller is ready to handle requests.
    type ReadyFunc func() bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 08:47:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  7. pkg/controller/certificates/certificate_controller.go

    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/util/workqueue"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/controller"
    )
    
    type CertificateController struct {
    	// name is an identifier for this particular controller instance.
    	name string
    
    	kubeClient clientset.Interface
    
    	csrLister  certificateslisters.CertificateSigningRequestLister
    	csrsSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/ingress/status.go

    			ObjectTransform: kubelib.StripNodeUnusedFields,
    		}),
    	}
    	c.queue = controllers.NewQueue("ingress status",
    		controllers.WithReconciler(c.Reconcile),
    		controllers.WithMaxAttempts(5))
    
    	// For any ingress change, enqueue it - we may need to update the status.
    	c.ingresses.AddEventHandler(controllers.ObjectHandler(c.queue.AddObject))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	csitrans "k8s.io/csi-translation-lib"
    	"k8s.io/kubernetes/pkg/controller/volume/attachdetach/cache"
    	"k8s.io/kubernetes/pkg/controller/volume/attachdetach/metrics"
    	"k8s.io/kubernetes/pkg/controller/volume/attachdetach/populator"
    	"k8s.io/kubernetes/pkg/controller/volume/attachdetach/reconciler"
    	"k8s.io/kubernetes/pkg/controller/volume/attachdetach/statusupdater"
    	"k8s.io/kubernetes/pkg/controller/volume/attachdetach/util"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. pilot/pkg/status/resourcelock.go

    			OnPush: nil,
    		},
    	}
    }
    
    func (wp *WorkerPool) Delete(target Resource) {
    	wp.q.Delete(target)
    }
    
    func (wp *WorkerPool) Push(target Resource, controller *Controller, context any) {
    	wp.q.Push(target, controller, context)
    	wp.maybeAddWorker()
    }
    
    func (wp *WorkerPool) Run(ctx context.Context) {
    	context.AfterFunc(ctx, func() {
    		wp.lock.Lock()
    		wp.closing = true
    		wp.lock.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top