Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for daemonOpts (0.14 sec)

  1. 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)
  2. tests/integration/operator/switch_cr_test.go

    		})
    		if err != nil {
    			return err
    		}
    		if len(deployList.Items) > 0 {
    			return fmt.Errorf("workloads still remain in %s", IstioNamespace)
    		}
    		dsList, err := cs.Kube().AppsV1().DaemonSets(IstioNamespace).List(context.TODO(), metav1.ListOptions{
    			LabelSelector: label.IoIstioRev.Name,
    		})
    		if err != nil {
    			return err
    		}
    		if len(dsList.Items) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. plugin/pkg/admission/gc/gc_admission_test.go

    				{Name: "replicationcontrollers", Namespaced: true, Kind: "ReplicationController"},
    			},
    		},
    		{
    			GroupVersion: appsv1.SchemeGroupVersion.String(),
    			APIResources: []metav1.APIResource{
    				{Name: "daemonsets", Namespaced: true, Kind: "DaemonSet"},
    			},
    		},
    	}
    	restMapperRes, err := restmapper.GetAPIGroupResources(fakeDiscoveryClient)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/bugreport/bugreport.go

    		log.Infof("Done with operator logs for %v/%v", namespace, pod)
    	}()
    }
    
    // getCniLogs fetches Cni logs from istio-cni-node daemonsets inside namespace kube-system and writes the output
    // Runs if a goroutine, with errors reported through gErrors
    func getCniLogs(runner *kubectlcmd.Runner, config *config.BugReportConfig, resources *cluster2.Resources,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    			return err
    		}
    		return f(configWriter)
    	}
    }
    
    func PodOnNodeFromDaemonset(node string, name, namespace string, client kube.Client) (types.NamespacedName, error) {
    	ds, err := client.Kube().AppsV1().DaemonSets(namespace).Get(context.Background(), name, metav1.GetOptions{})
    	if err != nil {
    		return types.NamespacedName{}, err
    	}
    	selector := ds.Spec.Selector
    	if selector == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. pkg/config/schema/collections/collections.gen.go

    		ValidateProto: validation.EmptyValidate,
    	}.MustBuild()
    
    	DaemonSet = resource.Builder{
    		Identifier:    "DaemonSet",
    		Group:         "apps",
    		Kind:          "DaemonSet",
    		Plural:        "daemonsets",
    		Version:       "v1",
    		Proto:         "k8s.io.api.apps.v1.DaemonSetSpec",
    		ReflectType:   reflect.TypeOf(&k8sioapiappsv1.DaemonSetSpec{}).Elem(),
    		ProtoPackage:  "k8s.io/api/apps/v1",
    		ClusterScoped: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  7. cluster/gce/upgrade.sh

        echo "${boot_id}"
        return ${kubectl_rc}
      fi
    
      # Drain node
      echo "== Draining ${instance}. == " >&2
      local drain_rc
      "${KUBE_ROOT}/cluster/kubectl.sh" drain --delete-emptydir-data --force --ignore-daemonsets "${instance}" \
        && drain_rc=$? || drain_rc=$?
      if [[ "${drain_rc}" != 0 ]]; then
        echo "== FAILED to drain ${instance} =="
        return ${drain_rc}
      fi
    
      # Recreate instance
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/core.go

    		controllerContext.InformerFactory.Coordination().V1().Leases(),
    		controllerContext.InformerFactory.Core().V1().Pods(),
    		controllerContext.InformerFactory.Core().V1().Nodes(),
    		controllerContext.InformerFactory.Apps().V1().DaemonSets(),
    		// node lifecycle controller uses existing cluster role from node-controller
    		controllerContext.ClientBuilder.ClientOrDie("node-controller"),
    		controllerContext.ComponentConfig.KubeCloudShared.NodeMonitorPeriod.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    }
    
    func (RollingUpdateDaemonSet) SwaggerDoc() map[string]string {
    	return map_RollingUpdateDaemonSet
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apps/v1/generated.proto

      // 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
      optional k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top