-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: switch from envoy gateway to services/ingress (#672)
Signed-off-by: Jeromy Cannon <jeromy@swirldslabs.com>
- Loading branch information
1 parent
841bc53
commit e44e5b2
Showing
17 changed files
with
62 additions
and
280 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
8 changes: 0 additions & 8 deletions
8
charts/fullstack-cluster-setup/templates/gateway-api/fst-gateway.yaml
This file was deleted.
Oops, something went wrong.
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
10 changes: 6 additions & 4 deletions
10
...tes/gateway-api/certificate-requests.yaml → ...es/cert-manager/certificate-requests.yaml
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 |
---|---|---|
@@ -1,20 +1,22 @@ | ||
{{- if $.Values.gatewayApi.gateway.listeners.hederaExplorer.tlsEnabled }} | ||
{{- if $.Values.cloud.selfSignedClusterIssuer.enabled }} | ||
{{- if index $.Values "hedera-explorer" "enabled" | eq true }} | ||
apiVersion: cert-manager.io/v1 | ||
kind: Certificate | ||
metadata: | ||
name: {{ $.Values.gatewayApi.gateway.tlsClusterIssuerName }}-ca-secret-hedera-explorer | ||
name: self-signed-ca-secret-hedera-explorer | ||
namespace: {{ default $.Release.Namespace $.Values.global.namespaceOverride }} | ||
spec: | ||
isCA: false | ||
commonName: {{ $.Values.deployment.hederaExplorer.hostname }} | ||
dnsNames: | ||
- {{ $.Values.deployment.hederaExplorer.hostname }} | ||
secretName: {{ $.Values.gatewayApi.gateway.tlsClusterIssuerName }}-ca-secret-hedera-explorer | ||
secretName: self-signed-ca-secret-hedera-explorer | ||
privateKey: | ||
algorithm: RSA | ||
size: 3072 | ||
issuerRef: | ||
name: {{ $.Values.gatewayApi.gateway.tlsClusterIssuerName }} | ||
name: fst-self-signed-cluster-issuer | ||
kind: ClusterIssuer | ||
group: cert-manager.io | ||
{{- end }} | ||
{{- 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
25 changes: 0 additions & 25 deletions
25
charts/fullstack-deployment/templates/gateway-api/envoy-grpc-web-routes.yaml
This file was deleted.
Oops, something went wrong.
104 changes: 0 additions & 104 deletions
104
charts/fullstack-deployment/templates/gateway-api/gateway.yaml
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
charts/fullstack-deployment/templates/gateway-api/haproxy-grpc-routes.yaml
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
charts/fullstack-deployment/templates/gateway-api/hedera-explorer-route.yaml
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
charts/fullstack-deployment/templates/gateway-api/network-node-grpc-routes.yaml
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
charts/fullstack-deployment/templates/ingress/ingress-class.yaml
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,8 @@ | ||
{{- if $.Values.cloud.haproxyIngressController.enabled }} | ||
apiVersion: networking.k8s.io/v1 | ||
kind: IngressClass | ||
metadata: | ||
name: {{ index $.Values "hedera-explorer" "ingress" "className" }} | ||
spec: | ||
controller: haproxy-ingress.github.io/controller | ||
{{- 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
Oops, something went wrong.