We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently the rendered version of a TempoStack looks like this:
template: compactor: replicas: 1 distributor: component: replicas: 1 ingester: replicas: 2 querier: replicas: 1 queryFrontend: component: replicas: 1
Where replicas is directly under the component for compactor, ingester and querier, but not for distributor and queryFrontend.
replicas
compactor
ingester
querier
distributor
queryFrontend
In the code at
tempo-operator/apis/tempo/v1alpha1/tempostack_types.go
Lines 521 to 522 in 5a79e61
type TempoDistributorSpec struct { TempoComponentSpec `json:",inline"` }
and is already used at another place:
type TempoStack struct { metav1.TypeMeta `json:",inline"` }
Is there a corner case I'm missing here? Or did this feature get implemented in the meantime?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the rendered version of a TempoStack looks like this:
Where
replicas
is directly under the component forcompactor
,ingester
andquerier
, but not fordistributor
andqueryFrontend
.In the code at
tempo-operator/apis/tempo/v1alpha1/tempostack_types.go
Lines 521 to 522 in 5a79e61
and is already used at another place:
Is there a corner case I'm missing here? Or did this feature get implemented in the meantime?
The text was updated successfully, but these errors were encountered: