File tree Expand file tree Collapse file tree 10 files changed +24
-32
lines changed Expand file tree Collapse file tree 10 files changed +24
-32
lines changed Original file line number Diff line number Diff line change 55 "grafana" : " 0.8.1" ,
66 "argo-project" : " 1.0.1" ,
77 "basic-auth-secret" : " 0.3.0" ,
8- "prom2parquet" : " 0.2.0 "
8+ "prom2parquet" : " 0.2.2 "
99}
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.2.2] ( https://github.com/chanzuckerberg/argo-helm-charts/compare/prom2parquet-v0.2.1...prom2parquet-v0.2.2 ) (2025-11-26)
4+
5+
6+ ### Bug Fixes
7+
8+ * prom2parquet remove other prefix param artifacts ([ #335 ] ( https://github.com/chanzuckerberg/argo-helm-charts/issues/335 ) ) ([ 0782ea8] ( https://github.com/chanzuckerberg/argo-helm-charts/commit/0782ea83fdb4da5c51ee5adaf22d3271969d0f29 ) )
9+
10+ ## [ 0.2.1] ( https://github.com/chanzuckerberg/argo-helm-charts/compare/prom2parquet-v0.2.0...prom2parquet-v0.2.1 ) (2025-11-25)
11+
12+
13+ ### Bug Fixes
14+
15+ * Remove unimplemented prefix parameter ([ #333 ] ( https://github.com/chanzuckerberg/argo-helm-charts/issues/333 ) ) ([ b912757] ( https://github.com/chanzuckerberg/argo-helm-charts/commit/b912757457ce5c8ab14fd95710558c4b2ae801b7 ) )
16+
317## [ 0.2.0] ( https://github.com/chanzuckerberg/argo-helm-charts/compare/prom2parquet-v0.1.0...prom2parquet-v0.2.0 ) (2025-11-20)
418
519
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ name: prom2parquet
33description : A Helm chart for deploying prom2parquet - exports Prometheus
44 metrics to Parquet format on S3
55type : application
6- version : 0.2.0
6+ version : 0.2.2
77appVersion : " 1.0.0"
Original file line number Diff line number Diff line change 119119| ** Required** | No |
120120| ** Additional properties** | Any type allowed |
121121
122- | Property | Pattern | Type | Deprecated | Definition | Title/Description |
123- | ---------------------------- | ------- | ------ | ---------- | ---------- | ---------------------------------------- |
124- | - [ prefix] ( #backend_prefix ) | No | string | No | - | Prefix for storing data in the backend |
125- | - [ root] ( #backend_root ) | No | string | No | - | Backend root path (e.g., S3 bucket name) |
126- | - [ type] ( #backend_type ) | No | string | No | - | Backend type (e.g., s3/aws) |
122+ | Property | Pattern | Type | Deprecated | Definition | Title/Description |
123+ | ------------------------ | ------- | ------ | ---------- | ---------- | ---------------------------------------- |
124+ | - [ root] ( #backend_root ) | No | string | No | - | Backend root path (e.g., S3 bucket name) |
125+ | - [ type] ( #backend_type ) | No | string | No | - | Backend type (e.g., s3/aws) |
127126
128- ### <a name =" backend_prefix " ></a >4.1. Property ` prom2parquet > backend > prefix `
129-
130- | | |
131- | ------------ | -------- |
132- | ** Type** | ` string ` |
133- | ** Required** | No |
134-
135- ** Description:** Prefix for storing data in the backend
136-
137- ### <a name =" backend_root " ></a >4.2. Property ` prom2parquet > backend > root `
127+ ### <a name =" backend_root " ></a >4.1. Property ` prom2parquet > backend > root `
138128
139129| | |
140130| ------------ | -------- |
143133
144134** Description:** Backend root path (e.g., S3 bucket name)
145135
146- ### <a name =" backend_type " ></a >4.3 . Property ` prom2parquet > backend > type `
136+ ### <a name =" backend_type " ></a >4.2 . Property ` prom2parquet > backend > type `
147137
148138| | |
149139| ------------ | -------- |
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ serviceAccount:
1616backend :
1717 type : " s3/aws"
1818 root : " my-metrics-bucket"
19- prefix : " parquet"
2019
2120serverPort : 1234
2221
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ awsCredentials:
1919backend :
2020 type : " s3/aws"
2121 root : " my-metrics-bucket"
22- prefix : " parquet"
2322
2423serverPort : 1234
2524
Original file line number Diff line number Diff line change 3939 {{- if .Values.backend.root }}
4040 - " --backend-root={{ .Values.backend.root }}"
4141 {{- end }}
42- - " --prefix={{ .Values.backend.prefix }}"
4342 - " --server-port={{ .Values.serverPort }}"
4443 {{- range .Values.args }}
4544 - {{ . | quote }}
Original file line number Diff line number Diff line change @@ -34,20 +34,16 @@ tests:
3434 template : deployment.yaml
3535 set :
3636 backend :
37- type : " s3/aws "
37+ type : " s3"
3838 root : " my-bucket"
39- prefix : " metrics"
4039 serverPort : 9090
4140 asserts :
4241 - contains :
4342 path : spec.template.spec.containers[0].args
44- content : " --backend=s3/aws "
43+ content : " --backend=s3"
4544 - contains :
4645 path : spec.template.spec.containers[0].args
4746 content : " --backend-root=my-bucket"
48- - contains :
49- path : spec.template.spec.containers[0].args
50- content : " --prefix=metrics"
5147 - contains :
5248 path : spec.template.spec.containers[0].args
5349 content : " --server-port=9090"
Original file line number Diff line number Diff line change 3535 "backend" : {
3636 "type" : " object" ,
3737 "properties" : {
38- "prefix" : {
39- "description" : " Prefix for storing data in the backend" ,
40- "type" : " string"
41- },
4238 "root" : {
4339 "description" : " Backend root path (e.g., S3 bucket name)" ,
4440 "type" : " string"
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ service:
3434backend :
3535 type : " s3/aws" # @schema description: Backend type (e.g., s3/aws)
3636 root : " " # @schema description: Backend root path (e.g., S3 bucket name)
37- prefix : " parquet" # @schema description: Prefix for storing data in the backend
3837
3938serverPort : 1234 # @schema description: Port for the prom2parquet server
4039
You can’t perform that action at this time.
0 commit comments