Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,056 for controllee (0.3 sec)

  1. cmd/endpoint-ellipses_test.go

    			true,
    		},
    		{
    			[]string{"data/controller{1...11}/export{1...8}"},
    			[]uint64{88},
    			[][]uint64{{11, 11, 11, 11, 11, 11, 11, 11}},
    			true,
    		},
    		{
    			[]string{"data{1...4}"},
    			[]uint64{4},
    			[][]uint64{{4}},
    			true,
    		},
    		{
    			[]string{"data/controller1/export{1...10}, data/controller2/export{1...10}, data/controller3/export{1...10}"},
    			[]uint64{10, 10, 10},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/truncate-canonical-name-custom-controller-pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      generateName: helloworld-
      # less than 63 characters
      name: helloworld-helloworld
      ownerReferences:
        - apiVersion: foo/v1
          controller: true
          kind: Bar
          # more than 63 characters
          name: helloworld-helloworld-helloworld-helloworld-helloworld-hellowo-ld
          uid: 12345678-1234-1234-1234-123456789012
    spec:
      containers:
        - name: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 02 08:39:34 UTC 2024
    - 524 bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/artifacts/guestbook/frontend-controller.yaml

    Maciej Szulik <******@****.***> 1534848399 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 15:08:30 UTC 2018
    - 744 bytes
    - Viewed (0)
  4. hack/testdata/frontend-controller.yaml

    Janet Kuo <******@****.***> 1456263973 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 23 22:22:41 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  5. pkg/kube/controllers/example_test.go

    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // Controller represents a simple example controller show best practices for correctly writing a controller
    // in Istio.
    // In this example, we simply print all pods.
    type Controller struct {
    	pods   kclient.Client[*corev1.Pod]
    	queue  controllers.Queue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/controllermanager.go

    	"k8s.io/controller-manager/pkg/leadermigration"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/cmd/kube-controller-manager/app/config"
    	"k8s.io/kubernetes/cmd/kube-controller-manager/app/options"
    	"k8s.io/kubernetes/cmd/kube-controller-manager/names"
    	kubectrlmgrconfig "k8s.io/kubernetes/pkg/controller/apis/config"
    	garbagecollector "k8s.io/kubernetes/pkg/controller/garbagecollector"
    	serviceaccountcontroller "k8s.io/kubernetes/pkg/controller/serviceaccount"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/gatewayclass.go

    	gc := &ClassController{}
    	gc.queue = controllers.NewQueue("gateway class",
    		controllers.WithReconciler(gc.Reconcile),
    		controllers.WithMaxAttempts(25))
    
    	gc.classes = kclient.New[*gateway.GatewayClass](kc)
    	gc.classes.AddEventHandler(controllers.FilteredObjectHandler(gc.queue.AddObject, func(o controllers.Object) bool {
    		_, f := builtinClasses[gateway.ObjectName(o.GetName())]
    		return f
    	}))
    	return gc
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. pilot/pkg/status/manager.go

    // controllers before it is written to the server.
    func (m *Manager) CreateGenericController(fn UpdateFunc) *Controller {
    	result := &Controller{
    		fn:      fn,
    		workers: m.workers,
    	}
    	return result
    }
    
    func (m *Manager) CreateIstioStatusController(fn func(status *v1alpha1.IstioStatus, context any) *v1alpha1.IstioStatus) *Controller {
    	wrapper := func(status any, context any) GenerationProvider {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. cluster/addons/calico-policy-controller/kubecontrollersconfigurations-crd.yaml

                  Kubernetes controllers configuration.
                properties:
                  controllers:
                    description: Controllers enables and configures individual Kubernetes
                      controllers
                    properties:
                      namespace:
                        description: Namespace enables and configures the namespace controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 11K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		return nil
    	}
    
    	var controller gateway.GatewayController
    	if gc := d.gatewayClasses.Get(string(gw.Spec.GatewayClassName), ""); gc != nil {
    		controller = gc.Spec.ControllerName
    	} else {
    		if builtin, f := builtinClasses[gw.Spec.GatewayClassName]; f {
    			controller = builtin
    		}
    	}
    	ci, f := classInfos[controller]
    	if !f {
    		log.Debugf("skipping unknown controller %q", controller)
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top