Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for daemonOpts (0.14 sec)

  1. pkg/controller/daemon/daemon_controller.go

    }
    
    // getDaemonSetsForHistory returns a list of DaemonSets that potentially
    // match a ControllerRevision.
    func (dsc *DaemonSetsController) getDaemonSetsForHistory(logger klog.Logger, history *apps.ControllerRevision) []*apps.DaemonSet {
    	daemonSets, err := dsc.dsLister.GetHistoryDaemonSets(history)
    	if err != nil || len(daemonSets) == 0 {
    		return nil
    	}
    	if len(daemonSets) > 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. api/discovery/aggregated_v2.json

                    "update",
                    "watch"
                  ]
                },
                {
                  "categories": [
                    "all"
                  ],
                  "resource": "daemonsets",
                  "responseKind": {
                    "group": "",
                    "kind": "DaemonSet",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "shortNames": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. api/discovery/aggregated_v2beta1.json

                    "update",
                    "watch"
                  ]
                },
                {
                  "categories": [
                    "all"
                  ],
                  "resource": "daemonsets",
                  "responseKind": {
                    "group": "",
                    "kind": "DaemonSet",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "shortNames": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		},
    		{
    			name:     "alias-in-comma-separated-arg",
    			arg:      "all,secrets",
    			expected: "pods,replicationcontrollers,services,statefulsets.apps,horizontalpodautoscalers.autoscaling,jobs.batch,cronjobs.batch,daemonsets.extensions,deployments.extensions,replicasets.extensions,secrets",
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.3.md

    * restore ability to run against secured etcd ([#21535](https://github.com/kubernetes/kubernetes/pull/21535), [@AdoHe](https://github.com/AdoHe))
    
    ### Other notable changes
    
    * validate that daemonsets don't have empty selectors on creation ([#23530](https://github.com/kubernetes/kubernetes/pull/23530), [@mikedanese](https://github.com/mikedanese))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1/types.go

    	// Allowing surge implies the possibility that the resources consumed by the
    	// daemonset on any given node can double if the readiness check fails, and
    	// so resource intensive daemonsets should take into account that they may
    	// cause evictions during disruption.
    	// +optional
    	MaxSurge *intstr.IntOrString `json:"maxSurge,omitempty" protobuf:"bytes,2,opt,name=maxSurge"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// Allowing surge implies the possibility that the resources consumed by the
    	// daemonset on any given node can double if the readiness check fails, and
    	// so resource intensive daemonsets should take into account that they may
    	// cause evictions during disruption.
    	// +optional
    	MaxSurge *intstr.IntOrString `json:"maxSurge,omitempty" protobuf:"bytes,2,opt,name=maxSurge"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// Allowing surge implies the possibility that the resources consumed by the
    	// daemonset on any given node can double if the readiness check fails, and
    	// so resource intensive daemonsets should take into account that they may
    	// cause evictions during disruption.
    	// This is an alpha field and requires enabling DaemonSetUpdateSurge feature gate.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
Back to top