-
Notifications
You must be signed in to change notification settings - Fork 15
feat: add gateway-api support #299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
l0wl3vel
wants to merge
19
commits into
master
Choose a base branch
from
feat/gatewayapi
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+215
−50
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
f09a0f2
WIP feat: add gatewayapi support
l0wl3vel c2418f2
feat: add https gateway listener with self-signed cert
l0wl3vel 07f8688
feat: enable zitadel httproute
l0wl3vel 25d1f1f
feat: move kind and sonic containerlab to dedicated network
l0wl3vel 15c3b35
fix: bind zitadel only to https listener
l0wl3vel 01425fa
feat: expose metal-api gRPC endpoint
l0wl3vel 2f2ee49
feat: expose nsq endpoint
l0wl3vel f2ac045
fix: improve naming consistency
l0wl3vel 6a250aa
fix: use valid hosts for gateway certificates
l0wl3vel 331f52d
fix: move gateway configuration into their respective sections
l0wl3vel 9b8e008
fix: undo changes to gardener ingress ips
l0wl3vel 38b7629
fix: fix incorrect use of gateway instead of ingress controller
l0wl3vel 9839e7d
feat: remove ingress-nginx exposed ports
l0wl3vel 0711a18
fix: change mgmt network to mini_lab_internal
l0wl3vel 91b7b99
fix: remove helm chart override
l0wl3vel b5bca5b
fix: make minilab internal network a /16 prefix again
l0wl3vel 679b097
fix: set KIND_EXPERIMENTAL_DOCKER_NETWORK on first run
l0wl3vel ffc4120
feat: move certs
l0wl3vel 948ee84
fix: run prepare role before deploying envoy gw
l0wl3vel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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 hidden or 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,7 +1,7 @@ | ||
| { | ||
| "CN": "metal-api", | ||
| "hosts": [ | ||
| "172.17.0.1", | ||
| "172.42.0.42", | ||
| "203.0.113.1" | ||
| ], | ||
| "key": { | ||
|
|
||
This file contains hidden or 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,20 @@ | ||
| { | ||
| "CN": "metal-api", | ||
| "hosts": [ | ||
| "api.172.42.0.42.nip.io", | ||
| "v2.api.172.42.0.42.nip.io" | ||
| ], | ||
| "key": { | ||
| "algo": "rsa", | ||
| "size": 4096 | ||
| }, | ||
| "names": [ | ||
| { | ||
| "C": "DE", | ||
| "L": "Munich", | ||
| "O": "metal-stack", | ||
| "OU": "DevOps", | ||
| "ST": "Bavaria" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or 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,6 +1,6 @@ | ||
| --- | ||
| # Do not change these values | ||
| metal_api_image_tag: dev | ||
| metal_core_image_name: 172.17.0.1:5000/metalstack/metal-core | ||
| metal_core_image_name: 172.42.0.42:5000/metalstack/metal-core | ||
| metal_core_image_tag: dev | ||
| metal_hammer_image_url: http://172.17.0.1:20015/metal-hammer-initrd.img.lz4 | ||
| metal_hammer_image_url: http://172.42.0.42:20015/metal-hammer-initrd.img.lz4 |
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -11,7 +11,7 @@ | |
| } | ||
| }, | ||
| "DNS_SERVER": { | ||
| "172.17.0.1": {}, | ||
| "172.42.0.1": {}, | ||
| "1.1.1.1": {}, | ||
| "1.0.0.1": {} | ||
| }, | ||
|
|
||
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -11,7 +11,7 @@ | |
| } | ||
| }, | ||
| "DNS_SERVER": { | ||
| "172.17.0.1": {}, | ||
| "172.42.0.1": {}, | ||
| "1.1.1.1": {}, | ||
| "1.0.0.1": {} | ||
| }, | ||
|
|
||
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -11,7 +11,7 @@ | |
| } | ||
| }, | ||
| "DNS_SERVER": { | ||
| "172.17.0.1": {}, | ||
| "172.42.0.1": {}, | ||
| "1.1.1.1": {}, | ||
| "1.0.0.1": {} | ||
| }, | ||
|
|
||
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -11,7 +11,7 @@ | |
| } | ||
| }, | ||
| "DNS_SERVER": { | ||
| "172.17.0.1": {}, | ||
| "172.42.0.1": {}, | ||
| "1.1.1.1": {}, | ||
| "1.0.0.1": {} | ||
| }, | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,4 +1,4 @@ | ||
| --- | ||
| ingress_tcp_service_exposals: | ||
| "4150": "{{ metal_control_plane_namespace }}/nsqd:4150" | ||
| "50051": "{{ metal_control_plane_namespace }}/metal-api:50051" | ||
| gateway_tcp_listeners: | ||
| nsq: 4150 | ||
| metal-api-grpc: 50051 |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be nice to add a NOTEWORTHY section and mention that the docker network will get created now in the mini-lab.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, sounds good to me