Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Hoeft committed Feb 28, 2024
1 parent 5007439 commit 060c511
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions charts/tsm-audit-server/ci/basic.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
mongodb:
enabled: true
useStatefulSet: true
auth:
rootPassword: "<secret>"
disableJavascript: true
config:
configFile: |
[Database]
Host = "tsm-audit-mongodb:27017"
Username = "root"
Password = "<secret>"
[LogServer]
Port = 3000
PrivateKey = "<audit server private key>
[QueryServer]
Port = 8080
CertificateFile = "" #HTTPS disabled
CertificateKeyFile = "" # HTTP disabled
[TSM.demo]
Password = "<password>"
PublicKeys = [
"<node0 public key>",
"<node1 public key>",
]
image:
repository: "<image repo>"
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: "v1.1.0"

service:
type: NodePort

ingress:
enabled: true
className: "alb"
annotations:
alb.ingress.kubernetes.io/scheme: internet-facing
alb.ingress.kubernetes.io/certificate-arn: <acm cert arn>
alb.ingress.kubernetes.io/healthcheck-path: /ping
alb.ingress.kubernetes.io/success-codes: "204"
hosts:
- host: "tsm-audit.example.com"
paths:
- path: /
pathType: Prefix
port: 8080

0 comments on commit 060c511

Please sign in to comment.