Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricve committed Nov 10, 2023
1 parent bd9908c commit 73bec39
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 10 deletions.
2 changes: 1 addition & 1 deletion charts/hub/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.47.0
version: 0.48.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 4 additions & 0 deletions charts/hub/templates/kerberos-hub/hub-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,10 @@ spec:
- name: STRIPE_KEY
value: "{{ .Values.kerberoshub.api.stripe.privateKey }}"

# OpenAI
- name: OPENAI_API_KEY
value: "{{ .Values.openai.apikey }}"

# MFA Issuer name (Will be shown when scanning in)
- name: MFA_ISSUER
value: "{{ .Values.kerberoshub.api.mfaIssuer }}"
Expand Down
4 changes: 4 additions & 0 deletions charts/hub/templates/kerberos-hub/hub-frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@ spec:
- name: MQTT_LEGACY_PORT
value: "{{ .Values.mqtt.legacy.port }}"

# OpenAI
- name: OPENAI_ENABLED
value: "{{ .Values.openai.enabled }}"

# Turn (Pion)
- name: TURN_SERVER
value: "{{ .Values.turn.host }}"
Expand Down
23 changes: 14 additions & 9 deletions charts/hub/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ turn:
username: "username1"
password: "password1"

# OpenAI integration, used for semantic search
openai:
enabled: false
apikey: "xxx"

# We have a kerberos vault component installed which contains all the
# recordings. Kerberos vault is queried to retrieve the recordings
# from the appropriate provider.
Expand Down Expand Up @@ -134,7 +139,7 @@ kerberoshub:
api:
repository: kerberos/hub-api
pullPolicy: IfNotPresent
tag: "1.0.1006757223"
tag: "1.0.1065879492"
replicas: 2
jwtSecret: "this-is-a-secret-please-change-to-random-string" # change to a random value, this is for generating JWT tokens.
schema: "https"
Expand Down Expand Up @@ -205,7 +210,7 @@ kerberoshub:
frontend:
repository: kerberos/hub-frontend
pullPolicy: IfNotPresent
tag: "1.0.1022558200"
tag: "1.0.1068219611"
replicas: 2
schema: "https"
url: "yourdomain.com"
Expand Down Expand Up @@ -319,7 +324,7 @@ kerberoshub:
cleanup:
repository: kerberos/hub-cleanup
pullPolicy: IfNotPresent
tag: "1.0.4098363473"
tag: "1.0.5360016926"
resources:
requests:
memory: 10Mi
Expand Down Expand Up @@ -461,11 +466,11 @@ kerberospipeline:
thumbnail:
repository: kerberos/pipe-thumbnail
pullPolicy: IfNotPresent
tag: "1.0.4216458235"
tag: "1.0.5413452408"
replicas: 3
quality: "70"
width: "250"
height: "250"
width: "600"
height: "600"
kerberosvault:
enabled: false # If you want to use Kerberos Vault to store the thumbnails
resources:
Expand All @@ -488,8 +493,8 @@ kerberospipeline:
enabled: false # Enable or disable the sprite generation 'true' or 'false
repository: kerberos/pipe-sprite
pullPolicy: IfNotPresent
tag: "1.0.4307157569"
replicas: 3
tag: "1.0.5413452673"
replicas: 5
interval: "1" # Number of secondes between each thumbnail in the sprite
width: "240" # Should not be changed for the moment (hard coded in UI)
height: "135" # Should not be changed for the moment (hard coded in UI)
Expand All @@ -499,4 +504,4 @@ kerberospipeline:
cpu: 500m
limits:
memory: 2Gi
cpu: 1000m
cpu: 1000m

0 comments on commit 73bec39

Please sign in to comment.