Skip to content

Commit

Permalink
Merge pull request #61 from bci-oss/feature/adjust-default-config-dis…
Browse files Browse the repository at this point in the history
…able-seperate-graphdb

Adjust default configuration
  • Loading branch information
SebastianBezold committed Feb 28, 2023
2 parents 39f1264 + 195d492 commit 2215bb6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
2 changes: 1 addition & 1 deletion charts/semantic-hub/Chart.yaml
Expand Up @@ -3,5 +3,5 @@ name: semantic-hub
description: Helm Chart for the Catena-X Semantic Hub Application

type: application
version: 0.1.6
version: 0.1.7
appVersion: 0.1.0-M3
22 changes: 8 additions & 14 deletions charts/semantic-hub/values.yaml
Expand Up @@ -19,12 +19,12 @@
###############################################################

hub:
image: semantic-hub:0.1.0-M2
image: ghcr.io/catenax-ng/semantic-hub:0.1.0-M3
imagePullPolicy: IfNotPresent
replicaCount: 1
containerPort: 4242
## Use in-memory triple store that is not persistent
embeddedTripleStore: false
embeddedTripleStore: true
host: minikube
## If 'authentication' is set to false, no OAuth authentication is enforced
authentication: false
Expand All @@ -37,21 +37,15 @@ hub:
type: ClusterIP
ingress:
## Enable ingress for the Semantic Hub
enabled: true
enabled: false
## Enable TLS (e.g. by using cert-manager)
tls: true
## The secret name that contains the necessary 'tls.crt' and 'tls.key' entries
## When using cert-manager this secret is created automatically
tlsSecretName: hub-certificate-secret
tlsSecretName: ""
urlPrefix: /semantics/hub
className: nginx
annotations:
cert-manager.io/cluster-issuer: selfsigned-cluster-issuer
nginx.ingress.kubernetes.io/rewrite-target: /$2
nginx.ingress.kubernetes.io/use-regex: "true"
nginx.ingress.kubernetes.io/enable-cors: "true"
nginx.ingress.kubernetes.io/cors-allow-credentials: "true"
nginx.ingress.kubernetes.io/x-forwarded-prefix: /semantics/hub
className: ""
annotations: []
resources:
limits:
memory: "1024Mi"
Expand All @@ -60,8 +54,8 @@ hub:

graphdb:
## Include Fuski deployment or deploy separately
enabled: true
image: "jena-fuseki:4.1.0"
enabled: false
image: ghcr.io/catenax-ng/jena-fuseki:4.1.0
imagePullPolicy: IfNotPresent
replicaCount: 1
containerPort: 3030
Expand Down

0 comments on commit 2215bb6

Please sign in to comment.