Skip to content

Commit

Permalink
Breadcrumbs for ingester filesystem permissions
Browse files Browse the repository at this point in the history
Signed-off-by: Zach Leslie <zach.leslie@grafana.com>
  • Loading branch information
zalegrala committed Mar 27, 2023
1 parent fd662eb commit f6547f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion operations/jsonnet/microservices/ingester.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@
]) +
statefulset.mixin.spec.withPodManagementPolicy('Parallel') +
statefulset.mixin.spec.template.spec.withTerminationGracePeriodSeconds(1200) +
statefulset.mixin.spec.template.spec.securityContext.withFsGroup(10001) + // 10001 is the group ID assigned to Tempo in the Dockerfile
$.util.podPriority('high') +
(if with_anti_affinity then $.util.antiAffinity else {}),
(if with_anti_affinity then $.util.antiAffinity else {})
,

tempo_ingester_statefulset: $.newIngesterStatefulSet(target_name, self.tempo_ingester_container) + statefulset.mixin.spec.withReplicas($._config.ingester.replicas),

Expand Down

0 comments on commit f6547f1

Please sign in to comment.