...

Source file src/edge-infra.dev/pkg/edge/linkerd/policy/policy.go

Documentation: edge-infra.dev/pkg/edge/linkerd/policy

     1  package policy
     2  
     3  const (
     4  	// These policy constants can be used to configure Linkerd's default behavior.
     5  	// https://linkerd.io/2.11/reference/authorization-policy/
     6  	AllUnAuthenticated     = "all-unauthenticated"
     7  	AllAuthenticated       = "all-authenticated"
     8  	ClusterAuthenticated   = "cluster-authenticated"
     9  	ClusterUnauthenticated = "cluster-unauthenticated"
    10  	Deny                   = "deny"
    11  
    12  	// Default is the default policy for Edge-managed Linkerd installations
    13  	Default = Deny
    14  )
    15  

View as plain text