Skip to content

Commit 91bf5d6

Browse files
ThomasVitalegithub-actions
andauthored
Update Dependency Track metadata and add version 4.13.3 (#501)
Co-authored-by: github-actions <github-actions@github.com>
1 parent 17f0b06 commit 91bf5d6

File tree

1 file changed

+211
-0
lines changed
  • repo/packages/dependency-track.packages.kadras.io

1 file changed

+211
-0
lines changed
Lines changed: 211 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,211 @@
1+
apiVersion: data.packaging.carvel.dev/v1alpha1
2+
kind: Package
3+
metadata:
4+
creationTimestamp: null
5+
name: dependency-track.packages.kadras.io.4.13.3
6+
spec:
7+
licenses:
8+
- Apache 2.0
9+
refName: dependency-track.packages.kadras.io
10+
releaseNotes: https://github.com/kadras-io/package-for-dependency-track/releases
11+
releasedAt: "2025-08-14T18:07:53Z"
12+
template:
13+
spec:
14+
deploy:
15+
- kapp: {}
16+
fetch:
17+
- imgpkgBundle:
18+
image: ghcr.io/kadras-io/package-for-dependency-track@sha256:7e997d3514792da849ef9ad483ee574f34de4f19115d0c4395f81690f55d8015
19+
template:
20+
- ytt:
21+
paths:
22+
- config
23+
- kbld:
24+
paths:
25+
- '-'
26+
- .imgpkg/images.yml
27+
valuesSchema:
28+
openAPIv3:
29+
additionalProperties: false
30+
properties:
31+
api_server:
32+
additionalProperties: false
33+
description: Settings for the API Server component.
34+
properties:
35+
logging:
36+
additionalProperties: false
37+
description: Settings for logging.
38+
properties:
39+
format:
40+
default: console
41+
description: 'Log encoding format. Options: `console`, `json`.'
42+
enum:
43+
- console
44+
- json
45+
type: string
46+
level:
47+
default: info
48+
description: 'Log verbosity level. Options: `trace`, `debug`, `info`,
49+
`warn`, `error`.'
50+
enum:
51+
- trace
52+
- debug
53+
- info
54+
- warn
55+
- error
56+
type: string
57+
type: object
58+
metrics:
59+
additionalProperties: false
60+
description: Settings for metrics.
61+
properties:
62+
enabled:
63+
default: true
64+
description: Whether to enable the generation of Prometheus metrics.
65+
type: boolean
66+
type: object
67+
resources:
68+
additionalProperties: false
69+
description: Resource configuration for the API Server component.
70+
properties:
71+
limits:
72+
additionalProperties: false
73+
properties:
74+
cpu:
75+
default: "4"
76+
description: CPU limits configuration for the API Server component.
77+
type: string
78+
memory:
79+
default: 5Gi
80+
description: Memory limits configuration for the API Server
81+
component.
82+
type: string
83+
type: object
84+
requests:
85+
additionalProperties: false
86+
properties:
87+
cpu:
88+
default: "0.5"
89+
description: CPU requests configuration for the API Server component.
90+
type: string
91+
memory:
92+
default: 5Gi
93+
description: Memory requests configuration for the API Server
94+
component.
95+
type: string
96+
type: object
97+
type: object
98+
storage:
99+
additionalProperties: false
100+
description: Storage configuration for the API Server component.
101+
properties:
102+
class_name:
103+
default: ""
104+
description: Class name for the PersistenceVolume to create.
105+
type: string
106+
size:
107+
default: 1Gi
108+
description: Size of the PersistenceVolume to create.
109+
type: string
110+
type: object
111+
type: object
112+
domain_name:
113+
default: ""
114+
description: Domain name for Dependency Track. It must be a valid DNS name.
115+
minLength: 4
116+
type: string
117+
frontend:
118+
additionalProperties: false
119+
description: Settings for the Frontend component.
120+
properties:
121+
replicas:
122+
default: 1
123+
description: The number of Frontend replicas. In order to enable high
124+
availability, it should be greater than 1.
125+
minimum: 1
126+
type: integer
127+
resources:
128+
additionalProperties: false
129+
description: Resource configuration for the Frontend component.
130+
properties:
131+
limits:
132+
additionalProperties: false
133+
properties:
134+
cpu:
135+
default: 500m
136+
description: CPU limits configuration for the Frontend component.
137+
type: string
138+
memory:
139+
default: 128Mi
140+
description: Memory limits configuration for the Frontend component.
141+
type: string
142+
type: object
143+
requests:
144+
additionalProperties: false
145+
properties:
146+
cpu:
147+
default: 150m
148+
description: CPU requests configuration for the Frontend component.
149+
type: string
150+
memory:
151+
default: 64Mi
152+
description: Memory requests configuration for the Frontend
153+
component.
154+
type: string
155+
type: object
156+
type: object
157+
type: object
158+
ingress_issuer:
159+
default: ""
160+
description: A reference to the ClusterIssuer to use for enabling TLS in
161+
Dependency Track.
162+
example: kadras-ca-issuer
163+
minLength: 4
164+
type: string
165+
x-example-description: Kadras private CA
166+
postgresql:
167+
additionalProperties: false
168+
description: Settings for the PostgreSQL database.
169+
properties:
170+
instances:
171+
default: 1
172+
description: Number of instances for the PostgreSQL database cluster.
173+
Define at least 3 for production scenarios.
174+
minimum: 1
175+
type: integer
176+
storage:
177+
additionalProperties: false
178+
description: Storage configuration for each PostgreSQL instance.
179+
properties:
180+
size:
181+
default: 1Gi
182+
description: Size of the PersistenceVolume to create for each PostgreSQL
183+
instance.
184+
type: string
185+
type: object
186+
type: object
187+
proxy:
188+
additionalProperties: false
189+
description: Settings for the corporate proxy.
190+
properties:
191+
http_proxy:
192+
default: ""
193+
description: The HTTP proxy to use for network traffic.
194+
type: string
195+
https_proxy:
196+
default: ""
197+
description: The HTTPS proxy to use for network traffic.
198+
type: string
199+
no_proxy:
200+
default: ""
201+
description: A comma-separated list of hostnames, IP addresses, or IP
202+
ranges in CIDR format that should not use the proxy.
203+
type: string
204+
type: object
205+
system_requirement_check:
206+
default: true
207+
description: Whether Dependency Track will check for memory and CPU requirements
208+
at startup time.
209+
type: boolean
210+
type: object
211+
version: 4.13.3

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy