Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/data-space-connector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ marketplace:
# -- configuration of the charging backend to be deployed
deployment:
image:
tag: 10.5.0
tag: 10.6.0

# -- should plugin support be enabled
plugins:
Expand Down Expand Up @@ -1020,7 +1020,7 @@ marketplace:
statefulset:
image:
repository: fiware/biz-ecosystem-logic-proxy
tag: "10.5.0-PRE-1"
tag: "10.7.0"
pullPolicy: Always


Expand Down
22 changes: 10 additions & 12 deletions k3s/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ managedMongo:
spec:
accessModes:
- ReadWriteOnce
storageClassName: default
storageClassName: local-path
resources:
requests:
storage: "1Gi"
Expand All @@ -564,7 +564,7 @@ managedMongo:
spec:
accessModes:
- ReadWriteOnce
storageClassName: default
storageClassName: local-path
Copy link
Collaborator

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?

Copy link
Collaborator Author

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

Copy link
Collaborator Author

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 default sc. I just revert that in f40ada1

resources:
requests:
storage: "1Gi"
Expand All @@ -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"
Copy link
Collaborator

Choose a reason for hiding this comment

The 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?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The 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
Expand All @@ -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:
Expand Down Expand Up @@ -651,9 +649,6 @@ marketplace:
path: /tmf-api/resourceInventoryManagement/v4

bizEcosystemLogicProxy:
statefulset:
image:
tag: 10.5.0-PRE-1
command:
- /prep/prep.sh
ingress:
Expand Down Expand Up @@ -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:
Expand Down
Loading