-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable GSSAPI authentication in vbmc container
It's mostly useless and might lead to timeout in vbmcd trying to connect via SSH, and SSH taking too long to get an acceptable result. Since we know we're using keypair authentication, let's just disable GSSAPI. This also fixes broken molecule run due to the major changes in libvirt_manager.
- Loading branch information
1 parent
a28ca41
commit e1568fa
Showing
3 changed files
with
111 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
--- | ||
networks: | ||
ctlplane: | ||
network: "192.168.122.0/24" | ||
gateway: "192.168.122.1" | ||
dns: | ||
- "192.168.122.253" | ||
- "192.168.122.254" | ||
search-domain: "ctlplane.example.local" | ||
mtu: 1500 | ||
tools: | ||
multus: | ||
ranges: | ||
- start: 30 | ||
end: 39 | ||
netconfig: | ||
ranges: | ||
- start: "192.168.122.40" | ||
end: "192.168.122.49" | ||
metallb: | ||
ranges: | ||
- start: "192.168.122.80" | ||
end: "192.168.122.90" | ||
internalapi: | ||
network: "172.17.0.0/24" | ||
gateway: "172.17.0.1" | ||
vlan: 20 | ||
mtu: 1496 | ||
tools: | ||
metallb: | ||
ranges: | ||
- start: "172.17.0.90" | ||
end: "172.17.0.100" | ||
netconfig: | ||
ranges: | ||
- start: "172.17.0.40" | ||
end: "172.17.0.49" | ||
multus: | ||
ranges: | ||
- start: 50 | ||
end: 59 | ||
storage: | ||
network: "172.18.0.0/24" | ||
vlan: 21 | ||
mtu: 1496 | ||
tools: | ||
netconfig: | ||
ranges: | ||
- start: "172.18.0.40" | ||
end: "172.18.0.49" | ||
tenant: | ||
network: "172.19.0.0/24" | ||
gateway-v4: "172.19.0.1" | ||
search-domain: "tenant.example.local" | ||
dns-v4: | ||
- "8.8.8.8" | ||
- "172.19.0.1" | ||
tools: | ||
netconfig: | ||
ranges: | ||
- start: "172.19.0.40" | ||
end: "172.19.0.49" | ||
vlan: 22 | ||
mtu: 1496 | ||
group-templates: | ||
computes: | ||
network-template: | ||
range: | ||
start: 10 | ||
end: 15 | ||
networks: &computes_nets | ||
ctlplane: {} | ||
internalapi: {} | ||
tenant: {} | ||
storage: {} | ||
sl-computes: | ||
network-template: | ||
range: | ||
start: 16 | ||
length: 2 | ||
networks: *computes_nets | ||
baremetals: | ||
networks: | ||
ctlplane: | ||
range: "192.168.122.20-192.168.122.24" | ||
internalapi: | ||
range: "20-24" | ||
tenant: | ||
range: | ||
start: 20 | ||
length: 5 | ||
storage: | ||
range: | ||
start: 20 | ||
length: 5 |
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