Skip to content

Commit

Permalink
updated example declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Jordan committed Jan 15, 2019
1 parent db23053 commit f7a8398
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 8 deletions.
2 changes: 1 addition & 1 deletion SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Currently supported versions:
| Software Version | Release Type | First Customer Ship |End of Support |
|------------------ |---------------|---------------------|-----------------|
| DO 1.1.0 | Feature | 20-Dec-2018 | 20-Mar-2019 |
| DO 1.2.0 | Feature | 16-Jan-2019 |16-Apr-2019 |
| DO 1.2.0 | Feature | 16-Jan-2019 | 16-Apr-2019 |

See the [Release notes](https://github.com/F5Networks/f5-declarative-onboarding/releases) and [Declarative Onboarding documentation](https://clouddocs.f5.com/products/extensions/f5-declarative-onboarding/latest/) for new features and issues resolved for each release.

13 changes: 10 additions & 3 deletions docs/examples/example_02.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,16 @@
}
]
},
"external-localself": {
"class": "SelfIp",
"address": "10.20.0.100/24",
"vlan": "external",
"allowService": "none",
"trafficGroup": "traffic-group-local-only"
},
"external-self": {
"class": "SelfIp",
"address": "1.2.3.4/24",
"address": "10.20.0.200/24",
"vlan": "external",
"allowService": "default",
"trafficGroup": "traffic-group-1"
Expand All @@ -97,11 +104,11 @@
},
"configsync": {
"class": "ConfigSync",
"configsyncIp": "/Common/external-self/address"
"configsyncIp": "/Common/internal-self/address"
},
"failoverAddress": {
"class": "FailoverUnicast",
"address": "/Common/external-self/address"
"address": "/Common/internal-self/address"
},
"failoverGroup": {
"class": "DeviceGroup",
Expand Down
21 changes: 20 additions & 1 deletion docs/examples/example_03.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,24 @@
"class": "Provision",
"ltm": "nominal"
},
"internal": {
"class": "VLAN",
"tag": 4093,
"mtu": 1500,
"interfaces": [
{
"name": "1.2",
"tagged": true
}
]
},
"internal-self": {
"class": "SelfIp",
"address": "10.10.0.100/24",
"vlan": "internal",
"allowService": "default",
"trafficGroup": "traffic-group-local-only"
},
"external": {
"class": "VLAN",
"tag": 4094,
Expand All @@ -77,7 +95,8 @@
"class": "SelfIp",
"address": "10.0.1.100/24",
"vlan": "external",
"allowService": "all"
"allowService": "all",
"trafficGroup": "traffic-group-local-only"
},
"default": {
"class": "Route",
Expand Down
21 changes: 20 additions & 1 deletion docs/examples/example_04.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,24 @@
"class": "Provision",
"ltm": "nominal"
},
"internal": {
"class": "VLAN",
"tag": 4093,
"mtu": 1500,
"interfaces": [
{
"name": "1.2",
"tagged": true
}
]
},
"internal-self": {
"class": "SelfIp",
"address": "10.10.0.100/24",
"vlan": "internal",
"allowService": "default",
"trafficGroup": "traffic-group-local-only"
},
"external": {
"class": "VLAN",
"tag": 4094,
Expand All @@ -73,7 +91,8 @@
"class": "SelfIp",
"address": "10.0.1.100/24",
"vlan": "external",
"allowService": "all"
"allowService": "all",
"trafficGroup": "traffic-group-local-only"
},
"default": {
"class": "Route",
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/example_05.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"declaration": {
"schemaVersion": "1.0.0",
"class": "Device",
"label": "Use App Services Gateway to onboard a BIG-IP",
"label": "Use a container to onboard a BIG-IP",
"Common": {
"class": "Tenant",
"hostname": "bigip.example.com",
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/example_06.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"declaration": {
"schemaVersion": "1.0.0",
"class": "Device",
"label": "Use App Services Gateway to license BIG-IP via BIG-IQ when BIG-IP is reachable from BIG-IQ",
"label": "Use a container to license BIG-IP via BIG-IQ when BIG-IP is reachable from BIG-IQ",
"Credentials": [
{
"username": "bigIqAdmin",
Expand Down

0 comments on commit f7a8398

Please sign in to comment.