Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,615 for namespace_b (0.12 sec)

  1. plugin/pkg/admission/namespace/autoprovision/admission_test.go

    		t.Errorf("unexpected create namespace action")
    	}
    }
    
    func TestAdmissionWithLatentCache(t *testing.T) {
    	namespace := "test"
    	mockClient := newMockClientForTest([]string{})
    	mockClient.AddReactor("create", "namespaces", func(action core.Action) (bool, runtime.Object, error) {
    		return true, nil, errors.NewAlreadyExists(api.Resource("namespaces"), 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)
  2. pilot/pkg/config/kube/gateway/testdata/delegated.yaml

        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Selector
            selector:
              matchLabels:
                kubernetes.io/metadata.name: banana
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: apple
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      rules:
      - backendRefs:
        - name: httpbin-apple
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. 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)
  4. operator/cmd/mesh/operator-init.go

    		l.LogAndFatal(err)
    	}
    
    	// create watched namespaces
    	namespaces := strings.Split(oiArgs.common.watchedNamespaces, ",")
    	// if the namespace in the CR is provided, consider creating it too.
    	if istioNamespace != "" {
    		namespaces = append(namespaces, istioNamespace)
    	}
    	for _, ns := range namespaces {
    		if err := operatorutil.CreateNamespace(kubeClient.Kube(), ns, "", opts.DryRun); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	// only if either (a) this list contains that target namespace or
    	// (b) this list contains "*".  Note that "*" matches any
    	// specified namespace but does not match a request that _does
    	// not specify_ a namespace (see the `clusterScope` field for
    	// that).
    	// This list may be empty, but only if `clusterScope` is true.
    	// +optional
    	// +listType=set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/sidecar/selector.go

    		s := rs.Message.(*v1alpha3.Sidecar)
    
    		// record namespace-scoped sidecars
    		if s.WorkloadSelector == nil || len(s.WorkloadSelector.Labels) == 0 {
    			namespacesToSidecars[rs.Metadata.FullName.Namespace] = append(namespacesToSidecars[rs.Metadata.FullName.Namespace], rs)
    			return true
    		}
    
    		sNs := rs.Metadata.FullName.Namespace
    		sel := labels.SelectorFromSet(s.WorkloadSelector.Labels)
    
    		foundPod := false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/alias.yaml

    kind: Gateway
    metadata:
      name: third-party-gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: third-party-gatewayclass
      listeners:
      - name: default
        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	}
    
    	// try fetching the namespace-defined waypoint
    	namespace := ptr.OrEmpty[*v1.Namespace](krt.FetchOne[*v1.Namespace](ctx, Namespaces, krt.FilterKey(o.Namespace)))
    	// this probably should never be nil. How would o exist in a namespace we know nothing about? maybe edge case of starting the controller or ns delete?
    	if namespace != nil {
    		// toss isNone, we don't need to know /why/ we got nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/deny-groups.yaml

        - namespaces:
          - exact: only-l4-ns
          principals:
          - exact: only-l4-principals
    - rules:
      - matches:
        - {}
      - matches:
        - {}
    - rules:
      - matches:
        - namespaces:
          - exact: when-l4-l7-ns
      - matches:
        - {}
    - rules:
      - matches:
        - namespaces:
          - exact: when-l4-ns
      - matches:
        - notSourceIps:
          - address: FBQUFA==
            length: 32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 955 bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/deployment/builder.go

    	// Only the first per-cluster entry for a given config should have a non-nil ref.
    	refs []*echo.Instance
    	// namespaces caches namespaces by their prefix; used for converting Static namespace from configs into actual
    	// namespaces
    	namespaces map[string]namespace.Instance
    	// the set of injection templates for each cluster
    	templates map[string]sets.String
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top