-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: numaflow server start args in a configmap (#1311)
Signed-off-by: Derek Wang <[email protected]>
- Loading branch information
Showing
14 changed files
with
413 additions
and
18 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
27 changes: 27 additions & 0 deletions
27
config/base/numaflow-server/numaflow-server-cmd-params-config.yaml
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,27 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: numaflow-server-cmd-params-config | ||
data: | ||
### Whether to disable TLS. | ||
# server.insecure: "false" | ||
# | ||
### Port to listen on, defaults to 8443 or 8080 if insecure is set. | ||
# server.port: "8443" | ||
# | ||
### Whether to run in namespaced scope, defaults to false. | ||
# server.namespaced: "false" | ||
# | ||
### The namespace that the server watches when "server.namespaced" is true. | ||
# server.managed.namespace=numaflow-system | ||
### Base href for Numaflow server, defaults to '/'. | ||
# server.base.href: "/" | ||
# | ||
### Whether to disable authentication and authorization, defaults to false. | ||
server.disable.auth: "true" | ||
# | ||
### The address of the Dex server for authentication. | ||
# server.dex.server: http://numaflow-dex-server:5556/dex | ||
# | ||
### The external address of the Numaflow server. This is needed when using Dex for authentication. | ||
# server.address=https://localhost:8443 |
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
Oops, something went wrong.