Skip to content

Commit bede412

Browse files
authored
Merge pull request #95 from wujie1993/fix-bucket-port
jsonnet: fix bucket port
2 parents 42f10c5 + 0e527cf commit bede412

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

examples/all/manifests/thanos-bucket-deployment.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,18 @@ spec:
3939
failureThreshold: 4
4040
httpGet:
4141
path: /-/healthy
42-
port: 8080
42+
port: 10902
4343
scheme: HTTP
4444
periodSeconds: 30
4545
name: thanos-bucket
4646
ports:
47-
- containerPort: 8080
47+
- containerPort: 10902
4848
name: http
4949
readinessProbe:
5050
failureThreshold: 20
5151
httpGet:
5252
path: /-/ready
53-
port: 8080
53+
port: 10902
5454
scheme: HTTP
5555
periodSeconds: 5
5656
terminationGracePeriodSeconds: 120

examples/all/manifests/thanos-bucket-service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
spec:
1212
ports:
1313
- name: http
14-
port: 8080
14+
port: 10902
1515
targetPort: http
1616
selector:
1717
app.kubernetes.io/component: object-store-bucket-debugging

jsonnet/kube-thanos/kube-thanos-bucket.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ local k = import 'ksonnet/ksonnet.beta.4/k.libsonnet';
3131
service.new(
3232
tb.config.name,
3333
tb.config.podLabelSelector,
34-
[ports.newNamed('http', 8080, 'http')],
34+
[ports.newNamed('http', 10902, 'http')],
3535
) +
3636
service.mixin.metadata.withNamespace(tb.config.namespace) +
3737
service.mixin.metadata.withLabels(tb.config.commonLabels),

0 commit comments

Comments
 (0)