-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support multiple services in ingress (#6)
- Loading branch information
Jordan Hoeft
authored
Feb 22, 2024
1 parent
f482f42
commit 8700729
Showing
5 changed files
with
57 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.bin | ||
.bin | ||
charts/**/charts |
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 |
---|---|---|
|
@@ -5,5 +5,5 @@ maintainers: | |
- name: Blockdaemon | ||
email: [email protected] | ||
type: application | ||
version: 0.1.2 | ||
version: 0.1.3 | ||
appVersion: "61.0.2" |
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
replicaCount: 1 | ||
index: 0 | ||
|
||
config: | ||
configFile: | | ||
[Player] | ||
Index = 0 | ||
PrivateKey = "replace me" | ||
[Database] | ||
DriverName = "sqlite3" | ||
DataSourceName = "/tmp/tsmdb" | ||
EncryptorMasterPassword = "ENCRYPTION_KEY" | ||
[SDKServer] | ||
Port = 8080 | ||
image: | ||
repository: <the name of the repository where tsm-node is stored> | ||
pullPolicy: IfNotPresent | ||
tag: "61.0.2" | ||
sdkService: | ||
ports: | ||
- port: 8080 | ||
name: sdk | ||
targetPort: 8080 | ||
- port: 9000 | ||
name: mpc | ||
targetPort: 9000 | ||
|
||
mpcService: | ||
enabled: false | ||
|
||
ingress: | ||
enabled: true | ||
className: "nginx" | ||
annotations: | ||
nginx.ingress.kubernetes.io/use-regex: "true" | ||
nginx.ingress.kubernetes.io/rewrite-target: /$1 | ||
hosts: | ||
- host: "tsm-sdk.example.com" | ||
paths: | ||
- path: /tsm0/(.*) | ||
pathType: ImplementationSpecific | ||
serviceName: tsm0-tsm-node | ||
port: 8080 | ||
- path: /tsm1/(.*) | ||
pathType: ImplementationSpecific | ||
serviceName: tsm1-tsm-node | ||
port: 8080 |
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