Closed
Conversation
majst01
commented
Jul 25, 2024
majst01
commented
Jul 25, 2024
Comment on lines
+143
to
+155
| # IPv6 | ||
| .PHONY: _privatenet6 | ||
| _privatenet6: env | ||
| docker compose run $(DOCKER_COMPOSE_TTY_ARG) metalctl network list --name user-private-network-6 | grep user-private-network-6 || docker compose run $(DOCKER_COMPOSE_TTY_ARG) metalctl network allocate --partition mini-lab --project 00000000-0000-0000-0000-000000000000 --name user-private-network-6 --addressfamily ipv6 | ||
|
|
||
| .PHONY: machine6 | ||
| machine6: _privatenet6 | ||
| docker compose run $(DOCKER_COMPOSE_TTY_ARG) metalctl machine create --description test6 --name test6 --hostname test6 --project 00000000-0000-0000-0000-000000000000 --partition mini-lab --image $(MACHINE_OS) --size v1-small-x86 --networks $(shell docker compose run $(DOCKER_COMPOSE_TTY_ARG) metalctl network list --name user-private-network-6 -o template --template '{{ .id }}') | ||
|
|
||
| .PHONY: firewall6 | ||
| firewall6: _ips _privatenet6 | ||
| docker compose run $(DOCKER_COMPOSE_TTY_ARG) metalctl firewall create --description fw --name fw --hostname fw --project 00000000-0000-0000-0000-000000000000 --partition mini-lab --image firewall-ubuntu-3.0 --size v1-small-x86 --networks internet-ipv6-mini-lab,$(shell docker compose run $(DOCKER_COMPOSE_TTY_ARG) metalctl network list --name user-private-network-6 -o template --template '{{ .id }}') | ||
|
|
Contributor
Author
There was a problem hiding this comment.
Probably not required anymore
majst01
commented
Jul 25, 2024
majst01
commented
Jul 25, 2024
… dualstack-support
f53cf37 to
57fc27a
Compare
majst01
commented
Jul 25, 2024
10 tasks
Contributor
Author
|
firewall does not get a ipv6 address in the internet network |
… dualstack-support
Contributor
Author
Because a fixed IPv4 address is assigned during create |
6718f21 to
9dd32fb
Compare
Contributor
Author
|
replaced by #208 |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
replaces #175