Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-12-05 11:30:16 +00:00
parent ec544b8f0c
commit 65d01adf24
15 changed files with 25 additions and 16 deletions

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="grafana-1.0.7"></a>
### [grafana-1.0.7](https://github.com/truecharts/apps/compare/grafana-1.0.6...grafana-1.0.7) (2021-12-05)
#### Fix
* correct storage path
<a name="grafana-1.0.6"></a>
### [grafana-1.0.6](https://github.com/truecharts/apps/compare/grafana-1.0.5...grafana-1.0.6) (2021-12-04)

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 8.9.10
digest: sha256:76ef16a78cbfe53b0be5d9fac03039063f57b2b43f927e4cbfed13be1c939fcc
generated: "2021-12-05T00:14:17.271316279Z"
generated: "2021-12-05T11:26:45.200349252Z"

View File

@ -23,7 +23,7 @@ sources:
- https://github.com/bitnami/bitnami-docker-grafana
- https://grafana.com/
type: application
version: 1.0.6
version: 1.0.7
annotations:
truecharts.org/catagories: |
- metrics

View File

@ -12,14 +12,14 @@ You will, however, be able to use all values referenced in the common chart here
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| env.GF_AUTH_LDAP_ALLOW_SIGN_UP | string | `"false"` | |
| env.GF_AUTH_LDAP_CONFIG_FILE | string | `"/opt/tccr.io/truecharts/grafana/conf/ldap.toml"` | |
| env.GF_AUTH_LDAP_CONFIG_FILE | string | `"/opt/bitnami/grafana/conf/ldap.toml"` | |
| env.GF_AUTH_LDAP_ENABLED | string | `"false"` | |
| env.GF_INSTALL_PLUGINS | string | `""` | |
| env.GF_PATHS_CONFIG | string | `"/opt/tccr.io/truecharts/grafana/conf/grafana.ini"` | |
| env.GF_PATHS_DATA | string | `"/opt/tccr.io/truecharts/grafana/data"` | |
| env.GF_PATHS_LOGS | string | `"/opt/tccr.io/truecharts/grafana/logs"` | |
| env.GF_PATHS_PLUGINS | string | `"/opt/tccr.io/truecharts/grafana/data/plugins"` | |
| env.GF_PATHS_PROVISIONING | string | `"/opt/tccr.io/truecharts/grafana/conf/provisioning"` | |
| env.GF_PATHS_CONFIG | string | `"/opt/bitnami/grafana/conf/grafana.ini"` | |
| env.GF_PATHS_DATA | string | `"/opt/bitnami/grafana/data"` | |
| env.GF_PATHS_LOGS | string | `"/opt/bitnami/grafana/logs"` | |
| env.GF_PATHS_PLUGINS | string | `"/opt/bitnami/grafana/data/plugins"` | |
| env.GF_PATHS_PROVISIONING | string | `"/opt/bitnami/grafana/conf/provisioning"` | |
| env.GF_SECURITY_ADMIN_USER | string | `"admin"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"tccr.io/truecharts/grafana"` | |
@ -31,7 +31,7 @@ You will, however, be able to use all values referenced in the common chart here
| metrics.serviceMonitor.labels | object | `{}` | |
| metrics.serviceMonitor.scrapeTimeout | string | `"30s"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/opt/tccr.io/truecharts/grafana/data"` | |
| persistence.config.mountPath | string | `"/opt/bitnami/grafana/data"` | |
| probes.liveness.path | string | `"/api/health"` | |
| probes.readiness.path | string | `"/api/health"` | |
| probes.startup.path | string | `"/api/health"` | |

View File

@ -30,20 +30,20 @@ secret:
env:
GF_SECURITY_ADMIN_USER: "admin"
GF_INSTALL_PLUGINS: ""
GF_PATHS_PLUGINS: "/opt/tccr.io/truecharts/grafana/data/plugins"
GF_PATHS_PLUGINS: "/opt/bitnami/grafana/data/plugins"
GF_AUTH_LDAP_ENABLED: "false"
GF_AUTH_LDAP_CONFIG_FILE: "/opt/tccr.io/truecharts/grafana/conf/ldap.toml"
GF_AUTH_LDAP_CONFIG_FILE: "/opt/bitnami/grafana/conf/ldap.toml"
GF_AUTH_LDAP_ALLOW_SIGN_UP: "false"
GF_PATHS_PROVISIONING: "/opt/tccr.io/truecharts/grafana/conf/provisioning"
GF_PATHS_CONFIG: "/opt/tccr.io/truecharts/grafana/conf/grafana.ini"
GF_PATHS_DATA: "/opt/tccr.io/truecharts/grafana/data"
GF_PATHS_LOGS: "/opt/tccr.io/truecharts/grafana/logs"
GF_PATHS_PROVISIONING: "/opt/bitnami/grafana/conf/provisioning"
GF_PATHS_CONFIG: "/opt/bitnami/grafana/conf/grafana.ini"
GF_PATHS_DATA: "/opt/bitnami/grafana/data"
GF_PATHS_LOGS: "/opt/bitnami/grafana/logs"
persistence:
config:
enabled: true
mountPath: "/opt/tccr.io/truecharts/grafana/data"
mountPath: "/opt/bitnami/grafana/data"
metrics:
# -- Enable and configure a Prometheus serviceMonitor for the chart under this key.