Skip to content

Commit

Permalink
fix(helm): fixed issue with the helm templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias Brunkow Moser committed May 10, 2024
1 parent c8e79f4 commit cce58cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions charts/digital-product-pass/templates/configmap-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: { { .Release.Name } }-backend-config
namespace: { { .Values.namespace } }
name: {{ .Release.Name }}-backend-config
namespace: {{ .Values.namespace }}
data:
application.yaml: |-
spring:
Expand Down
8 changes: 4 additions & 4 deletions charts/digital-product-pass/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ backend:
- leftOperand: "cx-policy:UsagePurpose"
operator: "odrl:eq"
rightOperand: "cx.circular.dpp:1"
prohibition: [ ]
obligation: [ ]
prohibition: []
obligation: []
digitalTwinRegistry:
endpoints:
search: "/lookup/shells"
Expand Down Expand Up @@ -241,8 +241,8 @@ backend:
- leftOperand: "cx-policy:UsagePurpose"
operator: "odrl:eq"
rightOperand: "cx.core.digitalTwinRegistry:1"
prohibition: [ ]
obligation: [ ]
prohibition: []
obligation: []
# -- discovery configuration
discovery:
# -- discovery finder configuration
Expand Down

0 comments on commit cce58cf

Please sign in to comment.