Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for rbacv1 (0.13 sec)

  1. pkg/controlplane/apiserver/config.go

    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubeapiserver"
    	"k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes"
    	rbacrest "k8s.io/kubernetes/pkg/registry/rbac/rest"
    	"k8s.io/kubernetes/pkg/serviceaccount"
    )
    
    // Config defines configuration for the master
    type Config struct {
    	Generic *genericapiserver.Config
    	Extra
    }
    
    type Extra struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway.go

    		httpFilterChainOpts := configgen.createGatewayHTTPFilterChainOpts(builder.node, port, nil, serversForPort.RouteName,
    			proxyConfig, istionetworking.ListenerProtocolTCP, builder.push)
    		// In HTTP, we need to have RBAC, etc. upfront so that they can enforce policies immediately
    		httpFilterChainOpts.networkFilters = extension.PopAppendNetwork(httpFilterChainOpts.networkFilters, wasm, extensions.PluginPhase_AUTHN)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  3. pkg/workloadapi/security/authorization.pb.go

    	Name      string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
    	Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
    	// Determine the scope of this RBAC policy.
    	// If set to NAMESPACE, the 'namespace' field value will be used.
    	Scope Scope `protobuf:"varint,3,opt,name=scope,proto3,enum=istio.security.Scope" json:"scope,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/constants/constants.go

    	CSRAutoApprovalClusterRoleName = "system:certificates.k8s.io:certificatesigningrequests:nodeclient"
    	// NodeSelfCSRAutoApprovalClusterRoleName is a role defined in default 1.8 RBAC policies for automatic CSR approvals for automatically rotated node certificates
    	NodeSelfCSRAutoApprovalClusterRoleName = "system:certificates.k8s.io:certificatesigningrequests:selfnodeclient"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_builder.go

    			Class: httpOpts.class,
    		}, model.WasmPluginTypeHTTP)
    
    		// Metadata exchange filter needs to be added before any other HTTP filters are added. This is done to
    		// ensure that mx filter comes before HTTP RBAC filter. This is related to https://github.com/istio/istio/issues/41066
    		filters = appendMxFilter(httpOpts, filters)
    		// TODO: how to deal with ext-authz? It will be in the ordering twice
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_inbound.go

    	// Metadata exchange goes first, so RBAC failures, etc can access the state. See https://github.com/istio/istio/issues/41066
    	if !cc.hbone {
    		filters = append(filters, buildMetadataExchangeNetworkFilters()...)
    	}
    
    	// Authn
    	filters = extension.PopAppendNetwork(filters, wasm, extensions.PluginPhase_AUTHN)
    
    	// Authz. Since this is HTTP, we only add WASM network filters -- not TCP RBAC, stats, etc.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authorization/v1/types.go

    	// EvaluationError is an indication that some error occurred during the authorization check.
    	// It is entirely possible to get an error and be able to continue determine authorization status in spite of it.
    	// For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.
    	// +optional
    	EvaluationError string `json:"evaluationError,omitempty" protobuf:"bytes,3,opt,name=evaluationError"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-kubeapiserver.sh

        if [[ -n "${GCP_AUTHN_CACHE_TTL:-}" ]]; then
          params+=" --authentication-token-webhook-cache-ttl=${GCP_AUTHN_CACHE_TTL}"
        fi
      fi
    
      local authorization_mode="RBAC"
      local -r src_dir="${KUBE_HOME}/kube-manifests/kubernetes/gci-trusty"
    
      # Enable ABAC mode unless the user explicitly opts out with ENABLE_LEGACY_ABAC=false
      if [[ "${ENABLE_LEGACY_ABAC:-}" != "false" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. pkg/controller/deployment/deployment_controller_test.go

    	_ "k8s.io/kubernetes/pkg/apis/batch/install"
    	_ "k8s.io/kubernetes/pkg/apis/certificates/install"
    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    	_ "k8s.io/kubernetes/pkg/apis/policy/install"
    	_ "k8s.io/kubernetes/pkg/apis/rbac/install"
    	_ "k8s.io/kubernetes/pkg/apis/storage/install"
    	"k8s.io/kubernetes/pkg/controller"
    	"k8s.io/kubernetes/pkg/controller/deployment/util"
    	"k8s.io/kubernetes/pkg/controller/testutil"
    	"k8s.io/utils/ptr"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  10. pilot/pkg/model/service.go

    // foo.default.svc.cluster.local hostname, has a virtual IP of 10.0.1.1 and
    // listens on ports 80, 8080
    type Service struct {
    	// Attributes contains additional attributes associated with the service
    	// used mostly by RBAC for policy enforcement purposes.
    	Attributes ServiceAttributes
    
    	// Ports is the set of network ports where the service is listening for
    	// connections
    	Ports PortList `json:"ports,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top