diff --git a/charts/fronius-exporter/Chart.yaml b/charts/fronius-exporter/Chart.yaml index 00e412a..5164f57 100644 --- a/charts/fronius-exporter/Chart.yaml +++ b/charts/fronius-exporter/Chart.yaml @@ -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 diff --git a/charts/fronius-exporter/README.md b/charts/fronius-exporter/README.md index 5dac6a6..a63155c 100644 --- a/charts/fronius-exporter/README.md +++ b/charts/fronius-exporter/README.md @@ -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 @@ -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 | `""` | | diff --git a/charts/fronius-exporter/templates/deployment.yaml b/charts/fronius-exporter/templates/deployment.yaml index 4efdb5c..f13acc8 100644 --- a/charts/fronius-exporter/templates/deployment.yaml +++ b/charts/fronius-exporter/templates/deployment.yaml @@ -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 }} - {{ . }} diff --git a/charts/fronius-exporter/values.yaml b/charts/fronius-exporter/values.yaml index b1ccec2..2d7f773 100644 --- a/charts/fronius-exporter/values.yaml +++ b/charts/fronius-exporter/values.yaml @@ -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