Skip to content

Commit

Permalink
Add DeployAI Trust orion-ld
Browse files Browse the repository at this point in the history
  • Loading branch information
dwendland committed Jul 25, 2024
1 parent 15f7683 commit a6c0c0d
Show file tree
Hide file tree
Showing 3 changed files with 130 additions and 0 deletions.
18 changes: 18 additions & 0 deletions aws/apps/deployai/trust/orion-ld.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: orion-ld-trust
namespace: argocd
spec:
destination:
namespace: deployai
server: https://kubernetes.default.svc
project: default
source:
path: aws/deployai/trust/orion-ld
repoURL: https://github.com/FIWARE-Ops/fiware-gitops
targetRevision: HEAD
syncPolicy:
automated:
prune: true
selfHeal: true
12 changes: 12 additions & 0 deletions aws/deployai/trust/orion-ld/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
apiVersion: v2
name: orion-ld
description: Chart holder for argo-cd

type: application
version: 1.2.6
appVersion: "1.1.0"

dependencies:
- name: orion
version: 1.2.6
repository: https://fiware.github.io/helm-charts
100 changes: 100 additions & 0 deletions aws/deployai/trust/orion-ld/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
orion:
deployment:
image:
tag: 1.1.0
broker:
logging:
level: DEBUG
db:
auth:
user: root
mech: "SCRAM-SHA-1"
hosts:
- mongodb-trust
user: root
existingSecret:
name: mongodb-secret
key: mongodb-root-password
mongo:
# we want to use the individually deployed mongodb
enabled: false
initData:
initEnabled: true
hook: post-install, post-upgrade
entities:
- name: "onboarding.deployai.fiware.dev"
data: |
{
"@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld",
"id": "urn:ngsi-ld:TrustedIssuer:did:web:onboarding.deployai.fiware.dev",
"type": "TrustedIssuer",
"issuer": {
"type": "Property",
"value": "did:web:onboarding.deployai.fiware.dev"
},
"selfDescription": {
"type": "Property",
"value": {
"id": "did:web:onboarding.deployai.fiware.dev",
"type": "gx:LegalParticipant",
"gx:legalName": "DeployAI Marketplace Onboarding Service"
}
}
}
- name: "marketplace.deployai.fiware.dev"
data: |
{
"@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld",
"id": "urn:ngsi-ld:TrustedIssuer:did:web:marketplace.deployai.fiware.dev",
"type": "TrustedIssuer",
"issuer": {
"type": "Property",
"value": "did:web:marketplace.deployai.fiware.dev"
},
"selfDescription": {
"type": "Property",
"value": {
"id": "did:web:marketplace.deployai.fiware.dev",
"type": "gx:LegalParticipant",
"gx:legalName": "DeployAI Marketplace"
}
}
}
- name: "provider.deployai.fiware.dev"
data: |
{
"@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld",
"id": "urn:ngsi-ld:TrustedIssuer:did:web:provider.deployai.fiware.dev",
"type": "TrustedIssuer",
"issuer": {
"type": "Property",
"value": "did:web:provider.deployai.fiware.dev"
},
"selfDescription": {
"type": "Property",
"value": {
"id": "did:web:provider.deployai.fiware.dev",
"type": "gx:LegalParticipant",
"gx:legalName": "DeployAI Provider"
}
}
}
- name: "consumer.deployai.fiware.dev"
data: |
{
"@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld",
"id": "urn:ngsi-ld:TrustedIssuer:did:web:consumer.deployai.fiware.dev",
"type": "TrustedIssuer",
"issuer": {
"type": "Property",
"value": "did:web:consumer.deployai.fiware.dev"
},
"selfDescription": {
"type": "Property",
"value": {
"id": "did:web:consumer.deployai.fiware.dev",
"type": "gx:LegalParticipant",
"gx:legalName": "DeployAI Consumer"
}
}
}

0 comments on commit a6c0c0d

Please sign in to comment.