Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,740 for nAmespace (0.14 sec)

  1. tests/integration/ambient/gateway_conformance_test.go

    						namespace.Dump(ctx, ns)
    					}
    				}
    			})
    			csuite, err := suite.NewConformanceTestSuite(opts)
    			assert.NoError(t, err)
    			csuite.Setup(t, tests.ConformanceTests)
    
    			// remove the dataplane mode label from the gateway-conformance-infra namespace
    			// so that the ingress gateway doesn't get captured
    			ns, err := namespace.Claim(ctx, namespace.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. pilot/pkg/model/authentication.go

    	workloadLabels := selectionOpts.WorkloadLabels
    	namespace := selectionOpts.Namespace
    	configs := make([]*config.Config, 0)
    	var lookupInNamespaces []string
    	if namespace != rootNamespace {
    		// Only check the root namespace if the (workload) namespace is not already the root namespace
    		// to avoid double inclusion.
    		lookupInNamespaces = []string{namespace, rootNamespace}
    	} else {
    		lookupInNamespaces = []string{namespace}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/ztunnel/configdump/api.go

    	Name         string          `json:"name"`
    	Namespace    string          `json:"namespace"`
    	Hostname     string          `json:"hostname"`
    	Addresses    []string        `json:"vips"`
    	Ports        map[string]int  `json:"ports"`
    	LoadBalancer *LoadBalancer   `json:"loadBalancer"`
    	Waypoint     *GatewayAddress `json:"waypoint"`
    }
    
    type PolicyMatch struct {
    	Namespaces          []StringMatch `json:"namespaces,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. tests/integration/pilot/gateway_test.go

          namespaces:
            from: All
      - name: tls-cross
        hostname: cross-namespace.domain.example
        port: 443
        protocol: HTTPS
        allowedRoutes:
          namespaces:
            from: All
        tls:
          mode: Terminate
          certificateRefs:
          - kind: Secret
            name: test-gateway-cert-cross
            namespace: "%s"
      - name: tls-same
        hostname: same-namespace.domain.example
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    	return matched
    }
    
    // MatchesSingleNamespace will return (namespace, true) if and only if s.Field matches on the object's
    // namespace.
    func (s *SelectionPredicate) MatchesSingleNamespace() (string, bool) {
    	if len(s.Continue) > 0 || s.Field == nil {
    		return "", false
    	}
    	if namespace, ok := s.Field.RequiresExactMatch("metadata.namespace"); ok {
    		return namespace, true
    	}
    	return "", false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/authentication_test.go

    }
    
    func createTestRequestAuthenticationResource(
    	name string, namespace string, selector *selectorpb.WorkloadSelector, targetRef *selectorpb.PolicyTargetReference,
    ) *config.Config {
    	ra := &config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.RequestAuthentication,
    			Name:             name,
    			Namespace:        namespace,
    		},
    		Spec: &securityBeta.RequestAuthentication{},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/metrics/metrics.go

    		&compbasemetrics.CounterOpts{
    			Namespace:      namespace,
    			Name:           "cache_list_total",
    			Help:           "Number of LIST requests served from watch cache",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"resource_prefix", "index"},
    	)
    	listCacheNumFetched = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    			Namespace:      namespace,
    			Name:           "cache_list_fetched_objects_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 07:39:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. tests/integration/telemetry/tracing/tracing.go

    	return &ist
    }
    
    // GetAppNamespace gets echo app namespace instance.
    func GetAppNamespace() namespace.Instance {
    	return appNsInst
    }
    
    func GetIngressInstance() ingress.Instance {
    	return ingInst
    }
    
    func GetZipkinInstance() zipkin.Instance {
    	return zipkinInst
    }
    
    func TestSetup(ctx resource.Context) (err error) {
    	appNsInst, err = namespace.New(ctx, namespace.Config{
    		Prefix: "echo",
    		Inject: true,
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.yaml

        controllerExpandSecretRef:
          name: nameValue
          namespace: namespaceValue
        controllerPublishSecretRef:
          name: nameValue
          namespace: namespaceValue
        driver: driverValue
        fsType: fsTypeValue
        nodeExpandSecretRef:
          name: nameValue
          namespace: namespaceValue
        nodePublishSecretRef:
          name: nameValue
          namespace: namespaceValue
        nodeStageSecretRef:
          name: nameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top