Skip to content

Commit

Permalink
Set resources in sample TempoMonolithic CR (#778)
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Gerstmayr <[email protected]>
  • Loading branch information
andreasgerstmayr authored Feb 2, 2024
1 parent fae4dd0 commit b334efd
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ metadata:
"enabled": true,
"ingress": {
"enabled": true
},
"resources": {
"limits": {
"cpu": "2",
"memory": "2Gi"
}
}
},
"resources": {
"limits": {
"cpu": "2",
"memory": "2Gi"
}
},
"storage": {
Expand Down Expand Up @@ -62,7 +74,7 @@ metadata:
capabilities: Deep Insights
categories: Logging & Tracing,Monitoring
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.7.0
createdAt: "2024-02-02T16:21:12Z"
createdAt: "2024-02-02T17:03:05Z"
description: Create and manage deployments of Tempo, a high-scale distributed
tracing backend.
operatorframework.io/cluster-monitoring: "true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,22 @@ metadata:
"spec": {
"jaegerui": {
"enabled": true,
"resources": {
"limits": {
"cpu": "2",
"memory": "2Gi"
}
},
"route": {
"enabled": true
}
},
"resources": {
"limits": {
"cpu": "2",
"memory": "2Gi"
}
},
"storage": {
"traces": {
"backend": "memory"
Expand Down Expand Up @@ -62,7 +74,7 @@ metadata:
capabilities: Deep Insights
categories: Logging & Tracing,Monitoring
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.7.0
createdAt: "2024-02-02T16:21:10Z"
createdAt: "2024-02-02T17:03:04Z"
description: Create and manage deployments of Tempo, a high-scale distributed
tracing backend.
operatorframework.io/cluster-monitoring: "true"
Expand Down
8 changes: 8 additions & 0 deletions config/samples/community/tempo_v1alpha1_tempomonolithic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ spec:
storage:
traces:
backend: memory
resources:
limits:
cpu: "2"
memory: "2Gi"
jaegerui:
enabled: true
ingress:
enabled: true
resources:
limits:
cpu: "2"
memory: "2Gi"
8 changes: 8 additions & 0 deletions config/samples/openshift/tempo_v1alpha1_tempomonolithic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ spec:
storage:
traces:
backend: memory
resources:
limits:
cpu: "2"
memory: "2Gi"
jaegerui:
enabled: true
route:
enabled: true
resources:
limits:
cpu: "2"
memory: "2Gi"

0 comments on commit b334efd

Please sign in to comment.