Skip to content

Commit

Permalink
compact: Make service headless (#247)
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Hipwell <steve.hipwell@gmail.com>
  • Loading branch information
stevehipwell authored Sep 20, 2021
1 parent 24559b5 commit 1fe5b3b
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/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 examples/all/manifests/thanos-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/thanos-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/thanos-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 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 1fe5b3b

Please sign in to comment.