Skip to content

Commit

Permalink
Explicitly converting to json by helm
Browse files Browse the repository at this point in the history
  • Loading branch information
hectormachin committed Sep 15, 2023
1 parent 85bf532 commit 11f659e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions charts/swoop-bundle/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ dependencies:
condition: swoop-db-migration.enabled
version: "0.1.0"
repository: "https://element84.github.io/filmdrop-k8s-helm-charts/"
- name: swoop-api
condition: swoop-api.enabled
version: "0.1.0"
repository: "https://element84.github.io/filmdrop-k8s-helm-charts/"
- name: swoop-caboose
condition: swoop-caboose.enabled
version: "0.1.0"
repository: "https://element84.github.io/filmdrop-k8s-helm-charts/"
- name: swoop-conductor
condition: swoop-caboose.enabled
version: "0.1.0"
repository: "https://element84.github.io/filmdrop-k8s-helm-charts/"
# - name: swoop-api
# condition: swoop-api.enabled
# version: "0.1.0"
# repository: "https://element84.github.io/filmdrop-k8s-helm-charts/"
# - name: swoop-caboose
# condition: swoop-caboose.enabled
# version: "0.1.0"
# repository: "https://element84.github.io/filmdrop-k8s-helm-charts/"
# - name: swoop-conductor
# condition: swoop-caboose.enabled
# version: "0.1.0"
# repository: "https://element84.github.io/filmdrop-k8s-helm-charts/"
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ data:
url: {{ $stacApiEndpoint }}/collections/{{`{{ .parameters.feature.collection }}`}}/items
method: POST
body: |
{{`{{ .parameters.feature }}`}}
{{ `{{ .parameters.feature }}` | toJson }}
headers:
Content-Type: "application/json"
followRedirects: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ data:
url: {{ $stacApiEndpoint }}/collections/{{`{{ .parameters.feature.collection }}`}}/items
method: POST
body: |
{{`{{ .parameters.feature }}`}}
{{ `{{ .parameters.feature }}` | toJson }}
headers:
Content-Type: "application/json"
followRedirects: true
Expand Down

0 comments on commit 11f659e

Please sign in to comment.