forked from Azure/iotedge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for additional container network configuration to support…
… IPv6-only devices. (Azure#1374) Add support for additional container network configuration to support IPv6-only devices.
- Loading branch information
1 parent
4e8e005
commit 9001b8e
Showing
15 changed files
with
583 additions
and
35 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
46 changes: 46 additions & 0 deletions
46
edgelet/edgelet-config/test/linux/sample_settings.network.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,46 @@ | ||
|
||
# Configures the provisioning mode | ||
provisioning: | ||
source: "manual" | ||
device_connection_string: "HostName=something.something.com;DeviceId=something;SharedAccessKey=QXp1cmUgSW9UIEVkZ2U=" | ||
agent: | ||
name: "edgeAgent" | ||
type: "docker" | ||
env: | ||
abc: "value1" | ||
acd: "value2" | ||
config: | ||
image: "microsoft/azureiotedge-agent:1.0" | ||
auth: {} | ||
hostname: "localhost" | ||
|
||
watchdog: | ||
max_retries: 3 | ||
|
||
# Sets the connection uris for clients | ||
connect: | ||
workload_uri: "http://localhost:8081" | ||
management_uri: "http://localhost:8080" | ||
|
||
# Sets the uris to listen on | ||
# These can be different than the connect uris. | ||
# For instance, when using the fd:// scheme for systemd | ||
listen: | ||
workload_uri: "http://0.0.0.0:8081" | ||
management_uri: "http://0.0.0.0:8080" | ||
homedir: "/tmp" | ||
moby_runtime: | ||
uri: "http://localhost:2375" | ||
network: | ||
name: "azure-iot-edge" | ||
ipv6: true | ||
ipam: | ||
config: | ||
- | ||
gateway: '172.18.0.1' | ||
subnet: '172.18.0.0/16' | ||
ip_range: '172.18.0.0/16' | ||
- | ||
gateway: '2001:4898:e0:3b1:1::1' | ||
subnet: '2001:4898:e0:3b1:1::/80' | ||
ip_range: '2001:4898:e0:3b1:1::/80' |
Oops, something went wrong.