Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 240 for pfds (0.04 sec)

  1. cmd/kube-controller-manager/app/apps.go

    		ctx,
    		controllerContext.InformerFactory.Apps().V1().DaemonSets(),
    		controllerContext.InformerFactory.Apps().V1().ControllerRevisions(),
    		controllerContext.InformerFactory.Core().V1().Pods(),
    		controllerContext.InformerFactory.Core().V1().Nodes(),
    		controllerContext.ClientBuilder.ClientOrDie("daemon-set-controller"),
    		flowcontrol.NewBackOff(1*time.Second, 15*time.Minute),
    	)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. pkg/apis/scheduling/types.go

    	metav1.ObjectMeta
    
    	// value represents the integer value of this priority class. This is the actual priority that pods
    	// receive when they have the name of this class in their pod spec.
    	Value int32
    
    	// globalDefault specifies whether this PriorityClass should be considered as
    	// the default priority for pods that do not have any priority class.
    	// Only one PriorityClass can be marked as `globalDefault`. However, if more than
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 23:13:00 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. pkg/kubelet/secret/secret_manager.go

    	}
    }
    
    // NewWatchingSecretManager creates a manager that keeps a cache of all secrets
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, we start individual watches for all
    //     referenced objects that aren't referenced from other registered pods
    //   - every GetObject() returns a value from local cache propagated via watches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. cluster/gce/upgrade-aliases.sh

        --format='value(secondaryIpRanges)')
      if [[ "${secondary_ranges}" =~ "pods-default" && "${secondary_ranges}" =~ "services-default" ]]; then
        echo "${secondary_ranges} already contains both pods-default and services-default secondary ranges"
        return
      fi
    
      echo "Adding secondary ranges: pods-default (${CLUSTER_IP_RANGE}), services-default (${SERVICE_CLUSTER_IP_RANGE})"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/node/v1beta1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // handler specifies the underlying runtime and configuration that the CRI
      // implementation will use to handle pods of this class. The possible values
      // are specific to the node & CRI configuration.  It is assumed that all
      // handlers are available on every node, and handlers of the same name are
      // equivalent on every node.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. src/runtime/netpoll_wasip1.go

    	if to != disarmed {
    		subs[to], subs[from] = subs[from], subs[to]
    	}
    }
    
    func netpollclose(fd uintptr) int32 {
    	lock(&mtx)
    	for i := 0; i < len(pds); i++ {
    		if pds[i].fd == fd {
    			netpolldisarm(pds[i], 'r'+'w')
    			pds[i] = pds[len(pds)-1]
    			pds = pds[:len(pds)-1]
    			break
    		}
    	}
    	unlock(&mtx)
    	return 0
    }
    
    func netpollBreak() {}
    
    func netpoll(delay int64) (gList, int32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/duplicate_mwc.yaml

          operator: NotIn
          values:
          - canary
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
        - v1
        operations:
        - CREATE
        resources:
        - pods
        scope: '*'
      sideEffects: None
      timeoutSeconds: 10
    ---
    # same webhook but with different name, will result in a duplicate
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/runtime/runtime.go

    	return nil
    }
    
    // ListKubeContainers lists running k8s CRI pods
    func (runtime *CRIRuntime) ListKubeContainers() ([]string, error) {
    	ctx, cancel := defaultContext()
    	defer cancel()
    
    	sandboxes, err := runtime.impl.ListPodSandbox(ctx, runtime.runtimeService, nil)
    	if err != nil {
    		return nil, errors.Wrap(err, "failed to list pod sandboxes")
    	}
    
    	pods := []string{}
    	for _, sandbox := range sandboxes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. cni/pkg/constants/constants.go

    	AmbientIPv6          = "ambient-ipv6"
    
    	// Repair
    	RepairEnabled            = "repair-enabled"
    	RepairDeletePods         = "repair-delete-pods"
    	RepairRepairPods         = "repair-repair-pods"
    	RepairLabelPods          = "repair-label-pods"
    	RepairLabelKey           = "repair-broken-pod-label-key"
    	RepairLabelValue         = "repair-broken-pod-label-value"
    	RepairNodeName           = "repair-node-name"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. plugin/pkg/admission/runtimeclass/admission.go

    		}
    	}
    
    	return nil
    }
    
    func shouldIgnore(attributes admission.Attributes) bool {
    	// Ignore all calls to subresources or resources other than pods.
    	if len(attributes.GetSubresource()) != 0 || attributes.GetResource().GroupResource() != api.Resource("pods") {
    		return true
    	}
    
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 05:53:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top