Skip to content

Commit

Permalink
compact: Make service headless
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Hipwell <steve.hipwell@gmail.com>
  • Loading branch information
stevehipwell committed Sep 8, 2021
1 parent cfd8d78 commit 6aef570
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel

### Changed

-
- [#247](https://github.com/thanos-io/kube-thanos/pull/247) Make Compact service headless.

### Added

Expand Down
1 change: 1 addition & 0 deletions examples/all/manifests/compact-shard0-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ metadata:
name: thanos-compact-0
namespace: thanos
spec:
clusterIP: None
ports:
- name: http
port: 10902
Expand Down
1 change: 1 addition & 0 deletions examples/all/manifests/compact-shard1-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ metadata:
name: thanos-compact-1
namespace: thanos
spec:
clusterIP: None
ports:
- name: http
port: 10902
Expand Down
1 change: 1 addition & 0 deletions examples/all/manifests/compact-shard2-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ metadata:
name: thanos-compact-2
namespace: thanos
spec:
clusterIP: None
ports:
- name: http
port: 10902
Expand Down
1 change: 1 addition & 0 deletions examples/all/manifests/thanos-compact-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ metadata:
name: thanos-compact
namespace: thanos
spec:
clusterIP: None
ports:
- name: http
port: 10902
Expand Down
1 change: 1 addition & 0 deletions jsonnet/kube-thanos/kube-thanos-compact.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ function(params) {
labels: tc.config.commonLabels,
},
spec: {
clusterIP: 'None',
selector: tc.config.podLabelSelector,
ports: [
{
Expand Down

0 comments on commit 6aef570

Please sign in to comment.