Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 453 for pod4 (0.24 sec)

  1. hack/testdata/pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: test-pod
      labels:
        name: test-pod-label
    spec:
      containers:
      - name: kubernetes-pause
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 172 bytes
    - Viewed (0)
  2. pkg/util/pod/pod.go

    limitations under the License.
    */
    
    package pod
    
    import (
    	"bytes"
    	"context"
    	"encoding/json"
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/strategicpatch"
    	clientset "k8s.io/client-go/kubernetes"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 15:22:29 UTC 2022
    - 3K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/deployment/pod.go

    		Name:        "applicationUID.Analyzer",
    		Description: "Checks invalid application UID",
    		Inputs: []config.GroupVersionKind{
    			gvk.Pod,
    			gvk.Deployment,
    		},
    	}
    }
    
    func (appUID *ApplicationUIDAnalyzer) Analyze(context analysis.Context) {
    	context.ForEach(gvk.Pod, func(resource *resource.Instance) bool {
    		appUID.analyzeAppUIDForPod(resource, context)
    		return true
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/pod.go

    }
    
    func extractPod(pod *apicorev1.Pod, fieldManager string, subresource string) (*PodApplyConfiguration, error) {
    	b := &PodApplyConfiguration{}
    	err := managedfields.ExtractInto(pod, internal.Parser().Type("io.k8s.api.core.v1.Pod"), fieldManager, b, subresource)
    	if err != nil {
    		return nil, err
    	}
    	b.WithName(pod.Name)
    	b.WithNamespace(pod.Namespace)
    
    	b.WithKind("Pod")
    	b.WithAPIVersion("v1")
    	return b, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  5. pkg/kube/krt/join_test.go

    	assert.EventuallyEqual(t, fetch, []SimpleEndpoint{
    		{pod.Name, se.Name, pod.Namespace, pod.Status.PodIP},
    		{pod2.Name, se.Name, pod2.Namespace, pod2.Status.PodIP},
    		{pod.Name, svc.Name, pod.Namespace, pod.Status.PodIP},
    		{pod2.Name, svc.Name, pod2.Namespace, pod2.Status.PodIP},
    	})
    }
    
    func TestCollectionJoinSync(t *testing.T) {
    	c := kube.NewFakeClient(&corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "name",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. pkg/controller/disruption/disruption_test.go

    	// This verifies that when a PDB has 0 pods, disruptions are not allowed.
    	ps.VerifyDisruptionAllowed(t, pdbName, 0)
    
    	pod, _ := newPod(t, "unmanaged")
    	add(t, dc.podStore, pod)
    	dc.sync(ctx, pdbName)
    	var pods []*v1.Pod
    	pods = append(pods, pod)
    	_, unmanagedPods, _ := dc.getExpectedScale(ctx, pdb, pods)
    	if len(unmanagedPods) != 1 {
    		t.Fatalf("expected one pod to be unmanaged pod but found %d", len(unmanagedPods))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_volumes_test.go

    	defer close(stopCh)
    
    	kubelet.podManager.SetPods(pods)
    	for _, pod := range pods {
    		err := kubelet.volumeManager.WaitForAttachAndMount(context.Background(), pod)
    		assert.NoError(t, err)
    	}
    
    	for _, pod := range pods {
    		podVolumesExist := kubelet.podVolumesExist(pod.UID)
    		assert.True(t, podVolumesExist, "pod %q", pod.UID)
    	}
    }
    
    func TestPodVolumeDeadlineAttachAndMount(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 17 16:53:28 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. src/internal/coverage/pods/pods.go

    		}
    		for _, e := range p.elements {
    			pod.CounterDataFiles = append(pod.CounterDataFiles, e.file)
    			pod.Origins = append(pod.Origins, e.origin)
    			pod.ProcessIDs = append(pod.ProcessIDs, e.pid)
    		}
    		pods = append(pods, pod)
    	}
    	slices.SortFunc(pods, func(a, b Pod) int {
    		return strings.Compare(a.MetaFile, b.MetaFile)
    	})
    	return pods
    }
    
    func warning(s string, a ...interface{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/test/resources/pods.go

    )
    
    // FakeStaticPod represents a fake static pod
    type FakeStaticPod struct {
    	NodeName    string
    	Component   string
    	Annotations map[string]string
    }
    
    // Pod returns a pod structure representing the fake static pod with a
    // given suffix
    func (p *FakeStaticPod) Pod(suffix string) *v1.Pod {
    	pod := staticpodutil.ComponentPod(
    		v1.Container{
    			Name:  p.Component,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/cache_test.go

    	}
    
    	// Create a few pods for tests.
    	var pods []*v1.Pod
    	for i := 0; i < 20; i++ {
    		pod := st.MakePod().Name(fmt.Sprintf("test-pod%v", i)).Namespace("test-ns").UID(fmt.Sprintf("test-puid%v", i)).
    			Node(fmt.Sprintf("test-node%v", i%10)).Obj()
    		pods = append(pods, pod)
    	}
    
    	// Create a few pods as updated versions of the above pods.
    	var updatedPods []*v1.Pod
    	for _, p := range pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
Back to top