Class: Kube::Cluster::Standard::VictoriaMetrics::VLogs

Inherits:
Object
  • Object
show all
Defined in:
lib/kube/cluster/standard/victoria_metrics/vlogs.rb

Overview

Legacy VictoriaLogs kind (operator.victoriametrics.com/v1beta1). New deployments should prefer VLSingle (v1); this wrapper exists for completeness / migrating existing objects. Spec is configured in block.

Instance Method Summary collapse

Constructor Details

#initialize(name:, &block) ⇒ VLogs

Returns a new instance of VLogs.



14
15
16
17
18
19
# File 'lib/kube/cluster/standard/victoria_metrics/vlogs.rb', line 14

def initialize(name:, &block)
  super() {
    .name = name
    instance_exec(&block) if block
  }
end