Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 249 for daemonset1 (0.18 sec)

  1. hack/testdata/rollingupdate-daemonset.yaml

    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: bind
      labels:
        service: bind
    spec:
      selector:
        matchLabels:
          service: bind
      updateStrategy:
        type: RollingUpdate
        rollingUpdate:
          maxUnavailable: 10%
      template:
        metadata:
          labels:
            service: bind
        spec:
          affinity:
            podAntiAffinity:
              requiredDuringSchedulingIgnoredDuringExecution:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 735 bytes
    - Viewed (0)
  2. tools/bug-report/pkg/cluster/cluster.go

    		}
    	}
    
    	return false
    }
    
    func shouldSkipDaemonSet(daemonSet string, config *config2.BugReportConfig) bool {
    	for _, eld := range config.Exclude {
    		if len(eld.Daemonsets) > 0 {
    			if isIncludeOrExcludeEntriesMatched(eld.Daemonsets, daemonSet) {
    				return true
    			}
    		}
    	}
    
    	for _, ild := range config.Include {
    		if len(ild.Daemonsets) > 0 {
    			if !isIncludeOrExcludeEntriesMatched(ild.Daemonsets, daemonSet) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (1)
  3. releasenotes/notes/ingressgateway-support-daemonset.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 37610
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 08 13:48:57 UTC 2022
    - 156 bytes
    - Viewed (0)
  4. pkg/registry/apps/daemonset/storage/storage.go

    		NewListFunc:               func() runtime.Object { return &apps.DaemonSetList{} },
    		DefaultQualifiedResource:  apps.Resource("daemonsets"),
    		SingularQualifiedResource: apps.Resource("daemonset"),
    
    		CreateStrategy:      daemonset.Strategy,
    		UpdateStrategy:      daemonset.Strategy,
    		DeleteStrategy:      daemonset.Strategy,
    		ResetFieldsStrategy: daemonset.Strategy,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. operator/pkg/helmreconciler/wait.go

    					// 1) daemonset is just created
    					// 2) daemonset desired no pod
    					// 3) somebody changed it manually
    					// All the case is not a ready signal
    					scope.Infof("DaemonSet is not ready: %s/%s. Initializing, no pods is running",
    						ds.Namespace, ds.Name)
    					notReady = append(notReady, "DaemonSet/"+ds.Namespace+"/"+ds.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/templates/daemonset.yaml

    # each master and worker node in a Kubernetes cluster.
    {{- $defaultBinDir :=
        (.Capabilities.KubeVersion.GitVersion | contains "-gke") | ternary
          "/home/kubernetes/bin"
          "/opt/cni/bin"
    }}
    kind: DaemonSet
    apiVersion: apps/v1
    metadata:
      name: {{ template "name" . }}-node
      namespace: {{ .Release.Namespace }}
      labels:
        k8s-app: {{ template "name" . }}-node
        release: {{ .Release.Name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. hack/testdata/rollingupdate-daemonset-rv2.yaml

    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: bind
      labels:
        service: bind
    spec:
      selector:
        matchLabels:
          service: bind
      updateStrategy:
        type: RollingUpdate
        rollingUpdate:
          maxUnavailable: 10%
      template:
        metadata:
          labels:
            service: bind
        spec:
          affinity:
            podAntiAffinity:
              requiredDuringSchedulingIgnoredDuringExecution:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 802 bytes
    - Viewed (0)
  8. api/discovery/apis__apps__v1.json

            "update",
            "watch"
          ]
        },
        {
          "categories": [
            "all"
          ],
          "kind": "DaemonSet",
          "name": "daemonsets",
          "namespaced": true,
          "shortNames": [
            "ds"
          ],
          "singularName": "daemonset",
          "storageVersionHash": "dd7pWHUlMKQ=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. pkg/registry/apps/daemonset/strategy_test.go

    		t.Errorf("Unexpected error list with no-op update of bad object: %v", errorList)
    	}
    }
    
    func newDaemonSetWithSelectorLabels(selectorLabels map[string]string, templateGeneration int64) *apps.DaemonSet {
    	return &apps.DaemonSet{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            daemonsetName,
    			Namespace:       namespace,
    			ResourceVersion: "1",
    		},
    		Spec: apps.DaemonSetSpec{
    			Selector: &metav1.LabelSelector{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  10. tests/integration/pilot/cni_race_test.go

    			// Now bring back CNI Daemonset, and pod in the echo namespace should be repaired.
    			deployCNIDaemonset(t, c, cniDaemonSet)
    			waitForRepairOrFail(t, c, ns)
    		})
    }
    
    func getCNIDaemonSet(ctx framework.TestContext, c cluster.Cluster) *appsv1.DaemonSet {
    	cniDaemonSet, err := c.(istioKube.CLIClient).
    		Kube().AppsV1().DaemonSets(i.Settings().SystemNamespace).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top