-
Notifications
You must be signed in to change notification settings - Fork 9
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 <sunny@kusari.dev> * lower minio mem request Signed-off-by: Sunny Yip <sunny@kusari.dev> * update ingressroute enable param Signed-off-by: Sunny Yip <sunny@kusari.dev> * add alb-oidc-secret read role Signed-off-by: Sunny Yip <sunny@kusari.dev> * undeploy alb secret read role Signed-off-by: Sunny Yip <sunny@kusari.dev> * clean up ingress yaml Signed-off-by: Sunny Yip <sunny@kusari.dev> * bump version Signed-off-by: Sunny Yip <sunny@kusari.dev> * fix white spaces Signed-off-by: Sunny Yip <sunny@kusari.dev> * fix linting error Signed-off-by: Sunny Yip <sunny@kusari.dev> * remove traefik ingress defaults Signed-off-by: Sunny Yip <sunny@kusari.dev> * add support to create nodeport service for gql server Signed-off-by: Sunny Yip <sunny@kusari.dev> * update README Signed-off-by: Sunny Yip <sunny@kusari.dev> * check in test values file Signed-off-by: Sunny Yip <sunny@kusari.dev> * fix linting test Signed-off-by: Sunny Yip <sunny@kusari.dev> * tidy up test workflow Signed-off-by: Sunny Yip <sunny@kusari.dev> --------- Signed-off-by: Sunny Yip <sunny@kusari.dev>
- 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
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