Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,540 for namespace_b (0.15 sec)

  1. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-in.yaml

      # rule[6] `from`: HTTP field, `to`: HTTP + TCP field.
      - from:
        - source:
              namespaces: ["ns-2"]
              requestPrincipals: ["id-1"]
        to:
        - operation:
              ports: ["8080"]
              methods: ["GET"]
      # rule[7] `from`: TCP field, `to`: TCP field.
      - from:
        - source:
            namespaces: ["ns-1"]
        to:
        - operation:
            ports: ["80"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 12 19:47:37 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParserTest.groovy

            then:
            metadata.id == componentId("myorg", "mymodule", "myrev")
            metadata.extraAttributes.size() == 2
            metadata.extraAttributes[new NamespaceId("namespace-b", "a")] == "info 1"
            metadata.extraAttributes[new NamespaceId("namespace-c", "a")] == "info 2"
        }
    
        def 'parses old gradle module metadata marker'() {
            when:
            def file = temporaryFolder.file("ivy.xml") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/custom-grpc-provider-no-namespace-out2.yaml

    Zhonghu Xu <******@****.***> 1691421493 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:13 UTC 2023
    - 589 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/audit_test.go

    						{
    							ObjectMeta: metav1.ObjectMeta{Name: "a", Namespace: "other"},
    							Other:      "foo",
    						},
    						{
    							ObjectMeta: metav1.ObjectMeta{Name: "b", Namespace: "other"},
    							Other:      "foo",
    						},
    					},
    					item: genericapitesting.Simple{
    						ObjectMeta: metav1.ObjectMeta{Name: "c", Namespace: "other", UID: "uid"},
    						Other:      "foo",
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:34 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/namespace_policy.go

    	}
    
    	existingRoles := namespaceRoles[namespace]
    	for _, existingRole := range existingRoles {
    		if role.Name == existingRole.Name {
    			klog.Fatalf("role %q was already registered in %q", role.Name, namespace)
    		}
    	}
    
    	role.Namespace = namespace
    	addDefaultMetadata(&role)
    	existingRoles = append(existingRoles, role)
    	namespaceRoles[namespace] = existingRoles
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  6. pkg/kubelet/userns/userns_manager.go

    	lock sync.Mutex
    }
    
    // UserNamespace holds the configuration for the user namespace.
    type userNamespace struct {
    	// UIDs mappings for the user namespace.
    	UIDMappings []idMapping `json:"uidMappings"`
    	// GIDs mappings for the user namespace.
    	GIDMappings []idMapping `json:"gidMappings"`
    }
    
    // Pod user namespace mapping
    type idMapping struct {
    	// Required.
    	HostId uint32 `json:"hostId"`
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    		return nil
    	}
    	namespaces := []string{}
    	for _, ns := range r.Namespaces {
    		if ls.Matches(toNamespaceSet(ns.Name, ns.Labels)) {
    			namespaces = append(namespaces, ns.Name)
    		}
    	}
    	// Ensure stable order
    	sort.Strings(namespaces)
    	return namespaces
    }
    
    func nilOrEqual(have *string, expected string) bool {
    	return have == nil || *have == expected
    }
    
    func humanReadableJoin(ss []string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    	if _, err := coreClient.Namespaces().Get(context.TODO(), namespace, metav1.GetOptions{}); apierrors.IsNotFound(err) {
    		if _, err = coreClient.Namespaces().Create(context.TODO(), &v1.Namespace{ObjectMeta: metav1.ObjectMeta{Name: namespace}}, metav1.CreateOptions{}); err != nil && !apierrors.IsAlreadyExists(err) {
    			klog.Warningf("create non-exist namespace %s failed:%v", namespace, err)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. cluster/addons/kube-network-policies/kube-network-policies-rbac.yaml

    kind: ClusterRole
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: system:network-policies
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
      - apiGroups: [""]
        resources:
          - pods
          - nodes
          - namespaces
        verbs:
          - get
          - watch
          - list
      # Watch for changes to Kubernetes NetworkPolicies.
      - apiGroups: ["networking.k8s.io"]
        resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 10:01:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. pkg/apis/abac/v0/conversion.go

    		out.Spec.User = ""
    	}
    
    	// In v0, leaving namespace empty matches all namespaces
    	if len(in.Namespace) == 0 {
    		out.Spec.Namespace = "*"
    	}
    	// In v0, leaving resource empty matches all resources
    	if len(in.Resource) == 0 {
    		out.Spec.Resource = "*"
    	}
    	// Any rule in v0 should match all API groups
    	out.Spec.APIGroup = "*"
    
    	// In v0, leaving namespace and resource blank allows non-resource paths
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 28 20:14:20 UTC 2019
    - 1.9K bytes
    - Viewed (0)
Back to top