Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(grafana): add performance dashboard #5852

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ansible/playbooks/vars/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

# Overwrite by passing sd_user and/or sd_password variables when running the playbook
seldon_admin_user: "admin"
seldon_random_gen_password: "{{ lookup('password', '/dev/null chars=digits length=6') }}"
seldon_random_gen_password: "r-{{ lookup('password', '/dev/null chars=digits length=6') }}"

# KinD Configuration
kind_local_mount: false
Expand Down
6 changes: 4 additions & 2 deletions ansible/roles/grafana/defaults/main.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
---
grafana_chart_version: 7.3.9
grafana_app_version: 10.4.2
grafana_chart_version: 8.4.1
grafana_app_version: 11.1.3

grafana_preloaded_dashboards:
- name: mms
json: "{{ lookup('file', playbook_dir + '/../../prometheus/dashboards/provisioning/seldon.json') }}"
- name: perf
json: "{{ lookup('file', playbook_dir + '/../../prometheus/dashboards/provisioning/perf_and_scaling.json') }}"
Loading
Loading