Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for Authz (0.04 sec)

  1. pkg/test/framework/components/echo/config.go

    	// The set of environment variables to set for `DeployAsVM` instances.
    	VMEnvironment map[string]string
    
    	// If enabled, an additional ext-authz container will be included in the deployment. This is mainly used to test
    	// the CUSTOM authorization policy when the ext-authz server is deployed locally with the application container in
    	// the same pod.
    	IncludeExtAuthz bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. plugin/pkg/admission/certificates/ctbattest/admission_test.go

    					},
    				},
    				operation: admission.Update,
    			},
    			allowed: true,
    		},
    	}
    
    	for _, tc := range tests {
    		t.Run(tc.description, func(t *testing.T) {
    			p := Plugin{
    				authz: fakeAuthorizer{
    					t:           t,
    					verb:        "attest",
    					allowedName: tc.allowedName,
    					decision:    authorizer.DecisionAllow,
    					err:         tc.authzErr,
    				},
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1/generated.proto

      //
      // More details are available at https://k8s.io/docs/reference/access-authn-authz/certificate-signing-requests/#kubernetes-signers
      //
      // Custom signerNames can also be specified. The signer defines:
      //  1. Trust distribution: how trust (CA bundles) are distributed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/model/generator.go

    	rbacpb "github.com/envoyproxy/go-control-plane/envoy/config/rbac/v3"
    	matcherpb "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/security/authz/matcher"
    	"istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pkg/config/security"
    	"istio.io/istio/pkg/spiffe"
    )
    
    type generator interface {
    	permission(key, value string, forTCP bool) (*rbacpb.Permission, error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
      //   See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
      // 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
      //   request resource.
      // Documentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/certificates/v1/generated.proto

      //
      // More details are available at https://k8s.io/docs/reference/access-authn-authz/certificate-signing-requests/#kubernetes-signers
      //
      // Custom signerNames can also be specified. The signer defines:
      //  1. Trust distribution: how trust (CA bundles) are distributed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. tests/integration/security/fuzz/fuzz_test.go

    		}
    
    	default:
    		t.Fatalf("unknown fuzzer %s", fuzzer)
    	}
    }
    
    func TestFuzzAuthorization(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			ns := "fuzz-authz"
    			namespace.ClaimOrFail(t, t, ns)
    
    			t.ConfigIstio().YAML(ns, authzDenyPolicy).ApplyOrFail(t)
    			t.Logf("authorization policy applied")
    
    			deploy(t, dotdotpwn, ns, "fuzzers/dotdotpwn/dotdotpwn.yaml")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
      //   See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
      // 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
      //   request resource.
      // Documentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/controlplane/manifests.go

    					strings.Join(mode, ","),
    				)
    			}
    			return strings.Join(mode, ",")
    		}
    	}
    	return strings.Join(defaultMode, ",")
    }
    
    // compareAuthzModes compares two given authz modes and returns false if they do not match
    func compareAuthzModes(a, b []string) bool {
    	if len(a) != len(b) {
    		return false
    	}
    	for i, m := range a {
    		if m != b[i] {
    			return false
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/analyzers_test.go

    	"testing"
    
    	. "github.com/onsi/gomega"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers/annotations"
    	"istio.io/istio/pkg/config/analysis/analyzers/authz"
    	"istio.io/istio/pkg/config/analysis/analyzers/deployment"
    	"istio.io/istio/pkg/config/analysis/analyzers/deprecation"
    	"istio.io/istio/pkg/config/analysis/analyzers/destinationrule"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top