-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix cert ARNs, add external OWLS config
Signed-off-by: Carsten Schafer <[email protected]>
- Loading branch information
Carsten Schafer
authored and
Carsten Schafer
committed
Nov 10, 2023
1 parent
7196a48
commit f2bb115
Showing
5 changed files
with
192 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
36 changes: 36 additions & 0 deletions
36
chart/environment-values/values.openwifi-qa.owls-external.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,36 @@ | ||
# This helm values file is to be used when OWLS is run externally. | ||
owgw: | ||
services: | ||
owgw: | ||
type: LoadBalancer | ||
annotations: | ||
service.beta.kubernetes.io/aws-load-balancer-type: "nlb-ip" | ||
service.beta.kubernetes.io/aws-load-balancer-scheme: internet-facing | ||
service.beta.kubernetes.io/aws-load-balancer-healthcheck-port: "16102" | ||
service.beta.kubernetes.io/aws-load-balancer-backend-protocol: ssl | ||
service.beta.kubernetes.io/aws-load-balancer-ssl-cert: arn:aws:acm:ap-south-1:289708231103:certificate/2cc8c764-11fd-411d-bf7d-a93f488f3f6c | ||
service.beta.kubernetes.io/aws-load-balancer-ssl-ports: "16002,16003,17002" | ||
|
||
configProperties: | ||
simulatorid: 53494D020202 | ||
storage.type: postgresql | ||
storage.type.postgresql.host: owgw-pgsql | ||
storage.type.postgresql.database: owgw | ||
storage.type.postgresql.username: owgw | ||
storage.type.postgresql.password: owgw | ||
openwifi.certificates.allowmismatch: "true" | ||
|
||
resources: | ||
requests: | ||
cpu: 2000m | ||
memory: 3000Mi | ||
limits: | ||
cpu: 2000m | ||
memory: 3000Mi | ||
|
||
postgresql: | ||
enabled: true | ||
fullnameOverride: owgw-pgsql | ||
postgresqlDatabase: owgw | ||
postgresqlUsername: owgw | ||
postgresqlPassword: owgw |
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