Skip to content

Commit

Permalink
Kamu Web UI v0.31.0: terms of service feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
zaychenko-sergei committed Nov 22, 2024
1 parent 81f3260 commit 013317d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
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.30.0
appVersion: "0.30.0"
version: 0.31.0
appVersion: "0.31.0"
home: https://kamu.dev
icon: https://www.kamu.dev/images/kamu_logo_icon_bg_square.png
sources:
Expand Down
7 changes: 6 additions & 1 deletion charts/kamu-web-ui/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@
"type": "object",
"required": [
"enableLogout",
"enableScheduling"
"enableScheduling",
"enableDatasetEnvVarsManagment",
"enableTermsOfService"
],
"properties": {
"enableLogout": {
Expand All @@ -53,6 +55,9 @@
},
"enableDatasetEnvVarsManagment": {
"type": "boolean"
},
"enableTermsOfService": {
"type": "boolean"
}
}
},
Expand Down
19 changes: 13 additions & 6 deletions charts/kamu-web-ui/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@ app:
enableLogout: true
enableScheduling: true
enableDatasetEnvVarsManagment: true
enableTermsOfService: true

###############################################################################
# Pod
###############################################################################

replicaCount: 1

resources: {}
resources:
{}
# limits:
# cpu: 100m
# memory: 128Mi
Expand Down Expand Up @@ -64,10 +66,12 @@ livenessProbe:

podAnnotations: {}

podSecurityContext: {}
podSecurityContext:
{}
# fsGroup: 2000

securityContext: {}
securityContext:
{}
# capabilities:
# drop:
# - ALL
Expand Down Expand Up @@ -103,15 +107,18 @@ service:
ingress:
enabled: false
className: ""
annotations: {}
annotations:
{}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts: []
hosts:
[]
# - host: chart-example.local
# paths:
# - path: /
# pathType: ImplementationSpecific
tls: []
tls:
[]
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
Expand Down

0 comments on commit 013317d

Please sign in to comment.