generated from pravega/pravega-operator
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue 132: Shorten the service names generated by Bookkeeper Operator (…
…#139) * Provide support to configure headless service name Signed-off-by: anishakj <[email protected]> * Added documentation and e2e tests Signed-off-by: anishakj <[email protected]> * Fixed indentation Signed-off-by: anishakj <[email protected]> * Fixed typo Signed-off-by: anishakj <[email protected]>
- Loading branch information
Showing
15 changed files
with
82 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
## Configuration | ||
|
||
This document explains how to configure Pravega | ||
This document explains how to configure Bookkeeper | ||
|
||
* [RBAC](rbac.md) | ||
* [Use non-default service accounts](rbac.md#use-non-default-service-accounts) | ||
* [Installing on a Custom Namespace with RBAC enabled](rbac.md#installing-on-a-custom-namespace-with-rbac-enabled) | ||
* [Tune Bookkeeper Configuration](bookkeeper-options.md) | ||
* [Enable admission webhook](webhook.md) | ||
* [Configuring Service Name](service-configuration.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Configuring Bookkeeper Headless Service Name | ||
|
||
By default bookkeeper headless service name is configured as `[CLUSTER_NAME]-bookie-headless`. | ||
|
||
``` | ||
bookkeeper-bookie-headless ClusterIP None <none> 3181/TCP 4d15h | ||
``` | ||
But we can configure the headless service name as follows: | ||
|
||
``` | ||
helm install bookkeeper pravega/bookkeeper --set headlessSvcNameSuffix="headless" | ||
``` | ||
|
||
After installation services can be listed using `kubectl get svc` command. | ||
|
||
|
||
``` | ||
bookkeeper-headless ClusterIP None <none> 3181/TCP 4d15h | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters