Merge "Fix grafana job deployment condition"

This commit is contained in:
Zuul 2023-06-11 02:19:58 +00:00 committed by Gerrit Code Review
commit beea0d5811
4 changed files with 27 additions and 2 deletions

View File

@ -15,7 +15,7 @@ apiVersion: v1
appVersion: v9.2.10
description: OpenStack-Helm Grafana
name: grafana
version: 0.1.20
version: 0.1.21
home: https://grafana.com/
sources:
- https://github.com/grafana/grafana

View File

@ -12,7 +12,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/}}
{{- if .Values.manifests.deployment }}
{{- if .Values.manifests.job_run_migrator }}
{{- $envAll := . }}
{{- $mounts_grafana := .Values.pod.mounts.grafana.grafana }}

View File

@ -0,0 +1,24 @@
---
dependencies:
static:
grafana:
jobs: null
services: null
manifests:
job_db_init: false
job_db_init_session: false
job_db_session_sync: false
job_image_repo_sync: true
job_run_migrator: false
job_set_admin_user: false
secret_db: false
secret_db_session: false
conf:
grafana:
database:
type: sqlite3
path: /var/lib/grafana/data/sqlite3.db
session:
provider: file
provider_config: sessions
...

View File

@ -21,4 +21,5 @@ grafana:
- 0.1.18 Migrator job is now mariadb-fail-proof
- 0.1.19 Update grafana to 9.2.10
- 0.1.20 Upgrade osh-selenium image to latest-ubuntu_focal
- 0.1.21 Fix run migrator job deployment condition
...