Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,087 for namespace1 (0.24 sec)

  1. tests/integration/security/util/framework.go

    	// Namespace1 is used as the default namespace for reachability tests and other tests which can reuse the same config for echo instances
    	Namespace1 namespace.Instance
    	// Namespace2 is used by most authorization test cases within authorization_test.go
    	Namespace2 namespace.Instance
    	// Namespace3 is used by TestAuthorization_Conditions and there is one C echo instance deployed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching_test.go

    }
    
    func BenchmarkMatcher(b *testing.B) {
    	allScopes := v1.AllScopes
    	equivalentMatch := v1.Equivalent
    
    	namespace1Labels := map[string]string{"ns": "ns1"}
    	namespace1 := corev1.Namespace{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:   "ns1",
    			Labels: namespace1Labels,
    		},
    	}
    	namespaceLister := fakeNamespaceLister{map[string]*corev1.Namespace{"ns": &namespace1}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook_test.go

    }
    
    func BenchmarkShouldCallHookWithComplexSelector(b *testing.B) {
    	allScopes := v1.AllScopes
    	equivalentMatch := v1.Equivalent
    
    	namespace1Labels := map[string]string{"ns": "ns1"}
    	namespace1 := corev1.Namespace{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:   "ns1",
    			Labels: namespace1Labels,
    		},
    	}
    	namespaceLister := fakeNamespaceLister{map[string]*corev1.Namespace{"ns": &namespace1}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 28 19:30:04 UTC 2023
    - 32K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

                  value: "istio-test-namespace1,istio-test-namespace2"
                - name: LEADER_ELECTION_NAMESPACE
                  value: "operator-test-namespace"
                - name: POD_NAME
                  valueFrom:
                    fieldRef:
                      fieldPath: metadata.name
                - name: OPERATOR_NAME
                  value: "operator-test-namespace"
                - name: WAIT_FOR_RESOURCES_TIMEOUT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml

        namespace: istio-system
      rules:
      - backendRefs:
        - name: httpbin
          port: 85
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: bind-cross-namespace
      namespace: group-namespace1
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
        sectionName: slctr-labels
      - name: gateway
        namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/config/config.go

    )
    
    type ResourceType int
    
    const (
    	Namespace ResourceType = iota
    	Deployment
    	Pod
    	Label
    	Annotation
    	Container
    )
    
    // SelectionSpec is a spec for pods that will be Include in the capture
    // archive. The format is:
    //
    //	Namespace1,Namespace2../Deployments/Pods/Label1,Label2.../Annotation1,Annotation2.../ContainerName1,ContainerName2...
    //
    // Namespace, pod and container names are pattern matching while labels
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. plugin/pkg/admission/podnodeselector/admission.go

    }
    
    func (p *Plugin) defaultGetNamespace(name string) (*corev1.Namespace, error) {
    	namespace, err := p.client.CoreV1().Namespaces().Get(context.TODO(), name, metav1.GetOptions{})
    	if err != nil {
    		return nil, fmt.Errorf("namespace %s does not exist", name)
    	}
    	return namespace, nil
    }
    
    func (p *Plugin) getNodeSelectorMap(namespace *corev1.Namespace) (labels.Set, error) {
    	selector := labels.Set{}
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion_test.go

    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "group-namespace1",
    		},
    		Ports:    ports,
    		Hostname: "httpbin.group-namespace1.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "group-namespace2",
    		},
    		Ports:    ports,
    		Hostname: "httpbin.group-namespace2.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/analyzers_test.go

    		},
    		analyzer: &injection.ImageAnalyzer{},
    		expected: []message{
    			{msg.PodsIstioProxyImageMismatchInNamespace, "Namespace enabled-namespace"},
    			{msg.PodsIstioProxyImageMismatchInNamespace, "Namespace enabled-namespace-native"},
    			{msg.PodsIstioProxyImageMismatchInNamespace, "Namespace revision-namespace"},
    		},
    	},
    	{
    		name:       "portNameNotFollowConvention",
    		inputFiles: []string{"testdata/service-no-port-name.yaml"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

        controllerName: istio.io/gateway-controller
        parentRef:
          name: gateway
          namespace: istio-system
          sectionName: foobar
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: bind-cross-namespace
      namespace: group-namespace1
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top