30 lines
913 B
YAML
30 lines
913 B
YAML
# Helm values for Authentication Service
|
|
|
|
authService:
|
|
image: "your-registry/auth-service"
|
|
tag: "1.0.0"
|
|
domain: "auth.aipice.lan"
|
|
baseDomain: "aipice.lan" # Base domain for wildcard certificates
|
|
|
|
# Allowed domains for cross-domain authentication
|
|
allowedDomains: "aipice.lan,yourdomain.com"
|
|
corsOrigins: "https://*.aipice.lan,https://*.yourdomain.com"
|
|
|
|
# JWT Configuration
|
|
jwtSecret: "your-super-secret-jwt-key-change-this-in-production"
|
|
|
|
# Active Directory Configuration
|
|
activeDirectory:
|
|
server: "ldap://your-ad-server.yourdomain.com"
|
|
baseDN: "DC=yourdomain,DC=com"
|
|
userSearchBase: "CN=Users,DC=yourdomain,DC=com"
|
|
bindUser: "CN=ServiceAccount,CN=Users,DC=yourdomain,DC=com"
|
|
bindPassword: "your-service-account-password"
|
|
|
|
# Existing global configuration
|
|
global:
|
|
Category: "infrastructure"
|
|
Name: "artifactory"
|
|
Type: "service"
|
|
Api:
|
|
Url: "api.yourdomain.com" |