Skip to content

Commit

Permalink
Merge branch 'master' into csibbitt/STF-1629_remove-grafana-basic-auth
Browse files Browse the repository at this point in the history
  • Loading branch information
csibbitt authored Dec 7, 2023
2 parents d61030a + 0d5ed29 commit 75c1f31
Show file tree
Hide file tree
Showing 10 changed files with 6,657 additions and 6 deletions.
9 changes: 8 additions & 1 deletion deploy/crds/infra.watch_servicetelemetrys_crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -289,11 +289,18 @@ spec:
description: Whether to disable the Grafana signout menu
type: boolean
ingressEnabled:
description: Enable ingress access to Grafana
description: Whether to enable ingress access to Grafana
type: boolean
baseImage:
description: Path to the base container image used to instantiate a Grafana instance
type: string
dashboards:
description: Dashboard configurations for Grafana
properties:
enabled:
description: Whether to enable built-in dashboards provided by Service Telemetry Framework
type: boolean
type: object
type: object
type: object
cloudsRemoveOnMissing:
Expand Down
5 changes: 4 additions & 1 deletion deploy/crds/infra.watch_v1beta1_servicetelemetry_cr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,11 @@ spec:
graphing:
enabled: false
grafana:
ingressEnabled: false
ingressEnabled: true
disableSignoutMenu: false
baseImage: registry.redhat.io/rhel8/grafana:7
dashboards:
enabled: true
transports:
qdr:
enabled: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -389,11 +389,19 @@ spec:
description: Path to the base container image used to instantiate
a Grafana instance
type: string
dashboards:
description: Dashboard configurations for Grafana
properties:
enabled:
description: Whether to enable built-in dashboards provided
by Service Telemetry Framework
type: boolean
type: object
disableSignoutMenu:
description: Whether to disable the Grafana signout menu
type: boolean
ingressEnabled:
description: Enable ingress access to Grafana
description: Whether to enable ingress access to Grafana
type: boolean
type: object
type: object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,12 @@ metadata:
"graphing": {
"enabled": false,
"grafana": {
"baseImage": "registry.redhat.io/rhel8/grafana:7",
"dashboards": {
"enabled": true
},
"disableSignoutMenu": false,
"ingressEnabled": false
"ingressEnabled": true
}
},
"highAvailability": {
Expand Down
6 changes: 4 additions & 2 deletions roles/servicetelemetry/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,11 @@ servicetelemetry_defaults:
graphing:
enabled: false
grafana:
ingress_enabled: false
ingress_enabled: true
disable_signout_menu: false
base_image: docker.io/grafana/grafana:8.1.2
base_image: registry.redhat.io/rhel8/grafana:7
dashboards:
enabled: true

# 'clouds' object is not partially updatable like other objects. If 'clouds'
# object is defined then the default is overwritten.
Expand Down
Loading

0 comments on commit 75c1f31

Please sign in to comment.