Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for PodSpec (0.14 sec)

  1. pkg/volume/util/nested_volumes_test.go

    			err:      false,
    			expected: sets.New[string](),
    			volname:  "vol1",
    			pod: v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace: testNamespace,
    					UID:       testPodUID,
    				},
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{
    							VolumeMounts: []v1.VolumeMount{
    								{MountPath: "/dir", Name: "vol1"},
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. pkg/kubelet/userns/userns_manager_disabled_test.go

    		},
    		{
    			name: "hostUsers is nil",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					HostUsers: nil,
    				},
    			},
    			success: true,
    		},
    		{
    			name: "hostUsers is true",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					HostUsers: &trueVal,
    				},
    			},
    		},
    		{
    			name: "hostUsers is false",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					HostUsers: &falseVal,
    				},
    			},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. cni/pkg/util/podutil_test.go

    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestGetPodIPIfPodIPPresent(t *testing.T) {
    	pod := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "test",
    			Namespace: "test",
    		},
    		Spec: corev1.PodSpec{
    			NodeName: "derp",
    		},
    		Status: corev1.PodStatus{
    			PodIP: "11.1.1.12",
    		},
    	}
    
    	podIPs := GetPodIPsIfPresent(pod)
    	assert.Equal(t, len(podIPs), 1)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/labels_test.go

    			Name:                       "test_pod",
    			Namespace:                  "test_pod_namespace",
    			UID:                        "test_pod_uid",
    			DeletionGracePeriodSeconds: &deletionGracePeriod,
    		},
    		Spec: v1.PodSpec{
    			Containers:                    []v1.Container{*container},
    			TerminationGracePeriodSeconds: &terminationGracePeriod,
    		},
    	}
    
    	var tests = []struct {
    		description string
    		expected    *labeledContainerInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 22:43:36 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/util/in_mesh.go

    		return niv
    	}
    
    	return false
    }
    
    // getPodSidecarInjectionStatus returns two booleans: enabled and ok.
    // enabled is true when deployment d PodSpec has either the label/annotation 'sidecar.istio.io/inject: "true"'
    // ok is true when the PodSpec doesn't have the 'sidecar.istio.io/inject' label/annotation present.
    func getPodSidecarInjectionStatus(metadata map[string]string) (enabled bool, ok bool) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/cni-watcher_test.go

    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    	pod := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "pod-bingo",
    			Namespace: "funkyns",
    		},
    		Spec: corev1.PodSpec{
    			NodeName: NodeName,
    		},
    		Status: corev1.PodStatus{
    			PodIP: fakePodIP,
    		},
    	}
    	ns := &corev1.Namespace{ObjectMeta: metav1.ObjectMeta{Name: "funkyns"}}
    
    	client := kube.NewFakeClient(ns, pod)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. pkg/volume/plugins_test.go

    	_, err = vpm.FindPluginBySpec(volumeSpec)
    	if err != nil {
    		t.Errorf("Should return test plugin if volume spec is not nil")
    	}
    }
    
    func Test_ValidatePodTemplate(t *testing.T) {
    	pod := &v1.Pod{
    		Spec: v1.PodSpec{
    			Volumes: []v1.Volume{
    				{
    					Name:         "vol",
    					VolumeSource: v1.VolumeSource{},
    				},
    			},
    		},
    	}
    	var want error
    	if got := ValidateRecyclerPodTemplate(pod); got != want {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/maturity/maturity.go

    	if len(r.Metadata.Annotations) == 0 {
    		return
    	}
    
    	var shouldSkipDefault bool
    	if r.Metadata.Schema.GroupVersionKind() == gvk.Pod {
    		shouldSkipDefault = isCNIEnabled(r.Message.(*corev1.PodSpec))
    	}
    
    	// It is fine if the annotation is kubectl.kubernetes.io/last-applied-configuration.
    	for ann := range r.Metadata.Annotations {
    		if !istioAnnotation(ann) {
    			continue
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_sandbox_linux_test.go

    	}
    
    	getPodWithOverhead := func() *v1.Pod {
    		return &v1.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				UID:       "12345678",
    				Name:      "bar",
    				Namespace: "new",
    			},
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{
    						Resources: v1.ResourceRequirements{
    							Requests: v1.ResourceList{
    								v1.ResourceMemory: resource.MustParse("128Mi"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_windows_test.go

    		"disk7": kubecontainer.VolumeInfo{Mounter: &stubVolume{path: `\mnt\disk7`}},
    		"pipe1": kubecontainer.VolumeInfo{Mounter: &stubVolume{path: `\\.\pipe\pipe1`}},
    	}
    
    	pod := v1.Pod{
    		Spec: v1.PodSpec{
    			HostNetwork: true,
    		},
    	}
    
    	fhu := hostutil.NewFakeHostUtil(nil)
    	fsp := &subpath.FakeSubpath{}
    	podDir, err := os.MkdirTemp("", "test-rotate-logs")
    	require.NoError(t, err)
    	defer os.RemoveAll(podDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top