-
Notifications
You must be signed in to change notification settings - Fork 11
chore(local-deployment): update marketplace local deployment #96
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
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -555,7 +555,7 @@ managedMongo: | |
| spec: | ||
| accessModes: | ||
| - ReadWriteOnce | ||
| storageClassName: default | ||
| storageClassName: local-path | ||
| resources: | ||
| requests: | ||
| storage: "1Gi" | ||
|
|
@@ -564,7 +564,7 @@ managedMongo: | |
| spec: | ||
| accessModes: | ||
| - ReadWriteOnce | ||
| storageClassName: default | ||
| storageClassName: local-path | ||
| resources: | ||
| requests: | ||
| storage: "1Gi" | ||
|
|
@@ -581,14 +581,13 @@ marketplace: | |
| export BAE_LP_SIOP_CLIENT_ID=$(echo ${DID}) | ||
|
|
||
| wget http://did-helper:3002/did-material/private-key.pem | ||
| export BAE_LP_SIOP_PRIVATE_KEY=$(openssl ec -in private-key.pem -noout -text | grep 'priv:' -A 3 | tail -n +2 | tr -d ':\n ') | ||
| echo ${BAE_LP_SIOP_PRIVATE_KEY} | ||
| export BAE_LP_SIOP_PRIVATE_KEY_PEM="$PWD/private-key.pem" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does the updated version of the bae include a fix for reading that key?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, we contribute to that change and it was released in 10.6.0, because we encounter issues with that openssl command. |
||
| echo ${BAE_LP_SIOP_PRIVATE_KEY_PEM} | ||
| /entrypoint.sh | ||
|
|
||
| siop: | ||
| verifier: | ||
| host: https://provider-verifier.io | ||
| callbackURL: https://provider-verifier.io/auth/vc/callback | ||
| allowedRoles: | ||
| - seller | ||
| - customer | ||
|
|
@@ -599,13 +598,12 @@ marketplace: | |
|
|
||
| externalUrl: https://marketplace.127.0.0.1.nip.io | ||
|
|
||
| bizEcosystemChargingBackend: | ||
| deployment: | ||
| image: | ||
| tag: 10.5.0 | ||
| bizEcosystemChargingBackend: | ||
| extraEnvVars: | ||
| - name: BAE_CB_CUSTOMER_BILL | ||
| value: "http://provider-tm-forum-api-customer-bill-management:8080/tmf-api/customerBillManagement/v4" | ||
| - name: BAE_CB_PARTY | ||
| value: "http://dsc-provider-tm-forum-api-party-catalog:8080/tmf-api/party/v4" | ||
|
|
||
| bizEcosystemApis: | ||
| tmForum: | ||
|
|
@@ -651,9 +649,6 @@ marketplace: | |
| path: /tmf-api/resourceInventoryManagement/v4 | ||
|
|
||
| bizEcosystemLogicProxy: | ||
| statefulset: | ||
| image: | ||
| tag: 10.5.0-PRE-1 | ||
| command: | ||
| - /prep/prep.sh | ||
| ingress: | ||
|
|
@@ -682,6 +677,9 @@ marketplace: | |
| value: "0" | ||
| - name: HTTPS_PROXY | ||
| value: "http://squid-proxy.infra.svc.cluster.local:8888" | ||
| - name: BAE_LP_BILLING_ENGINE_URL | ||
| value: "http://dsc-provider-biz-ecosystem-charging-backend.provider.svc.cluster.local:8006/charging/api/orderManagement/orders/preview/" | ||
|
|
||
|
|
||
| keycloak: | ||
| ingress: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually local deployment uses local-path SC. I don't know how was it working before
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, you were right, it is not local-path because it uses static provisioning of PVs using
defaultsc. I just revert that in f40ada1