Use grafyaml container image
Instead of building a local grafana image with grafyaml installed, use the plain upstream grafana image along with the newly created separate opendev grafyaml image to run the dashboards. Depends-On: https://review.opendev.org/780119 Change-Id: If0d584f848f213aeea385885e3decfaee6303de5
This commit is contained in:
parent
6ebbe44528
commit
1492f22faa
@ -1,26 +0,0 @@
|
|||||||
# Copyright (c) 2020 Red Hat, Inc.
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
# implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
FROM docker.io/grafana/grafana:7.4.2-ubuntu
|
|
||||||
|
|
||||||
LABEL maintainer="infra-root@openstack.org"
|
|
||||||
|
|
||||||
USER root
|
|
||||||
RUN apt-get update && apt-get install -y python3-pip \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
RUN pip3 install grafyaml
|
|
||||||
|
|
||||||
COPY update-grafana /usr/local/bin
|
|
||||||
RUN chmod a+x /usr/local/bin/update-grafana
|
|
@ -1,11 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
#
|
|
||||||
# Refresh grafana dashboards from project-config
|
|
||||||
#
|
|
||||||
|
|
||||||
GF_USER="$(cat /etc/grafana/secrets/admin_user)"
|
|
||||||
GF_PASSWORD="$(cat /etc/grafana/secrets/admin_password)"
|
|
||||||
GF_URL="http://${GF_USER}:${GF_PASSWORD}@localhost:3000/"
|
|
||||||
|
|
||||||
grafana-dashboard --debug --grafana-url="${GF_URL}" update /opt/project-config/grafana
|
|
@ -33,6 +33,14 @@
|
|||||||
content: '{{ grafana_secret_key }}'
|
content: '{{ grafana_secret_key }}'
|
||||||
dest: /etc/grafana/secrets/secret_key
|
dest: /etc/grafana/secrets/secret_key
|
||||||
|
|
||||||
|
- name: Write grafyaml env file
|
||||||
|
template:
|
||||||
|
src: grafyaml.env.j2
|
||||||
|
dest: /etc/grafana/secrets/grafyaml.env
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0644
|
||||||
|
|
||||||
- name: Install apache2
|
- name: Install apache2
|
||||||
apt:
|
apt:
|
||||||
name:
|
name:
|
||||||
@ -81,7 +89,8 @@
|
|||||||
|
|
||||||
- name: Import dashboards to container
|
- name: Import dashboards to container
|
||||||
shell:
|
shell:
|
||||||
cmd: |
|
cmd: >-
|
||||||
docker-compose exec -T grafana /usr/local/bin/update-grafana
|
docker run --rm -t --network=host
|
||||||
chdir: /etc/grafana-docker/
|
--env-file /etc/grafana/secrets/grafyaml.env
|
||||||
|
-v /opt/project-config/grafana:/grafana:ro
|
||||||
|
opendevorg/grafyaml
|
||||||
|
@ -5,7 +5,7 @@ version: '2'
|
|||||||
services:
|
services:
|
||||||
grafana:
|
grafana:
|
||||||
restart: always
|
restart: always
|
||||||
image: docker.io/opendevorg/grafana
|
image: docker.io/grafana/grafana:7.4.2-ubuntu
|
||||||
network_mode: host
|
network_mode: host
|
||||||
environment:
|
environment:
|
||||||
GF_SECURITY_ADMIN_PASSWORD__FILE: '/etc/grafana/secrets/admin_password'
|
GF_SECURITY_ADMIN_PASSWORD__FILE: '/etc/grafana/secrets/admin_password'
|
||||||
@ -14,5 +14,4 @@ services:
|
|||||||
GF_AUTH_ANONYMOUS_ENABLED: 'true'
|
GF_AUTH_ANONYMOUS_ENABLED: 'true'
|
||||||
GF_USERS_ALLOW_SIGN_UP: 'false'
|
GF_USERS_ALLOW_SIGN_UP: 'false'
|
||||||
volumes:
|
volumes:
|
||||||
- /opt/project-config:/opt/project-config
|
|
||||||
- /etc/grafana/secrets:/etc/grafana/secrets
|
- /etc/grafana/secrets:/etc/grafana/secrets
|
||||||
|
1
playbooks/roles/grafana/templates/grafyaml.env.j2
Normal file
1
playbooks/roles/grafana/templates/grafyaml.env.j2
Normal file
@ -0,0 +1 @@
|
|||||||
|
GRAFANA_URL=http://{{ grafana_admin_user }}:{{ grafana_admin_password }}@localhost:3000/
|
@ -1,27 +0,0 @@
|
|||||||
# Grafana jobs
|
|
||||||
- job:
|
|
||||||
name: system-config-build-image-grafana
|
|
||||||
description: Build a grafana/grafyaml image.
|
|
||||||
provides: grafana-container-image
|
|
||||||
parent: system-config-build-image
|
|
||||||
vars: &grafana_vars
|
|
||||||
docker_images:
|
|
||||||
- context: docker/grafana
|
|
||||||
repository: opendevorg/grafana
|
|
||||||
files: &grafana_files
|
|
||||||
- docker/grafana/
|
|
||||||
|
|
||||||
- job:
|
|
||||||
name: system-config-upload-image-grafana
|
|
||||||
description: Build and upload a grafana image.
|
|
||||||
provides: grafana-container-image
|
|
||||||
parent: system-config-upload-image
|
|
||||||
vars: *grafana_vars
|
|
||||||
files: *grafana_files
|
|
||||||
|
|
||||||
- job:
|
|
||||||
name: system-config-promote-image-grafana
|
|
||||||
description: Promote a previously published grafana image to latest.
|
|
||||||
parent: system-config-promote-image
|
|
||||||
vars: *grafana_vars
|
|
||||||
files: *grafana_files
|
|
@ -58,8 +58,6 @@
|
|||||||
- system-config-run-grafana:
|
- system-config-run-grafana:
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: opendev-buildset-registry
|
- name: opendev-buildset-registry
|
||||||
- name: system-config-build-image-grafana
|
|
||||||
soft: true
|
|
||||||
- system-config-run-graphite
|
- system-config-run-graphite
|
||||||
- system-config-run-keycloak
|
- system-config-run-keycloak
|
||||||
- system-config-run-review-3.3:
|
- system-config-run-review-3.3:
|
||||||
@ -119,7 +117,6 @@
|
|||||||
- name: opendev-buildset-registry
|
- name: opendev-buildset-registry
|
||||||
- name: system-config-build-image-assets
|
- name: system-config-build-image-assets
|
||||||
soft: true
|
soft: true
|
||||||
- system-config-build-image-grafana
|
|
||||||
- system-config-build-image-haproxy-statsd:
|
- system-config-build-image-haproxy-statsd:
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: opendev-buildset-registry
|
- name: opendev-buildset-registry
|
||||||
@ -219,8 +216,6 @@
|
|||||||
- system-config-run-grafana:
|
- system-config-run-grafana:
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: opendev-buildset-registry
|
- name: opendev-buildset-registry
|
||||||
- name: system-config-upload-image-grafana
|
|
||||||
soft: true
|
|
||||||
- system-config-run-graphite
|
- system-config-run-graphite
|
||||||
- system-config-run-keycloak
|
- system-config-run-keycloak
|
||||||
- system-config-run-review-3.3:
|
- system-config-run-review-3.3:
|
||||||
@ -268,7 +263,6 @@
|
|||||||
- name: opendev-buildset-registry
|
- name: opendev-buildset-registry
|
||||||
- name: system-config-upload-image-assets
|
- name: system-config-upload-image-assets
|
||||||
soft: true
|
soft: true
|
||||||
- system-config-upload-image-grafana
|
|
||||||
- system-config-upload-image-refstack
|
- system-config-upload-image-refstack
|
||||||
- system-config-upload-image-haproxy-statsd:
|
- system-config-upload-image-haproxy-statsd:
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -323,7 +317,6 @@
|
|||||||
- system-config-promote-image-jinja-init
|
- system-config-promote-image-jinja-init
|
||||||
- system-config-promote-image-gitea-init
|
- system-config-promote-image-gitea-init
|
||||||
- system-config-promote-image-gitea
|
- system-config-promote-image-gitea
|
||||||
- system-config-promote-image-grafana
|
|
||||||
- system-config-promote-image-etherpad
|
- system-config-promote-image-etherpad
|
||||||
- system-config-promote-image-haproxy-statsd
|
- system-config-promote-image-haproxy-statsd
|
||||||
- system-config-promote-image-zookeeper-statsd
|
- system-config-promote-image-zookeeper-statsd
|
||||||
@ -498,8 +491,6 @@
|
|||||||
soft: true
|
soft: true
|
||||||
- name: infra-prod-letsencrypt
|
- name: infra-prod-letsencrypt
|
||||||
soft: true
|
soft: true
|
||||||
- name: system-config-promote-image-grafana
|
|
||||||
soft: true
|
|
||||||
- infra-prod-service-mirror: &infra-prod-service-mirror
|
- infra-prod-service-mirror: &infra-prod-service-mirror
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: infra-prod-letsencrypt
|
- name: infra-prod-letsencrypt
|
||||||
|
@ -645,7 +645,7 @@
|
|||||||
description: |
|
description: |
|
||||||
Run the playbook for the etherpad servers.
|
Run the playbook for the etherpad servers.
|
||||||
timeout: 3600
|
timeout: 3600
|
||||||
requires: grafana-container-image
|
requires: grafyaml-container-image
|
||||||
required-projects:
|
required-projects:
|
||||||
- opendev/system-config
|
- opendev/system-config
|
||||||
- openstack/project-config
|
- openstack/project-config
|
||||||
@ -667,7 +667,6 @@
|
|||||||
- playbooks/roles/grafana/
|
- playbooks/roles/grafana/
|
||||||
- playbooks/roles/install-docker/
|
- playbooks/roles/install-docker/
|
||||||
- playbooks/roles/pip3/
|
- playbooks/roles/pip3/
|
||||||
- docker/grafana/
|
|
||||||
- testinfra/test_grafana.py
|
- testinfra/test_grafana.py
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user