Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 568 for pod9 (0.04 sec)

  1. pkg/controller/podgc/config/types.go

    type PodGCControllerConfiguration struct {
    	// terminatedPodGCThreshold is the number of terminated pods that can exist
    	// before the terminated pod garbage collector starts deleting terminated pods.
    	// If <= 0, the terminated pod garbage collector is disabled.
    	TerminatedPodGCThreshold int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 963 bytes
    - Viewed (0)
  2. plugin/pkg/admission/antiaffinity/admission.go

    	// Ignore all calls to subresources or resources other than pods.
    	if len(attributes.GetSubresource()) != 0 || attributes.GetResource().GroupResource() != api.Resource("pods") {
    		return nil
    	}
    	pod, ok := attributes.GetObject().(*api.Pod)
    	if !ok {
    		return apierrors.NewBadRequest("Resource was marked with kind Pod but was unable to be converted")
    	}
    	affinity := pod.Spec.Affinity
    	if affinity != nil && affinity.PodAntiAffinity != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

      // If not specified, the pod will be dispatched by default scheduler.
      // +optional
      optional string schedulername = 19;
    }
    
    // PodStatus represents information about the status of a pod. Status may trail the actual
    // state of a system.
    message PodStatus {
      // Current condition of the pod.
      // More info: http://kubernetes.io/docs/user-guide/pod-states#pod-phase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. hack/testdata/frontend-controller.yaml

          labels:
            app: guestbook
            tier: frontend
        spec:
          # Setting terminationGracePeriodSeconds to zero to delete pods immediately on delete request,
          # since in tests we usually check and expect the pods being deleted right after deletion.
          terminationGracePeriodSeconds: 0
          containers:
          - name: php-redis
            image: gcr.io/google_samples/gb-frontend:v4
            resources:
              requests:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 23 22:22:41 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/topologymanager/scope.go

    	AddHintProvider(h HintProvider)
    	// AddContainer adds pod to Manager for tracking
    	AddContainer(pod *v1.Pod, container *v1.Container, containerID string)
    	// RemoveContainer removes pod from Manager tracking
    	RemoveContainer(containerID string) error
    	// Store is the interface for storing pod topology hints
    	Store
    }
    
    type scope struct {
    	mutex sync.Mutex
    	name  string
    	// Mapping of a Pods mapping of Containers and their TopologyHints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/config/types.go

    	// might be skipped.
    	HorizontalPodAutoscalerCPUInitializationPeriod metav1.Duration
    	// HorizontalPodAutoscalerInitialReadinessDelay is period after pod start during which readiness
    	// changes are treated as readiness being set for the first time. The only effect of this is that
    	// HPA will disregard CPU samples from unready pods that had last readiness change during that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/interfaces.go

    	GetResource() schema.GroupVersionResource
    	// GetSubresource is the name of the subresource being requested.  This is a different resource, scoped to the parent resource, but it may have a different kind.
    	// For instance, /pods has the resource "pods" and the kind "Pod", while /pods/foo/status has the resource "pods", the sub resource "status", and the kind "Pod"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 28 14:03:18 UTC 2021
    - 8K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/pod.yaml.injected

        - name: ISTIO_META_INTERCEPTION_MODE
          value: REDIRECT
        - name: ISTIO_META_WORKLOAD_NAME
          value: hellopod
        - name: ISTIO_META_OWNER
          value: kubernetes://apis/v1/namespaces/default/pods/hellopod
        - name: ISTIO_META_MESH_ID
          value: cluster.local
        - name: TRUST_DOMAIN
          value: cluster.local
        image: gcr.io/istio-testing/proxyv2:latest
        name: istio-proxy
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/gateway/gateway.go

    	portMapping := map[uint32]uint32{} // svc port -> svc targetPort mapping
    	gwSelectorMatches := 0
    
    	// For pods selected by gw.Selector, find Services that select them and remember those ports
    	gwSelector := klabels.SelectorFromSet(gw.Selector)
    	c.ForEach(gvk.Pod, func(rPod *resource.Instance) bool {
    		podLabels := klabels.Set(rPod.Metadata.Labels)
    		if gwSelector.Matches(podLabels) {
    			gwSelectorMatches++
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/injection/image-auto.go

    			}
    		}
    		return true
    	})
    	c.ForEach(gvk.Pod, func(resource *resource.Instance) bool {
    		p := resource.Message.(*v1.PodSpec)
    		// If a pod has `image: auto` it is broken whether the webhooks match or not
    		if !hasAutoImage(p) {
    			return true
    		}
    		m := msg.NewImageAutoWithoutInjectionError(resource, "Pod", resource.Metadata.FullName.Name.String())
    		c.Report(gvk.Pod, m)
    		return true
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top