Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 486 for controller (0.19 sec)

  1. 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)
  2. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

      labels:
        app: istiod
        release: {{ .Release.Name }}
    rules:
      # sidecar injection controller
      - apiGroups: ["admissionregistration.k8s.io"]
        resources: ["mutatingwebhookconfigurations"]
        verbs: ["get", "list", "watch", "update", "patch"]
    
      # configuration validation webhook controller
      - apiGroups: ["admissionregistration.k8s.io"]
        resources: ["validatingwebhookconfigurations"]
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Nov 09 01:32:06 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - `kube-controller-manager` and `cloud-controller-manager` have changed the
      name of controllers that can be turned on/off that are passed to the `--controllers`
      flag (e.g., `pod-garbage-collector-controller`). The old names (eg `podgc`) are
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Apr 16 20:44:48 GMT 2024
    - 385.1K bytes
    - Viewed (0)
  4. 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)
  5. operator/cmd/mesh/operator.go

    )
    
    // OperatorCmd is a group of commands related to installation and management of the operator controller.
    func OperatorCmd(ctx cli.Context) *cobra.Command {
    	oc := &cobra.Command{
    		Use:   "operator",
    		Short: "Commands related to Istio operator controller.",
    		Long:  "The operator command installs, dumps, removes and shows the status of the operator controller.",
    	}
    
    	odArgs := &operatorDumpArgs{}
    	oiArgs := &operatorInitArgs{}
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Aug 29 14:15:33 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - Migrated `pkg/controller/nodeipam/ipam/cloud_cidr_allocator.go, pkg/controller/nodeipam/ipam/multi_cidr_range_allocator.go pkg/controller/nodeipam/ipam/range_allocator.go pkg/controller/nodelifecycle/node_lifecycle_controller.go` to structured logging ([#112670](https://github.com/kubernetes/kubernetes/pull/112670), [@yangjunmyfm192085](https://github.com/yangjunmyfm192085))...
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Apr 16 15:20:21 GMT 2024
    - 434.3K bytes
    - Viewed (1)
  7. 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)
  8. operator/cmd/mesh/operator-remove.go

    func operatorRemoveCmd(ctx cli.Context, rootArgs *RootArgs, orArgs *operatorRemoveArgs) *cobra.Command {
    	return &cobra.Command{
    		Use:   "remove",
    		Short: "Removes the Istio operator controller from the cluster.",
    		Long:  "The remove subcommand removes the Istio operator controller from the cluster.",
    		Args: func(cmd *cobra.Command, args []string) error {
    			if orArgs.revision == "" && !orArgs.purge {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      // If not specified, this will default to the time zone of the kube-controller-manager process.
      // The set of valid time zone names and the time zone offset is loaded from the system-wide time zone
      // database by the API server during CronJob validation and the controller manager during execution.
      // If no system-wide time zone database can be found a bundled version of the database is used instead.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5.7K bytes
    - Viewed (0)
  10. 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)
Back to top