Make Log Search and Prometheus images configurable (#717)

Three new fields were added to let users customize the docker images for log search and prometheus

Signed-off-by: Daniel Valdivia <hola@danielvaldivia.com>
This commit is contained in:
Daniel Valdivia
2021-05-04 14:46:10 -07:00
committed by GitHub
parent 35da684ec9
commit 8a635fc0d7
22 changed files with 232 additions and 53 deletions

View File

@@ -32,6 +32,12 @@ import (
// swagger:model logSearchConfiguration
type LogSearchConfiguration struct {
// image
Image string `json:"image,omitempty"`
// postgres image
PostgresImage string `json:"postgres_image,omitempty"`
// storage class
StorageClass string `json:"storageClass,omitempty"`

View File

@@ -32,6 +32,9 @@ import (
// swagger:model prometheusConfiguration
type PrometheusConfiguration struct {
// image
Image string `json:"image,omitempty"`
// storage class
StorageClass string `json:"storageClass,omitempty"`