-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DeployAI: Add TIL as Trust-TIR with mysql
- Loading branch information
Showing
9 changed files
with
111 additions
and
144 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
aws/apps/deployai/trust/mongodb.yaml → aws/apps/deployai/trust/mysql.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
aws/apps/deployai/trust/orion-ld.yaml → aws/apps/deployai/trust/til.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
11 changes: 5 additions & 6 deletions
11
aws/deployai/trust/mongodb/Chart.yaml → aws/deployai/trust/mysql/Chart.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
apiVersion: v2 | ||
name: mongodb | ||
name: mysql | ||
description: Chart holder for argo-cd | ||
|
||
type: application | ||
version: 0.1.0 | ||
appVersion: "4.4.12" | ||
version: 9.4.4 | ||
appVersion: "8.0.31" | ||
|
||
dependencies: | ||
- name: mongodb | ||
version: 11.0.4 | ||
- name: mysql | ||
version: 9.4.4 | ||
repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
mysql: | ||
fullnameOverride: mysql-trust | ||
|
||
auth: | ||
existingSecret: mysql-secret | ||
|
||
rbac: | ||
create: true | ||
rules: | ||
- apiGroups: | ||
- security.openshift.io | ||
resourceNames: | ||
- anyuid | ||
resources: | ||
- securitycontextconstraints | ||
verbs: | ||
- use | ||
|
||
primary: | ||
persistence: | ||
size: 1Gi | ||
|
||
initdbScripts: | ||
create.sql: | | ||
CREATE DATABASE til; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
apiVersion: v2 | ||
name: trusted-issuers-list | ||
description: Chart holder for argo-cd | ||
|
||
type: application | ||
version: 0.3.5 | ||
appVersion: "0.0.3" | ||
|
||
dependencies: | ||
- name: trusted-issuers-list | ||
version: 0.3.5 | ||
repository: https://fiware.github.io/helm-charts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# Used as Trusted Issuers Registry of the data space | ||
trusted-issuers-list: | ||
|
||
# Image | ||
deployment: | ||
image: | ||
tag: 0.2.0 | ||
|
||
# Configure an Ingress or OpenShift Route | ||
ingress: | ||
til: | ||
enabled: false | ||
tir: | ||
enabled: false | ||
route: | ||
til: | ||
enabled: false | ||
host: til.deployai.fiware.dev | ||
tls: | ||
insecureEdgeTerminationPolicy: Redirect | ||
termination: edge | ||
certificate: | ||
issuer: | ||
kind: ClusterIssuer | ||
name: letsencrypt-aws-prod | ||
tir: | ||
enabled: true | ||
host: tir.deployai.fiware.dev | ||
tls: | ||
insecureEdgeTerminationPolicy: Redirect | ||
termination: edge | ||
certificate: | ||
issuer: | ||
kind: ClusterIssuer | ||
name: letsencrypt-aws-prod | ||
|
||
# Database config | ||
database: | ||
persistence: true | ||
host: mysql-trust | ||
name: til | ||
|
||
existingSecret: | ||
enabled: true | ||
name: mysql-secret | ||
key: mysql-root-password | ||
|
||
username: root | ||
|
||
initData: | ||
initEnabled: true | ||
hook: post-install,post-upgrade | ||
issuers: | ||
# allow ourself to issuer credentials | ||
- name: deployai-marketplace | ||
issuer: | ||
did: "did:web:marketplace.deployai.fiware.dev" | ||
credentials: [] | ||
- name: deployai-provider | ||
issuer: | ||
did: "did:web:provider.deployai.fiware.dev" | ||
credentials: [] | ||
- name: deployai-consumer | ||
issuer: | ||
did: "did:web:consumer.deployai.fiware.dev" |