Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Namespace$2 (0.21 sec)

  1. pkg/config/analysis/analyzers/testdata/injection-image-distroless.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio-injection: enabled
      name: enabled-namespace
    ---
    # Namespace 'enabled-namespace-2' has istio injection enabled, so will be enforced.
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio-injection: enabled
      name: enabled-namespace-2
    ---
    # Details-v1-pod-old is out of date and should get a warning.
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 02:55:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. pkg/zdsapi/zds.proto

    enum Version {
      NOT_USED = 0;
      V1 = 1;
    }
    
    message ZdsHello {
      Version version = 1;
    }
    
    message WorkloadInfo {
      reserved "trust_domain"; // Deprecated
      reserved 4;
      string name = 1;
      string namespace = 2;
      string service_account = 3;
    }
    
    // Add a workload to the ztunnel. this will be accompanied by ancillary data contianing
    // the workload's netns file descriptor.
    message AddWorkload {
      string uid = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. pkg/workloadapi/security/authorization.proto

    syntax = "proto3";
    
    package istio.security;
    option go_package="pkg/workloadapi/security";
    
    import "google/protobuf/empty.proto";
    
    message Authorization {
      string name = 1;
      string namespace = 2;
    
      // Determine the scope of this RBAC policy.
      // If set to NAMESPACE, the 'namespace' field value will be used.
      Scope scope = 3;
      // The action to take if the request is matched with the rules.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/NamespaceIdTest.groovy

            NamespaceId id1 = new NamespaceId(namespace1, name1)
            NamespaceId id2 = new NamespaceId(namespace2, name2)
    
            expect:
            ! id1.equals(id2)
            id1.hashCode() != id2.hashCode()
    
            where:
            namespace1        | name1        | namespace2        | name2
            "some-namespace1" | "some-name"  | "some-namespace2" | "some-name"
            "some-namespace"  | "some-name1" | "some-namespace"  | "some-name2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace/matcher_test.go

    			attr:           admission.NewAttributesRecord(&namespace2, nil, schema.GroupVersionKind{}, namespace2.Name, namespace2.Name, schema.GroupVersionResource{Resource: "namespaces"}, "", admission.Update, &metav1.UpdateOptions{}, false, nil),
    			expectedLabels: namespace2Labels,
    		},
    		{
    			name:           "request is for deleting namespace, the labels should be from the cache",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 26 00:41:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. operator/cmd/mesh/operator_test.go

    			tag:               "1.2.3",
    			imagePullSecrets:  []string{"imagePullSecret1,imagePullSecret2"},
    			operatorNamespace: "operator-test-namespace",
    			watchedNamespaces: "istio-test-namespace1,istio-test-namespace2",
    		},
    	}
    
    	cmd := "operator dump --hub " + odArgs.common.hub
    	cmd += " --tag " + odArgs.common.tag
    	cmd += " --imagePullSecrets " + strings.Join(odArgs.common.imagePullSecrets, ",")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/service-no-port-name.yaml

        - protocol: TCP
          port: 8080
          targetPort: 8080
        - protocol: TCP
          port: 8081
          targetPort: 8081
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service2
      namespace: my-namespace2
    spec:
      selector:
        app: my-service2
      ports:
        - name: foo
          protocol: TCP
          port: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 574 bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/testdata/http/multiple-policies-out.yaml

                            regex: .*/ns/namespaces1/.*
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/namespaces2/.*
          ns[foo]-policy[httpbin-8]-rule[0]:
            permissions:
            - andRules:
                rules:
                - any: true
            principals:
            - andIds:
                ids:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/extended-multiple-policies-out.yaml

                            regex: .*/ns/namespaces1/.*
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/namespaces2/.*
          ns[foo]-policy[httpbin-8]-rule[0]:
            permissions:
            - andRules:
                rules:
                - any: true
            principals:
            - andIds:
                ids:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. 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
    	Namespace3    namespace.Instance
    	A, B, C, D, E echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top