Skip to content

Commit

Permalink
Merge pull request #20 from kamu-data/release/data-access-panel
Browse files Browse the repository at this point in the history
App Data Panel
  • Loading branch information
zaychenko-sergei authored Apr 5, 2024
2 parents 19c37a5 + 7169367 commit 9be7d30
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 13 deletions.
4 changes: 2 additions & 2 deletions charts/kamu-api-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: kamu-api-server
description: API server component of the Kamu Compute Node
type: application
version: 0.17.1
appVersion: "0.17.1"
version: 0.18.0
appVersion: "0.18.0"
home: https://kamu.dev
icon: https://www.kamu.dev/images/kamu_logo_icon_bg_square.png
sources:
Expand Down
6 changes: 4 additions & 2 deletions charts/kamu-api-server/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ spec:
env:
- name: RUST_BACKTRACE
value: "1"
- name: KAMU_PROTOCOL_SCHEME
value: {{ .Values.app.apiExternalHttpScheme | quote }}
- name: KAMU_BASE_URL_REST
value: {{ .Values.app.apiBaseUrlRest | quote }}
- name: KAMU_BASE_URL_FLIGHTSQL
value: {{ .Values.app.apiBaseUrlFlightsql | quote }}
- name: KAMU_AUTH_GITHUB_CLIENT_ID
value: {{ .Values.app.authGithubClientId | quote }}
- name: KAMU_AUTH_GITHUB_CLIENT_SECRET
Expand Down
16 changes: 11 additions & 5 deletions charts/kamu-api-server/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@
"required": [
"config",
"datasetRepositoryUrl",
"apiExternalHttpScheme",
"authGithubClientId",
"authGithubClientSecret",
"jwtSecret"
"jwtSecret",
"apiBaseUrlRest",
"apiBaseUrlFlightsql"
],
"properties": {
"config": {
Expand All @@ -22,8 +23,13 @@
"type": "string",
"format": "uri"
},
"apiExternalHttpScheme": {
"type": "string"
"apiBaseUrlRest": {
"type": "string",
"format": "uri"
},
"apiBaseUrlFlightsql": {
"type": "string",
"format": "uri"
},
"authGithubClientId": {
"type": "string"
Expand Down Expand Up @@ -61,4 +67,4 @@
}
}
}
}
}
4 changes: 2 additions & 2 deletions charts/kamu-api-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ app:
# Example: "s3://repo.example.com.us-west-2/"
datasetRepositoryUrl: ""

# Specify "https" if the application is deployed behind a TLS-terminating reverse proxy, "http" otherwise
apiExternalHttpScheme: "https"
apiBaseUrlRest: ""
apiBaseUrlFlightsql: ""

# TODO: Move into secrets
authGithubClientId: ""
Expand Down
4 changes: 2 additions & 2 deletions charts/kamu-web-ui/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: kamu-web-ui
description: Web frontend component of the Kamu Compute Node
type: application
version: 0.17.0
appVersion: "0.17.0"
version: 0.17.1
appVersion: "0.17.1"
home: https://kamu.dev
icon: https://www.kamu.dev/images/kamu_logo_icon_bg_square.png
sources:
Expand Down

0 comments on commit 9be7d30

Please sign in to comment.