config

package
v1.16.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 30, 2025 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Index

Constants

View Source
const (
	DefaultPort = 50001

	// Default RootCertFilename is the filename that holds the root certificate.
	DefaultRootCertFilename = "ca.crt"

	// DefaultIssuerCertFilename is the filename that holds the issuer certificate.
	DefaultIssuerCertFilename = "issuer.crt"

	// DefaultIssuerKeyFilename is the filename that holds the issuer key.
	DefaultIssuerKeyFilename = "issuer.key"

	// DefaultJWTSigningKeyFilename is the filename that holds the JWT signing key.
	DefaultJWTSigningKeyFilename = "jwt.key"

	// DefaultJWKSFilename is the filename that holds the JWKS (JSON Web Key Set).
	DefaultJWKSFilename = "jwks.json"

	// DefaultJWTTTL is the default time-to-live for JWT tokens.
	DefaultJWTTTL = time.Hour * 24
)

Variables

This section is empty.

Functions

func IsKubernetesHosted

func IsKubernetesHosted(mode modes.DaprMode) bool

Types

type Config added in v1.12.0

type Config struct {
	Port             int
	ListenAddress    string
	TrustDomain      string
	CAStore          string
	WorkloadCertTTL  time.Duration
	AllowedClockSkew time.Duration
	RootCertPath     string
	IssuerCertPath   string
	IssuerKeyPath    string
	JWT              ConfigJWT
	Mode             modes.DaprMode
	Validators       map[sentryv1pb.SignCertificateRequest_TokenValidator]map[string]string
	DefaultValidator sentryv1pb.SignCertificateRequest_TokenValidator
	Features         []daprGlobalConfig.FeatureSpec
}

Config holds the configuration for the Certificate Authority.

func FromConfigName

func FromConfigName(configName, mode string) (conf Config, err error)

FromConfigName returns a Sentry configuration based on a configuration spec. A default configuration is loaded in case of an error.

type ConfigJWT added in v1.16.0

type ConfigJWT struct {
	Enabled          bool
	SigningKeyPath   string
	JWKSPath         string
	Issuer           *string
	SigningAlgorithm string
	KeyID            *string // Key ID (kid) used for JWT signing (defaults to base64 encoded SHA-256 of the signing key)
	TTL              time.Duration
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL