Skip to content

Commit

Permalink
remaining sts use parallel mgmt policy (#3181)
Browse files Browse the repository at this point in the history
  • Loading branch information
owen-d authored Jan 15, 2021
1 parent c175ad0 commit 40a637e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions production/ksonnet/loki/ingester.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
ingester_statefulset: if $._config.stateful_ingesters then
statefulSet.new('ingester', 3, [$.ingester_container], $.ingester_data_pvc) +
statefulSet.mixin.spec.withServiceName('ingester') +
statefulSet.mixin.spec.withPodManagementPolicy('Parallel') +
$.config_hash_mixin +
$.util.configVolumeMount('loki', '/etc/loki/config') +
$.util.configVolumeMount('overrides', '/etc/loki/overrides') +
Expand Down
1 change: 1 addition & 0 deletions production/ksonnet/loki/querier.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
querier_statefulset: if $._config.stateful_queriers then
statefulSet.new('querier', 3, [$.querier_container], $.querier_data_pvc) +
statefulSet.mixin.spec.withServiceName('querier') +
statefulSet.mixin.spec.withPodManagementPolicy('Parallel') +
$.config_hash_mixin +
$.util.configVolumeMount('loki', '/etc/loki/config') +
$.util.configVolumeMount('overrides', '/etc/loki/overrides') +
Expand Down

0 comments on commit 40a637e

Please sign in to comment.