Skip to content

Commit

Permalink
Merge branch 'main' into fix-app-template
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinBisson committed Sep 25, 2024
2 parents 599a825 + 91a1ed5 commit 648ed29
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2.1
orbs:
architect: giantswarm/architect@5.1.1
architect: giantswarm/architect@5.8.0

workflows:
package-and-push-chart-on-tag:
Expand Down
4 changes: 2 additions & 2 deletions helm/alloy-gateway/templates/alloy-gateway-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
data:
values: |
alloy:
{{- .Values.alloy | nindent 6 }}
{{- .Values.alloy | toYaml | nindent 6 }}
networkPolicy:
{{- .Values.networkPolicy | nindent 6 }}
{{- .Values.networkPolicy | toYaml | nindent 6 }}
4 changes: 2 additions & 2 deletions helm/alloy-gateway/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"type": "object",
"properties": {
"alloy": {
"type": "string"
"type": "object"
},
"networkPolicy": {
"type": "string"
"type": "object"
}
}
}
4 changes: 2 additions & 2 deletions helm/alloy-gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
## We need to put the whole configuration in a single string.
## This will allow us to replace this alloy gateway app with the use of the alloy-app.
## This is waiting for https://github.com/giantswarm/roadmap/issues/3682 to be fixed
alloy: ""
networkPolicy: ""
alloy: {}
networkPolicy: {}

0 comments on commit 648ed29

Please sign in to comment.