Was this page helpful?
Caution
You're viewing documentation for an unstable version of Scylla Operator. Switch to the latest stable version.
ScyllaOperatorConfig holds the global configuration for Scylla Operator. It is automatically created by Scylla Operator, if it’s missing, and also reports some of the configuration (like auxiliary images) that are in use.
This is a singleton resource where only a single instance named cluster
is valid.
1apiVersion: scylla.scylladb.com/v1alpha1
2kind: ScyllaOperatorConfig
3metadata:
4 name: cluster
5 # ...
6spec:
7 scyllaUtilsImage: ""
8status:
9 bashToolsImage: registry.access.redhat.com/ubi9/ubi:9.3-1361.1699548029@sha256:6b95efc134c2af3d45472c0a2f88e6085433df058cc210abb2bb061ac4d74359
10 grafanaImage: docker.io/grafana/grafana:9.5.12@sha256:7d2f2a8b7aebe30bf3f9ae0f190e508e571b43f65753ba3b1b1adf0800bc9256
11 observedGeneration: 1
12 prometheusVersion: v2.44.0
13 scyllaDBUtilsImage: docker.io/scylladb/scylla:5.4.0@sha256:b9070afdb2be0d5c59b1c196e1bb66660351403cb30d5c6ba446ef8c3b0754f1
To enable tuning using the scripts from ScyllaDB Enterprise you have to adjust the scyllaUtilsImage
spec:
scyllaUtilsImage: "docker.io/scylladb/scylla-enterprise:2024.1.12"
Was this page helpful?