Skip to content

Commit

Permalink
Bump 0.1.2-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
jordojordo committed Sep 18, 2023
1 parent 91d690b commit 549c616
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/daphine/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ name: daphine
description: An API for streaming music and videos
type: application
home: 'https://github.com/jordojordo/daphine'
version: 0.1.0
appVersion: '0.1.0'
version: '0.1.2-rc1'
appVersion: '0.1.2-rc1'
4 changes: 2 additions & 2 deletions charts/daphine/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ spec:
nodeName: {{ default "local-node" .Values.nodeName }}
containers:
- name: {{ .Chart.Name }}-api
image: '{{ .Values.deployment.image.repository }}:{{ .Values.deployment.image.tag }}'
image: '{{ .Values.deployment.image.repository }}:{{ .Values.deployment.image.tag | default .Chart.AppVersion }}'
ports:
- containerPort: {{ .Values.service.port }}
env:
- name: PUPPETEER_SKIP_DOWNLOAD
value: "true"
# Frontend url
- name: CORS_ORIGIN
value: {{ .Values.frontend }}
value: {{ required "A valid frontend url is required." .Values.frontend }}
imagePullPolicy: {{ .Values.deployment.image.imagePullPolicy }}
volumeMounts:
# Mount the volume for the container
Expand Down

0 comments on commit 549c616

Please sign in to comment.