Commit 01448951 authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

frontend updates to support connectivity model & data network configuration

parent 9da9153a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version: 1.6.7
version: 1.6.8
repo:
  name: AdvantEDGE

+9 −1
Original line number Diff line number Diff line
version: 1.6.6
version: 1.6.8
name: demo1
deployment:
    netChar:
@@ -9,6 +9,8 @@ deployment:
        throughputUl: 1000
        throughput: null
        packetLoss: null
    connectivity:
        model: OPEN
    domains:
        -
            id: PUBLIC
@@ -148,6 +150,7 @@ deployment:
                                    networkLocationsInRange: null
                                    wireless: null
                                    wirelessType: null
                                    dataNetwork: null
                                    meta: null
                                    userMeta: null
                                    linkLatency: null
@@ -376,6 +379,7 @@ deployment:
                                    networkLocationsInRange: null
                                    wireless: null
                                    wirelessType: null
                                    dataNetwork: null
                                    meta: null
                                    userMeta: null
                                    linkLatency: null
@@ -506,6 +510,7 @@ deployment:
                                    networkLocationsInRange: null
                                    wireless: null
                                    wirelessType: null
                                    dataNetwork: null
                                    meta: null
                                    userMeta: null
                                    linkLatency: null
@@ -565,6 +570,7 @@ deployment:
                                    geoData: null
                                    networkLocationsInRange: null
                                    wirelessType: null
                                    dataNetwork: null
                                    meta: null
                                    userMeta: null
                                    linkLatency: null
@@ -646,6 +652,7 @@ deployment:
                                    geoData: null
                                    networkLocationsInRange: null
                                    wirelessType: null
                                    dataNetwork: null
                                    meta: null
                                    userMeta: null
                                    linkLatency: null
@@ -827,6 +834,7 @@ deployment:
                                    networkLocationsInRange: null
                                    wireless: null
                                    wirelessType: null
                                    dataNetwork: null
                                    meta: null
                                    userMeta: null
                                    linkLatency: null
+9 −1
Original line number Diff line number Diff line
version: 1.6.6
version: 1.6.8
name: demo2
deployment:
    netChar:
@@ -9,6 +9,8 @@ deployment:
        throughputUl: 1000
        throughput: null
        packetLoss: null
    connectivity:
        model: OPEN
    domains:
        -
            id: PUBLIC
@@ -148,6 +150,7 @@ deployment:
                                    networkLocationsInRange: null
                                    wireless: null
                                    wirelessType: null
                                    dataNetwork: null
                                    meta: null
                                    userMeta: null
                                    linkLatency: null
@@ -362,6 +365,7 @@ deployment:
                                    networkLocationsInRange: null
                                    wireless: null
                                    wirelessType: null
                                    dataNetwork: null
                                    meta: null
                                    userMeta: null
                                    linkLatency: null
@@ -478,6 +482,7 @@ deployment:
                                    networkLocationsInRange: null
                                    wireless: null
                                    wirelessType: null
                                    dataNetwork: null
                                    meta: null
                                    userMeta: null
                                    linkLatency: null
@@ -537,6 +542,7 @@ deployment:
                                    geoData: null
                                    networkLocationsInRange: null
                                    wirelessType: null
                                    dataNetwork: null
                                    meta: null
                                    userMeta: null
                                    linkLatency: null
@@ -618,6 +624,7 @@ deployment:
                                    geoData: null
                                    networkLocationsInRange: null
                                    wirelessType: null
                                    dataNetwork: null
                                    meta: null
                                    userMeta: null
                                    linkLatency: null
@@ -785,6 +792,7 @@ deployment:
                                    networkLocationsInRange: null
                                    wireless: null
                                    wirelessType: null
                                    dataNetwork: null
                                    meta: null
                                    userMeta: null
                                    linkLatency: null
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ type versionInfo struct {
	BuildID   string `json:"build,omitempty"`
}

const meepctlVersion = "1.6.7"
const meepctlVersion = "1.6.8"
const na = "NA"

const versionDesc = `Display version information
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ import (
	yaml "gopkg.in/yaml.v2"
)

const configVersion = "1.6.7"
const configVersion = "1.6.8"

const defaultNotSet = "not set"

Loading