Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 371 for controller (0.2 sec)

  1. architecture/networking/pilot.md

    ### Controllers overview
    
    Below provides a high level overview of controllers in Istiod. For more information about each controller, consulting the controllers Go docs is recommended.
    
    ```mermaid
    graph BT
        crd("CRD Watcher")
        subgraph Service Discovery
            ksd("Kubernetes Controller")
            sesd("Service Entry Controller")
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 19.1K bytes
    - Viewed (0)
  2. cni/pkg/repair/repaircontroller.go

    		FieldSelector: strings.Join(fieldSelectors, ","),
    	})
    	c.queue = controllers.NewQueue("repair pods",
    		controllers.WithReconciler(c.Reconcile),
    		controllers.WithMaxAttempts(5))
    	c.pods.AddEventHandler(controllers.ObjectHandler(c.queue.AddObject))
    
    	return c, nil
    }
    
    func (c *Controller) Run(stop <-chan struct{}) {
    	kube.WaitForCacheSync("repair controller", stop, c.pods.HasSynced)
    	c.queue.Run(stop)
    	c.pods.ShutdownHandlers()
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  3. operator/README.md

    ### Relationship between the CLI and controller
    
    The CLI and controller share the same API and codebase for generating manifests from the API. You can think of the
    controller as the CLI command `istioctl install` running in a loop in a pod in the cluster and using the config
    from the in-cluster IstioOperator custom resource (CR).
    There are two major differences:
    
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/batch/v1/generated.proto

      //
      // More completion modes can be added in the future.
      // 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
      optional string completionMode = 9;
    
      // suspend specifies whether the Job controller should create Pods or not. If
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    // IngressClassSpec provides information about the class of an Ingress.
    message IngressClassSpec {
      // controller refers to the name of the controller that should handle this
      // class. This allows for different "flavors" that are controlled by the
      // same controller. For example, you may have different parameters for the
      // same implementing controller. This should be specified as a
      // domain-prefixed path no more than 250 characters in length, e.g.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 14.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1/generated.proto

    // IngressClassSpec provides information about the class of an Ingress.
    message IngressClassSpec {
      // controller refers to the name of the controller that should handle this
      // class. This allows for different "flavors" that are controlled by the
      // same controller. For example, you may have different parameters for the
      // same implementing controller. This should be specified as a
      // domain-prefixed path no more than 250 characters in length, e.g.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  7. operator/cmd/mesh/manifest_shared_test.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/kubernetes/scheme"
    	"sigs.k8s.io/controller-runtime/pkg/client"
    	"sigs.k8s.io/controller-runtime/pkg/client/fake"
    	"sigs.k8s.io/controller-runtime/pkg/client/interceptor"
    	"sigs.k8s.io/controller-runtime/pkg/envtest"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/cache"
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 20 22:39:28 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/certificates/v1/generated.proto

      //   Requests for this signer are never auto-approved by kube-controller-manager, can be issued by the "csrsigning" controller in kube-controller-manager.
      //  2. "kubernetes.io/kube-apiserver-client-kubelet": issues client certificates that kubelets use to authenticate to kube-apiserver.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

      labels:
        {{- toJsonMap
          .InfrastructureLabels
          (strdict
            "gateway.networking.k8s.io/gateway-name" .Name
            "istio.io/gateway-name" .Name
            "gateway.istio.io/managed" "istio.io-mesh-controller"
          ) | nindent 4 }}
      ownerReferences:
      - apiVersion: gateway.networking.k8s.io/v1beta1
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // replicas is the number of Pods created by the StatefulSet controller.
      optional int32 replicas = 2;
    
      // readyReplicas is the number of pods created by this StatefulSet controller with a Ready Condition.
      optional int32 readyReplicas = 3;
    
      // currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
      // indicated by currentRevision.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24K bytes
    - Viewed (0)
Back to top