Skip to content

Commit

Permalink
v0.27.9
Browse files Browse the repository at this point in the history
  • Loading branch information
zaychenko-sergei committed Jul 1, 2024
1 parent 8422360 commit 29865f2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion charts/kamu-api-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: kamu-api-server
description: API server component of the Kamu Compute Node
type: application
version: 0.27.7
version: 0.27.9
appVersion: "0.27.1"
home: https://kamu.dev
icon: https://www.kamu.dev/images/kamu_logo_icon_bg_square.png
Expand Down
29 changes: 15 additions & 14 deletions charts/kamu-api-server/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,21 +74,8 @@ spec:
mountPath: /fetch-db-secret.sh
subPath: fetch-db-secret.sh
- name: run-db-migrations
mountPath: /scripts/run-db-migrations.sh
mountPath: /run-db-migrations.sh
subPath: run-db-migrations.sh
volumes:
- name: fetch-db-secret
configMap:
name: db-scripts
items:
- key: fetch-db-secret.sh
path: fetch-db-secret.sh
- name: run-db-migrations
configMap:
name: db-scripts
items:
- key: run-db-migrations.sh
path: run-db-migrations.sh
containers:
- name: {{ .Chart.Name }}
securityContext:
Expand Down Expand Up @@ -157,6 +144,20 @@ spec:
- name: configs
configMap:
name: {{ include "kamu-api-server.fullname" . }}-{{ template "kamu-api-server.config.sha" . }}
- name: fetch-db-secret
configMap:
name: db-scripts
defaultMode: 0755
items:
- key: fetch-db-secret.sh
path: fetch-db-secret.sh
- name: run-db-migrations
configMap:
name: db-scripts
defaultMode: 0755
items:
- key: run-db-migrations.sh
path: run-db-migrations.sh
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down

0 comments on commit 29865f2

Please sign in to comment.