We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6143a54 commit fac3177Copy full SHA for fac3177
production/ksonnet/loki/multi-zone.libsonnet
@@ -100,8 +100,8 @@ local rolloutOperator = import 'rollout-operator.libsonnet';
100
},
101
)),
102
103
- newIngesterZoneStatefulSet(zone, container)::
104
- local name = '%(prefix)s-%(zone)s' % { prefix: $._config.multi_zone_ingester_name_prefix, zone: zone };
+ newIngesterZoneStatefulSet(zone, container, name_prefix='')::
+ local name = '%(prefix)s-%(zone)s' % { prefix: if name_prefix == '' then $._config.multi_zone_ingester_name_prefix else name_prefix, zone: zone };
105
106
self.newIngesterStatefulSet(name, container, with_anti_affinity=false) +
107
statefulSet.mixin.metadata.withLabels({ 'rollout-group': 'ingester' }) +
0 commit comments