Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 105 for namespace_a (0.17 sec)

  1. pkg/controller/daemon/daemon_controller.go

    		// The ControllerRef was changed. Sync the old controller, if any.
    		if ds := dsc.resolveControllerRef(oldHistory.Namespace, oldControllerRef); ds != nil {
    			dsc.enqueueDaemonSet(ds)
    		}
    	}
    
    	// If it has a ControllerRef, that's all that matters.
    	if curControllerRef != nil {
    		ds := dsc.resolveControllerRef(curHistory.Namespace, curControllerRef)
    		if ds == nil {
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server_test.go

    	fw.testHTTPServer = httptest.NewServer(fw.serverUnderTest)
    	return fw
    }
    
    // A helper function to return the correct pod name.
    func getPodName(name, namespace string) string {
    	if namespace == "" {
    		namespace = metav1.NamespaceDefault
    	}
    	return name + "_" + namespace
    }
    
    func TestServeLogs(t *testing.T) {
    	fw := newServerTest()
    	defer fw.testHTTPServer.Close()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. pkg/controller/disruption/disruption_test.go

    	pdb, err := dc.coreClient.PolicyV1().PodDisruptionBudgets(pdb.Namespace).Create(ctx, pdb, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("Failed to create PDB: %v", err)
    	}
    	podNames := []string{"moe", "larry", "curly"}
    	for _, name := range podNames {
    		pod, _ := newPod(t, name)
    		_, err := dc.coreClient.CoreV1().Pods(pod.Namespace).Create(ctx, pod, metav1.CreateOptions{})
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.pb.go

    	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
    	// Namespace represents the namespace for the service.
    	Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
    	// Hostname represents the FQDN of the service.
    	// For Kubernetes, this would be <name>.<namespace>.svc.<cluster domain>.
    	// TODO: support this field
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name: "url parse error",
    			in:   "https://oidc.oidc-namespace.svc:invalid-port",
    			want: `issuer.discoveryURL: Invalid value: "https://oidc.oidc-namespace.svc:invalid-port": parse "https://oidc.oidc-namespace.svc:invalid-port": invalid port ":invalid-port" after host`,
    		},
    		{
    			name: "url is not https",
    			in:   "http://oidc.oidc-namespace.svc",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller.go

    				obj, err = ctrl.claimLister.PersistentVolumeClaims(volume.Spec.ClaimRef.Namespace).Get(volume.Spec.ClaimRef.Name)
    				if err != nil && !apierrors.IsNotFound(err) {
    					return err
    				}
    				found = !apierrors.IsNotFound(err)
    				if !found {
    					obj, err = ctrl.kubeClient.CoreV1().PersistentVolumeClaims(volume.Spec.ClaimRef.Namespace).Get(ctx, volume.Spec.ClaimRef.Name, metav1.GetOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  7. istioctl/pkg/proxyconfig/testdata/config_dump.json

                "metadata": {
                  "filter_metadata": {
                    "istio": {
                      "services": [
                        {
                          "name": "httpbin",
                          "namespace": "default",
                          "host": "httpbin.default.svc.cluster.local"
                        }
                      ]
                    }
                  }
                },
                "common_lb_config": {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils_test.go

    	if !identityMatches(set, pod) {
    		t.Error("Newly created Pod has a bad identity")
    	}
    	pod.Namespace = ""
    	if identityMatches(set, pod) {
    		t.Error("identity matches for a Pod with the wrong namespace")
    	}
    	updateIdentity(set, pod)
    	if !identityMatches(set, pod) {
    		t.Error("updateIdentity failed to update the Pods namespace")
    	}
    	delete(pod.Labels, apps.StatefulSetPodNameLabel)
    	updateIdentity(set, pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    				volumeSpec.PersistentVolume.Spec.AccessModes = []v1.PersistentVolumeAccessMode{v1.ReadWriteOnce}
    				uid := string(n.name) + "-" + podName // unique UID
    				namespace, name := utilstrings.SplitQualifiedName(podName)
    				pod := controllervolumetesting.NewPod(uid, name)
    				pod.Namespace = namespace
    				_, err := dsw.AddPod(types.UniquePodName(uid), pod, volumeSpec, n.name)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/cache_test.go

    		}
    		assumedPod, err := cache.GetPod(pod)
    		if err != nil {
    			t.Fatalf("GetPod failed: %v.", err)
    		}
    		if assumedPod.Namespace != pod.Namespace {
    			t.Errorf("assumedPod.Namespace != pod.Namespace (%s != %s)", assumedPod.Namespace, pod.Namespace)
    		}
    		if assumedPod.Name != pod.Name {
    			t.Errorf("assumedPod.Name != pod.Name (%s != %s)", assumedPod.Name, pod.Name)
    		}
    	}
    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