-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathvalues.yaml
More file actions
150 lines (133 loc) · 4.9 KB
/
Copy pathvalues.yaml
File metadata and controls
150 lines (133 loc) · 4.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# Default values for dependency-track.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
frontend:
replicaCount: 1
image:
repository: dependencytrack/frontend
tag: 4.6.1
pullPolicy: IfNotPresent
podAnnotations: {}
service:
type: ClusterIP
port: 80
env:
# OIDC_ISSUER:
# OIDC_CLIENT_ID:
# OIDC_SCOPE:
# OIDC_FLOW:
# secretsEnv:
# This allows to specify a list of secrets/keys to inject as environment variables
# - secretName: db-dependency-track
# env:
# ALPINE_DATABASE_USERNAME: username
# ALPINE_DATABASE_PASSWORD: password
# - secretName: ldap-auth
# env:
# ALPINE_LDAP_SERVER_URL: LDAP_URL
# ALPINE_LDAP_BIND_USERNAME: USERNAME
# ALPINE_LDAP_BIND_PASSWORD: PASSWORD
# - secretName: proxy-auth
# env:
# ALPINE_HTTP_PROXY_USERNAME: username
# ALPINE_HTTP_PROXY_PASSWORD: password
ingress:
enabled: false
# enabled: true
# annotations:
# traefik.ingress.kubernetes.io/redirect-entry-point: https
# traefik.ingress.kubernetes.io/redirect-permanent: "true"
# path: /
# hosts:
# - dependency-track.your.domain.com
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 1
# memory: 512Mi
# requests:
# cpu: 1
# memory: 512Mi
backend:
replicaCount: 1
image:
repository: dependencytrack/apiserver
tag: 4.14.3
pullPolicy: IfNotPresent
podAnnotations: {}
service:
type: ClusterIP
port: 80
env:
ALPINE_DATABASE_MODE: internal
# Environement variables to satisfy dependency track requirements
JAVA_OPTIONS: -XX:ActiveProcessorCount=2 -Xmx4G
# ALPINE_DATABASE_MODE: external
# ALPINE_DATABASE_URL: jdbc:postgresql://db-postgres:5432/dtrack"
# ALPINE_DATABASE_DRIVER: org.postgresql.Driver
# ALPINE_DATABASE_DRIVER_PATH: /extlib/postgresql-42.2.5.jar
# ALPINE_DATABASE_POOL_ENABLED: true
# ALPINE_DATABASE_POOL_MAX_SIZE: 10
# ALPINE_DATABASE_POOL_IDLE_TIMEOUT: 600000
# ALPINE_DATABASE_POOL_MAX_LIFETIME: 600000
# ALPINE_LDAP_ENABLED: "true"
# ALPINE_LDAP_BASEDN: "DC=your,DC=domain,DC=com"
# ALPINE_LDAP_SECURITY_AUTH: "simple"
# ALPINE_LDAP_AUTH_USERNAME_FORMAT: "%s"
# ALPINE_LDAP_ATTRIBUTE_NAME: "sAMAccountName"
# ALPINE_LDAP_ATTRIBUTE_MAIL: "mail"
# ALPINE_LDAP_GROUPS_FILTER: "(&(objectClass=group)(objectCategory=Group))"
# ALPINE_LDAP_USER_GROUPS_FILTER: "(member:1.2.840.113556.1.4.1941:={USER_DN})"
# ALPINE_LDAP_USER_PROVISIONING: "true"
# ALPINE_LDAP_TEAM_SYNCHRONIZATION: "true"
# ALPINE_HTTP_PROXY_ADDRESS: proxy-server.com
# ALPINE_HTTP_PROXY_PORT: 8080
# Optional OpenID Connect (OIDC) Properties
# ALPINE_OIDC_ENABLED: true
# ALPINE_OIDC_ISSUER: https://auth.example.com/auth/realms/example
# ALPINE_OIDC_USERNAME_CLAIM: preferred_username
# ALPINE_OIDC_TEAMS_CLAIM: groups
# ALPINE_OIDC_USER_PROVISIONING: true
# ALPINE_OIDC_TEAM_SYNCHRONIZATION: true
ALPINE_CORS_ENABLED: true
ALPINE_CORS_ALLOW_ORIGIN: "*"
ALPINE_CORS_ALLOW_METHODS: GET, POST, PUT, DELETE, OPTIONS
ALPINE_CORS_ALLOW_HEADERS: Origin, Content-Type, Authorization, X-Requested-With, Content-Length, Accept, Origin, X-Api-Key, X-Total-Count, *
ALPINE_CORS_EXPOSE_HEADERS: Origin, Content-Type, Authorization, X-Requested-With, Content-Length, Accept, Origin, X-Api-Key, X-Total-Count
ALPINE_CORS_ALLOW_CREDENTIALS: true
ALPINE_CORS_MAX_AGE: 3600
# secretsEnv:
# This allows to specify a list of secrets/keys to inject as environment variables
# - secretName: db-dependency-track
# env:
# ALPINE_DATABASE_USERNAME: username
# ALPINE_DATABASE_PASSWORD: password
# - secretName: ldap-auth
# env:
# ALPINE_LDAP_SERVER_URL: LDAP_URL
# ALPINE_LDAP_BIND_USERNAME: USERNAME
# ALPINE_LDAP_BIND_PASSWORD: PASSWORD
# - secretName: proxy-auth
# env:
# ALPINE_HTTP_PROXY_USERNAME: username
# ALPINE_HTTP_PROXY_PASSWORD: password
persistence:
enabled: false
accessMode: ReadWriteOnce
size: 512M
storageClass: "-"
existingClaim: ""
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 2
# memory: 5120Mi
# requests:
# cpu: 2
# memory: 5120Mi