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

Roll out no-op compactors #795

Merged
merged 1 commit into from
Mar 26, 2025
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
1 change: 1 addition & 0 deletions magefiles/cr.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ func (p Production) OperatorCR() {

objs = append(objs, queryCR(ns, ProductionMaps, true)...)
objs = append(objs, storeCR(ns, ProductionMaps)...)
objs = append(objs, compactTempProduction()...)

// Sort objects by Kind then Name
sort.Slice(objs, func(i, j int) bool {
Expand Down
71 changes: 71 additions & 0 deletions resources/services/rhobs-thanos-operator/production/rhobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,77 @@ objects:
storeLimitsOptions: {}
version: c7c3ef94c51d518bb6056d3ad416d7b4f39559f3
status: {}
- apiVersion: monitoring.thanos.io/v1alpha1
kind: ThanosCompact
metadata:
creationTimestamp: null
name: historic
namespace: rhobs-production
spec:
baseImage: quay.io/redhat-user-workloads/rhobs-mco-tenant/rhobs-thanos
compactConfig:
compactConcurrency: 1
debugConfig:
acceptMalformedIndex: true
haltOnError: true
maxCompactionLevel: 4
downsamplingConfig:
downsamplingConcurrency: 1
downsamplingEnabled: false
featureGates:
serviceMonitor:
enable: false
imagePullPolicy: IfNotPresent
logFormat: logfmt
logLevel: info
maxTime: -2w
minTime: -3650d
objectStorageConfig:
key: thanos.yaml
name: thanos-objectstorage
optional: false
retentionConfig:
fiveMinutes: 3650d
oneHour: 3650d
raw: 3650d
storageSize: 500Gi
version: c7c3ef94c51d518bb6056d3ad416d7b4f39559f3
status: {}
- apiVersion: monitoring.thanos.io/v1alpha1
kind: ThanosCompact
metadata:
creationTimestamp: null
name: recent
namespace: rhobs-production
spec:
baseImage: quay.io/redhat-user-workloads/rhobs-mco-tenant/rhobs-thanos
compactConfig:
compactConcurrency: 1
debugConfig:
acceptMalformedIndex: true
haltOnError: true
maxCompactionLevel: 3
downsamplingConfig:
downsamplingConcurrency: 1
downsamplingEnabled: true
featureGates:
serviceMonitor:
enable: false
imagePullPolicy: IfNotPresent
logFormat: logfmt
logLevel: info
maxTime: -2w
objectStorageConfig:
key: thanos.yaml
name: thanos-objectstorage
optional: false
retentionConfig:
fiveMinutes: 3650d
oneHour: 3650d
raw: 3650d
storageSize: 50Gi
version: c7c3ef94c51d518bb6056d3ad416d7b4f39559f3
status: {}
- apiVersion: monitoring.thanos.io/v1alpha1
kind: ThanosQuery
metadata:
Expand Down