Skip to content

XFSC-AAS Demo [experimental] #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 15 commits into from
Binary file added demos/gaia-x-security/superset-assets.zip
Binary file not shown.
51 changes: 51 additions & 0 deletions stacks/gaia-x-security/aas.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
---
apiVersion: v1
kind: Service
metadata:
name: auth-server
labels:
app: aas
spec:
ports:
- name: http
port: 9000
targetPort: 9000
selector:
app: aas
type: NodePort
---
apiVersion: v1
kind: Pod
metadata:
name: aas
labels:
app: aas
spec:
containers:
- name: aas
image: oci.stackable.tech/sandbox/xfsc-aas:latest
ports:
- name: web
containerPort: 9000
protocol: TCP
env:
- name: SPRING_PROFILES_ACTIVE
value: prod
- name: SPRING_DATASOURCE_URL
value: jdbc:postgresql://postgresql-aas:5432/aas
- name: SPRING_DATASOURCE_USERNAME
value: aas
- name: SPRING_DATASOURCE_PASSWORD
value: aas
- name: AAS_IAM_BASEURI
value: http://key-server:8080
- name: AAS_TSA_URL
value: http://tsa:5000
- name: AAS_OIDC_ISSUER
value: http://auth-server:9000
- name: AAS_CACHE_TTL
value: 5m
- name: LOGGING_LEVEL_EU_XFSC_AAS
value: DEBUG
- name: AAS_INVITATION_URI
value: http://localhost:5000/requests?
Loading