Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,024 for authorizationz (0.43 sec)

  1. tools/bug-report/pkg/common/common.go

    	ztunnelDebugURLs []string
    }
    
    var versionMap = map[string]*resourceNames{
    	latestKey: {
    		discoveryLabels: []kv{
    			{k: "app", v: "istiod"},
    		},
    		istioDebugURLs: []string{
    			"debug/adsz",
    			"debug/authorizationz",
    			"debug/cachez",
    			"debug/clusterz",
    			"debug/configz",
    			"debug/endpointShardz",
    			"debug/endpointz",
    			"debug/inject",
    			"debug/instancesz",
    			"debug/mcsz",
    			"debug/mesh",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 30 00:10:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/debug.go

    	}
    
    	writeJSON(w, schemas, req)
    }
    
    // AuthorizationDebug holds debug information for authorization policy.
    type AuthorizationDebug struct {
    	AuthorizationPolicies *model.AuthorizationPolicies `json:"authorization_policies"`
    }
    
    // authorizationz dumps the internal authorization policies.
    func (s *DiscoveryServer) authorizationz(w http.ResponseWriter, req *http.Request) {
    	info := AuthorizationDebug{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    package options
    
    import (
    	"fmt"
    	"time"
    
    	"github.com/spf13/pflag"
    
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/authorization/authorizerfactory"
    	"k8s.io/apiserver/pkg/authorization/path"
    	"k8s.io/apiserver/pkg/authorization/union"
    	"k8s.io/apiserver/pkg/server"
    	"k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/rest"
    	"k8s.io/client-go/tools/clientcmd"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/authorization.go

    	authorizationModeFlag                   = "authorization-mode"
    	authorizationWebhookConfigFileFlag      = "authorization-webhook-config-file"
    	authorizationWebhookVersionFlag         = "authorization-webhook-version"
    	authorizationWebhookAuthorizedTTLFlag   = "authorization-webhook-cache-authorized-ttl"
    	authorizationWebhookUnauthorizedTTLFlag = "authorization-webhook-cache-unauthorized-ttl"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. pilot/pkg/model/authorization.go

    	return types.NamespacedName{Name: ap.Name, Namespace: ap.Namespace}
    }
    
    // AuthorizationPolicies organizes AuthorizationPolicy by namespace.
    type AuthorizationPolicies struct {
    	// Maps from namespace to the Authorization policies.
    	NamespaceToPolicies map[string][]AuthorizationPolicy `json:"namespace_to_policies"`
    
    	// The name of the root namespace. Policy in the root namespace applies to workloads in all namespaces.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authorization.go

    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/endpoints/handlers/responsewriters"
    	"k8s.io/apiserver/pkg/endpoints/request"
    )
    
    const (
    	// Annotation key names set in advanced audit
    	decisionAnnotationKey = "authorization.k8s.io/decision"
    	reasonAnnotationKey   = "authorization.k8s.io/reason"
    
    	// Annotation values set in advanced audit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. pkg/workloadapi/security/authorization.proto

    // limitations under the License.
    
    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;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    		l = len(requested)
    	}
    	res := make([]model.WorkloadAuthorization, 0, l)
    	for _, cfg := range cfgs {
    		k := model.ConfigKey{
    			Kind:      kind.AuthorizationPolicy,
    			Name:      cfg.Authorization.Name,
    			Namespace: cfg.Authorization.Namespace,
    		}
    
    		if len(requested) > 0 && !requested.Contains(k) {
    			continue
    		}
    		res = append(res, cfg)
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. pkg/workloadapi/security/authorization.pb.go

    func (*Authorization) Descriptor() ([]byte, []int) {
    	return file_workloadapi_security_authorization_proto_rawDescGZIP(), []int{0}
    }
    
    func (x *Authorization) GetName() string {
    	if x != nil {
    		return x.Name
    	}
    	return ""
    }
    
    func (x *Authorization) GetNamespace() string {
    	if x != nil {
    		return x.Namespace
    	}
    	return ""
    }
    
    func (x *Authorization) GetScope() Scope {
    	if x != nil {
    		return x.Scope
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. pkg/registry/authorization/rest/storage_authorization.go

    */
    
    package rest
    
    import (
    	authorizationv1 "k8s.io/api/authorization/v1"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/registry/generic"
    	"k8s.io/apiserver/pkg/registry/rest"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    	serverstorage "k8s.io/apiserver/pkg/server/storage"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/authorization"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top