-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add traefik ingressroute Signed-off-by: Sunny Yip <[email protected]> * lower minio mem request Signed-off-by: Sunny Yip <[email protected]> * update ingressroute enable param Signed-off-by: Sunny Yip <[email protected]> * add alb-oidc-secret read role Signed-off-by: Sunny Yip <[email protected]> * undeploy alb secret read role Signed-off-by: Sunny Yip <[email protected]> * clean up ingress yaml Signed-off-by: Sunny Yip <[email protected]> * bump version Signed-off-by: Sunny Yip <[email protected]> * fix white spaces Signed-off-by: Sunny Yip <[email protected]> * fix linting error Signed-off-by: Sunny Yip <[email protected]> * remove traefik ingress defaults Signed-off-by: Sunny Yip <[email protected]> * add support to create nodeport service for gql server Signed-off-by: Sunny Yip <[email protected]> * update README Signed-off-by: Sunny Yip <[email protected]> * check in test values file Signed-off-by: Sunny Yip <[email protected]> * fix linting test Signed-off-by: Sunny Yip <[email protected]> * tidy up test workflow Signed-off-by: Sunny Yip <[email protected]> --------- Signed-off-by: Sunny Yip <[email protected]>
- Loading branch information
Showing
10 changed files
with
110 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ maintainers: | |
email: [email protected] | ||
|
||
type: application | ||
version: 0.2.7 | ||
appVersion: "v0.5.0" | ||
version: 0.2.8 | ||
appVersion: "v0.5.1" | ||
|
||
dependencies: | ||
- name: nats | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,7 @@ | |
guac: | ||
sampleData: | ||
ingest: true | ||
|
||
graphqlServer: | ||
service: | ||
createNodePortService: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{{- if .Values.guac.traefikIngressRoute.enabled -}} | ||
--- | ||
apiVersion: traefik.containo.us/v1alpha1 | ||
kind: IngressRoute | ||
metadata: | ||
name: {{ .Release.Namespace }} | ||
namespace: {{ .Release.Namespace }} | ||
spec: | ||
entryPoints: | ||
{{- range .Values.guac.traefikIngressRoute.entryPoints }} | ||
- {{ . | toYaml | indent 6 | trim }} | ||
{{- end }} | ||
routes: | ||
- kind: Rule | ||
match: (Headers(`{{ .Values.guac.traefikIngressRoute.hostMatchingHeader }}`, `{{ .Values.guac.traefikIngressRoute.apiHostname }}`) && Path(`{{ .Values.guac.traefikIngressRoute.gqlPath }}`)) | ||
services: | ||
- kind: Service | ||
name: graphql-server | ||
namespace: {{ .Release.Namespace }} | ||
port: 8080 | ||
scheme: http | ||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Copyright Kusari, Inc. and contributors | ||
# Licensed under the MIT license. See LICENSE file in the project root for details. | ||
guac: | ||
graphqlServer: | ||
service: | ||
createNodePortService: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters