35 lines
719 B
YAML
35 lines
719 B
YAML
server:
|
|
enabled: true
|
|
service:
|
|
type: LoadBalancer # Change to ClusterIP or NodePort as needed
|
|
port: 80
|
|
targetPort: 8080
|
|
ingress:
|
|
enabled: true
|
|
hosts:
|
|
- host: argocd.darkstars.local # Replace with your domain
|
|
paths:
|
|
- /
|
|
annotations:
|
|
kubernetes.io/ingress.class: nginx # Change based on your ingress controller
|
|
|
|
repoServer:
|
|
enabled: true
|
|
|
|
applicationController:
|
|
enabled: true
|
|
|
|
dex:
|
|
enabled: false # Set to true if you want to enable Dex for authentication
|
|
|
|
redis:
|
|
enabled: true
|
|
|
|
postgresql:
|
|
enabled: true
|
|
postgresqlUsername: argocd
|
|
postgresqlPassword: argocd123
|
|
postgresqlDatabase: argocd
|
|
|
|
# Additional configurations can be added as needed
|