Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for othernamespace (0.16 sec)

  1. pkg/controller/volume/ephemeral/controller_test.go

    	ephemeralvolumemetrics "k8s.io/kubernetes/pkg/controller/volume/ephemeral/metrics"
    )
    
    var (
    	testPodName         = "test-pod"
    	testNamespace       = "my-namespace"
    	testPodUID          = types.UID("uidpod1")
    	otherNamespace      = "not-my-namespace"
    	ephemeralVolumeName = "ephemeral-volume"
    
    	testPod               = makePod(testPodName, testNamespace, testPodUID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. pkg/registry/admissionregistration/validatingadmissionpolicybinding/authz_test.go

    							pr.Selector = &metav1.LabelSelector{
    								MatchLabels: map[string]string{
    									"changed": "value",
    								},
    							}
    						}
    
    						if len(pr.Namespace) > 0 {
    							pr.Namespace = "othernamespace"
    						}
    
    						if pr.ParameterNotFoundAction == nil || *pr.ParameterNotFoundAction == admissionregistration.AllowAction {
    							v := admissionregistration.DenyAction
    							pr.ParameterNotFoundAction = &v
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/context.go

    		svc, f := gc.ps.ServiceIndex.HostnameAndNamespace[host.Name(g)][namespace]
    		if !f {
    			otherNamespaces := []string{}
    			for ns := range gc.ps.ServiceIndex.HostnameAndNamespace[host.Name(g)] {
    				otherNamespaces = append(otherNamespaces, `"`+ns+`"`) // Wrap in quotes for output
    			}
    			if len(otherNamespaces) > 0 {
    				sort.Strings(otherNamespaces)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top