Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 5,965 for nameslice (0.3 sec)

  1. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint.yaml

        gateway.networking.k8s.io/gateway-name: namespace
        istio.io/gateway-name: namespace
        topology.istio.io/network: network-1
      name: namespace
      namespace: default
      ownerReferences:
      - apiVersion: gateway.networking.k8s.io/v1beta1
        kind: Gateway
        name: namespace
        uid: ""
    spec:
      selector:
        matchLabels:
          gateway.networking.k8s.io/gateway-name: namespace
      template:
        metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/dns/server/name_table_test.go

    						Ips:       []string{"1.2.3.4"},
    						Registry:  "Kubernetes",
    						Shortname: "pod1.headless-svc",
    						Namespace: "testns",
    					},
    					"pod2.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"9.6.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod2.headless-svc",
    						Namespace: "testns",
    					},
    					"pod3.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"19.6.7.8"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway.yaml

    kind: Gateway
    metadata:
      name: testing-gateway-01-test-01
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - hosts:
        - testing-01.com
        port:
          name: http
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: default
    spec:
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/multiplecontrolplanes/main_test.go

    			namespace.Setup(&externalNS, namespace.Config{Prefix: "external", Inject: false})).
    		SetupParallel(
    			deployment.Setup(&apps, deployment.Config{
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echo1NS),
    					namespace.Future(&echo2NS),
    					namespace.Future(&echo3NS),
    				},
    				ExternalNamespace: namespace.Future(&externalNS),
    			})).
    		Run()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/deployment-multi-service.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
      name: bookinfo
      labels:
        istio-injection: "enabled"
    spec: {}
    ---
    # Deployment should generate a warning: two services using that deployment
    # using the same port but different protocol.
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: multiple-svc-multiple-prot
      namespace: bookinfo
      labels:
        app: details
        version: v1
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/util/hosts.go

    func GetResourceNameFromHost(defaultNamespace resource.Namespace, host string) resource.FullName {
    	// First, try to parse as FQDN (which can be cross-namespace)
    	name := GetFullNameFromFQDN(host)
    
    	// Otherwise, treat this as a short name and use the assumed namespace
    	if name.Namespace == "" {
    		name.Namespace = defaultNamespace
    		name.Name = resource.LocalName(host)
    	}
    	return name
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 04:57:33 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/bugreport/bugreport.go

    	namespace, pod, container string,
    ) (string, *processlog.Stats, int, error) {
    	defer logRuntime(time.Now(), "Done getting logs only for %v/%v/%v", namespace, pod, container)
    
    	log.Infof("Getting logs for %s/%s/%s...", namespace, pod, container)
    	clog, err := runner.Logs(namespace, pod, container, false, config.DryRun)
    	if err != nil {
    		return "", nil, 0, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. plugin/pkg/admission/namespace/autoprovision/admission_test.go

    func TestAdmissionNamespaceExists(t *testing.T) {
    	namespace := "test"
    	mockClient := newMockClientForTest([]string{namespace})
    	handler, informerFactory, err := newHandlerForTest(mockClient)
    	if err != nil {
    		t.Errorf("unexpected error initializing handler: %v", err)
    	}
    	informerFactory.Start(wait.NeverStop)
    
    	pod := newPod(namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker_test.go

    		Method: method,
    		URL: &url.URL{
    			Path:     path,
    			RawQuery: rawQuery,
    		},
    	}
    }
    
    func newWatchIdentifier(apiGroup, resource, namespace, name string) *watchIdentifier {
    	return &watchIdentifier{
    		apiGroup:  apiGroup,
    		resource:  resource,
    		namespace: namespace,
    		name:      name,
    	}
    }
    
    func TestRegisterWatch(t *testing.T) {
    	testCases := []struct {
    		name     string
    		request  *http.Request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 03 14:02:51 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/events.go

    			}
    		} else {
    			// event namespace must match
    			if event.Namespace != event.InvolvedObject.Namespace {
    				allErrs = append(allErrs, field.Invalid(field.NewPath("involvedObject", "namespace"), event.InvolvedObject.Namespace, "does not match event.namespace"))
    			}
    		}
    
    	} else {
    		if len(event.InvolvedObject.Namespace) == 0 && event.Namespace != metav1.NamespaceDefault && event.Namespace != metav1.NamespaceSystem {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 9.2K bytes
    - Viewed (0)
Back to top