Skip to content

Latest commit

 

History

History
77 lines (62 loc) · 2.27 KB

File metadata and controls

77 lines (62 loc) · 2.27 KB

Tractus-X Knowledge Agents AAS Bridges (KA-AAS) Administration Guide

Deployment

Deployment can be done

Helm Chart for Sparql-To-AAS Bridge

A helm chart for deploying the bridge can be found under this folder.

It can be added to your umbrella chart.yaml by the following snippet

dependencies:
  - name: aas-bridge
    repository: https://eclipse-tractusx.github.io/charts/dev
    version: 1.14.24-SNAPSHOT
    alias: my-aas-bridge

and then installed using

helm dependency update

In your values.yml, you configure your specific instance of the conforming agent like this

aas-bridge:
  aas:
    persistence:
      # -- The sparql server
      sparql: http://oem-provider-agent:8082/sparql
    endpoints:
      default:
        path: "/"
  ingresses:
  - enabled: true
    hostname: *oemAasHost
    annotations:
      nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
#      nginx.ingress.kubernetes.io/ssl-passthrough: "true"
#      nginx.ingress.kubernetes.io/ssl-redirect: "true"
    endpoints:
      - default
    tls:
      enabled: true
    certManager:
      clusterIssuer: *clusterIssuer