Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for rbacv1 (0.11 sec)

  1. istioctl/pkg/describe/describe.go

    		return []string{}, err
    	}
    
    	// Identify RBAC policies. Currently there are no "breadcrumbs" so we only return the policy names.
    	for _, httpFilter := range hcm.HttpFilters {
    		if httpFilter.Name == wellknown.HTTPRoleBasedAccessControl {
    			rbac := &rbachttp.RBAC{}
    			if err := httpFilter.GetTypedConfig().UnmarshalTo(rbac); err == nil {
    				policies := []string{}
    				for polName := range rbac.Rules.Policies {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    				return
    			}
    			// Ensure we don't get stuck on old connections with old RBAC rules. This causes 45s test times
    			// due to draining.
    			opt.NewConnectionPerRequest = true
    
    			overrideCheck := func(_ echo.Instance, dst echo.Instance, opt *echo.CallOptions) {
    				if !dst.Config().HasProxyCapabilities() {
    					// No destination means no RBAC to apply. Make sure we do not accidentally reject
    					opt.Check = check.OK()
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

        if [[ -n "${AUTHORIZATION_CONFIG:-}" ]]; then
          authorizer_args+=("--authorization-config=${AUTHORIZATION_CONFIG}")
        else
          if [[ -n "${AUTHORIZATION_MODE:-Node,RBAC}" ]]; then
            authorizer_args+=("--authorization-mode=${AUTHORIZATION_MODE:-Node,RBAC}")
          fi
          authorizer_args+=(
            "--authorization-webhook-config-file=${AUTHORIZATION_WEBHOOK_CONFIG_FILE}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. tests/integration/security/authz_test.go

    						t.NewSubTest(testName).Run(func(t framework.TestContext) {
    							wantCode := http.StatusOK
    							body := "handled-by-egress-gateway"
    							if !c.allow {
    								wantCode = http.StatusForbidden
    								body = "RBAC: access denied"
    							}
    
    							opts := echo.CallOptions{
    								// Use a fake IP address to bypass DNS lookup (which will fail). The host
    								// header will be used for routing decisions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Note the pod will be crashlooping, so this may take a few minutes to become fully functional based on when the retry occurs.
      // This requires no RBAC privilege, but will require the CNI agent to run as a privileged pod.
      bool repairPods = 11;
    
      // No longer used.
      string createEvents = 6 [deprecated = true];
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top