Skip to content

Commit

Permalink
[fronius-exporter] Remove site parameter and argument
Browse files Browse the repository at this point in the history
exporter v0.6.0 doesn't support the site flag anymore
  • Loading branch information
ccremer committed Jun 11, 2021
1 parent d4c1657 commit d25a8c6
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/fronius-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.5.1
version: 0.6.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
3 changes: 1 addition & 2 deletions charts/fronius-exporter/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# fronius-exporter

![Version: 0.5.1](https://img.shields.io/badge/Version-0.5.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Prometheus Exporter for Fronius Symo Photovoltaics

Expand All @@ -23,7 +23,6 @@ helm install fronius-exporter ccremer/fronius-exporter
|-----|------|---------|-------------|
| affinity | object | `{}` | |
| exporter.additionalArgs | list | `[]` | Provide additional CLI flags via string array |
| exporter.siteName | string | `""` | Site name of Fronius SYMO that gets added as a static label to all metrics. **Recommended** |
| exporter.symoUrl | string | `"http://symo.ip.or.hostname/solar_api/v1/GetPowerFlowRealtimeData.fcgi"` | Target URL of Fronius SYMO device. **Required** |
| exporter.timeoutSeconds | int | `5` | Time after which collecting may time out. Should not be higher than the Prometheus scrape interval. |
| fullnameOverride | string | `""` | |
Expand Down
1 change: 0 additions & 1 deletion charts/fronius-exporter/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
args:
- --symo.url={{ .Values.exporter.symoUrl }}
- --symo.site={{ .Values.exporter.siteName }}
- --symo.timeout={{ .Values.exporter.timeoutSeconds }}
{{- range .Values.exporter.additionalArgs }}
- {{ . }}
Expand Down
2 changes: 0 additions & 2 deletions charts/fronius-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ fullnameOverride: ""
exporter:
# -- Target URL of Fronius SYMO device. **Required**
symoUrl: "http://symo.ip.or.hostname/solar_api/v1/GetPowerFlowRealtimeData.fcgi"
# -- Site name of Fronius SYMO that gets added as a static label to all metrics. **Recommended**
siteName: ""
# -- Provide additional CLI flags via string array
additionalArgs: []
# -- Time after which collecting may time out. Should not be higher than
Expand Down

0 comments on commit d25a8c6

Please sign in to comment.