forked from kubermatic/machine-controller
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add optional router id to openstack cloud config
Needed not by MC itself but by Metakube seed-cm, which uses this structure to generate the seed user cluster cloud config secret
- Loading branch information
Showing
3 changed files
with
64 additions
and
3 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
24 changes: 24 additions & 0 deletions
24
pkg/cloudprovider/provider/openstack/types/testdata/config-with-router-id.golden
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,24 @@ | ||
[Global] | ||
auth-url = "https://127.0.0.1:8443" | ||
username = "admin" | ||
password = "password" | ||
tenant-name = "Test" | ||
tenant-id = "" | ||
domain-name = "Default" | ||
region = "eu-central1" | ||
|
||
[LoadBalancer] | ||
lb-version = "v2" | ||
subnet-id = "" | ||
floating-network-id = "" | ||
lb-method = "ROUND_ROBIN" | ||
lb-provider = "" | ||
|
||
[BlockStorage] | ||
ignore-volume-az = true | ||
trust-device-path = true | ||
bs-version = "v2" | ||
node-volume-attach-limit = 25 | ||
|
||
[Route] | ||
router-id = 12345-6666-7777 |