Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for spiffe (0.18 sec)

  1. pkg/spiffe/spiffe.go

    // For example,
    // ExpandWithTrustDomains({"spiffe://td1/ns/def/sa/def"}, {"td1", "td2"}) returns
    //
    //	{"spiffe://td1/ns/def/sa/def", "spiffe://td2/ns/def/sa/def"}.
    //
    // ExpandWithTrustDomains({"spiffe://td1/ns/def/sa/a", "spiffe://td1/ns/def/sa/b"}, {"td2"}) returns
    //
    //	{"spiffe://td1/ns/def/sa/a", "spiffe://td2/ns/def/sa/a", "spiffe://td1/ns/def/sa/b", "spiffe://td2/ns/def/sa/b"}.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. pkg/spiffe/spiffe_test.go

    			trustDomains: []string{
    				"foo",
    				"cluster.local",
    			},
    			want: map[string]struct{}{
    				"spiffe://cluster.local/ns/def/sa/def": {},
    				"spiffe://foo/ns/def/sa/def":           {},
    			},
    		},
    		{
    			name:      "TwoIentities",
    			spiffeURI: []string{"spiffe://cluster.local/ns/def/sa/def", "spiffe://cluster.local/ns/a/sa/a"},
    			trustDomains: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. pilot/pkg/xds/sds_test.go

    		VerifiedIdentity: &spiffe.Identity{Namespace: "istio-system"},
    		Type:             model.Router,
    		ConfigNamespace:  "istio-system",
    	}
    	otherNamespace := &model.Proxy{
    		Metadata:         &model.NodeMetadata{ClusterID: constants.DefaultClusterName},
    		VerifiedIdentity: &spiffe.Identity{Namespace: "other-namespace"},
    		Type:             model.Router,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                        principalName:
                          exact: spiffe://principal
                    - authenticated:
                        principalName:
                          prefix: spiffe://principal-prefix-
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: spiffe://.*-suffix-principal
                    - authenticated:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/extended-single-policy-out.yaml

                - orIds:
                    ids:
                    - authenticated:
                        principalName:
                          exact: spiffe://rule[0]-from[0]-principal[1]
                    - authenticated:
                        principalName:
                          exact: spiffe://rule[0]-from[0]-principal[2]
                - orIds:
                    ids:
                    - andIds:
                        ids:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                        principalName:
                          exact: spiffe://principal
                    - authenticated:
                        principalName:
                          prefix: spiffe://principal-prefix-
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: spiffe://.*-suffix-principal
                    - authenticated:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. pilot/pkg/security/model/authentication_test.go

    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/spiffe"
    )
    
    func TestConstructSdsSecretConfig(t *testing.T) {
    	testCases := []struct {
    		name       string
    		secretName string
    		expected   *auth.SdsSecretConfig
    	}{
    		{
    			name:       "ConstructSdsSecretConfig",
    			secretName: "spiffe://cluster.local/ns/bar/sa/foo",
    			expected: &auth.SdsSecretConfig{
    				Name: "spiffe://cluster.local/ns/bar/sa/foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:21 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

              periodSeconds: 1
              timeoutSeconds: 3
            volumeMounts:
            - mountPath: /var/run/secrets/workload-spiffe-uds
              name: workload-socket
            - mountPath: /var/run/secrets/credential-uds
              name: credential-socket
            - mountPath: /var/run/secrets/workload-spiffe-credentials
              name: workload-certs
            - mountPath: /var/run/secrets/istio
              name: istiod-ca-cert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/list.yaml.injected

                timeoutSeconds: 3
              volumeMounts:
              - mountPath: /var/run/secrets/workload-spiffe-uds
                name: workload-socket
              - mountPath: /var/run/secrets/credential-uds
                name: credential-socket
              - mountPath: /var/run/secrets/workload-spiffe-credentials
                name: workload-certs
              - mountPath: /var/run/secrets/istio
                name: istiod-ca-cert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. pilot/pkg/xds/proxy_dependencies_test.go

    		success   bool
    	}{
    		{
    			name:      "single match",
    			identity:  []string{spiffe.Identity{TrustDomain: "cluster.local", Namespace: "namespace", ServiceAccount: "serviceaccount"}.String()},
    			sa:        "serviceaccount",
    			namespace: "namespace",
    			success:   true,
    		},
    		{
    			name: "second match",
    			identity: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top