Skip to content

Commit

Permalink
new versions for default grafana and kibana images
Browse files Browse the repository at this point in the history
  • Loading branch information
denarsh committed Jul 23, 2024
1 parent 6a59f62 commit 6650f5e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
4 changes: 2 additions & 2 deletions api/v1/appdefaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ var esDefault = Es{
ServiceAccount: "kibana",
SvcName: "kibana",
Port: 8080,
Image: "kibana-oss:7.8.1",
Image: "cnvrg/kibana:7:11.2",
NodePort: 30601,
Requests: Requests{
Cpu: "100m",
Expand Down Expand Up @@ -322,7 +322,7 @@ var promDefaults = Prom{
StorageSize: "50Gi",
Grafana: Grafana{
Enabled: false,
Image: "grafana-oss:9.1.7",
Image: "grafana-oss:9.5.20",
SvcName: "grafana",
Port: 8080,
NodePort: 30012,
Expand Down
4 changes: 2 additions & 2 deletions charts/mlops/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ dbs:
serviceAccount: kibana
svcName: kibana
port: 8080
image: kibana-oss:7.8.1
image: cnvrg/kibana:7:11.2
nodePort: 30601
requests:
cpu: 100m
Expand Down Expand Up @@ -270,7 +270,7 @@ dbs:
storageSize: 50Gi
grafana:
enabled: true
image: grafana-oss:9.1.7
image: grafana-oss:9.5.20
svcName: grafana
port: 8080
nodePort: 30012
Expand Down
11 changes: 10 additions & 1 deletion pkg/desired/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,23 @@ server:
name: kibana
host: %s
port: %s
status:
allowAnonymous: true
xpack.security.authc.providers:
anonymous.anonymous1:
order: 0
credentials:
username: %s
password: %s
elasticsearch:
hosts:
- %s
username: %s
password: %s
customHeaders:
Authorization: "Basic %s"
`, host, port, esHost, esUser, esPass, esBasicAuth)
`, host, port, esUser, esPass, esHost, esUser, esPass, esBasicAuth)
},

"isTrue": func(boolPointer bool) bool { // this is legacy function and should be removed in the future
Expand Down

0 comments on commit 6650f5e

Please sign in to comment.