Commit 57b6ae84 authored by Jérome Perrin's avatar Jérome Perrin

Update Release Candidate

parents 7d1fe972 bff416ce
...@@ -28,7 +28,7 @@ from setuptools import setup, find_packages ...@@ -28,7 +28,7 @@ from setuptools import setup, find_packages
import glob import glob
import os import os
version = '1.0.252' version = '1.0.253'
name = 'slapos.cookbook' name = 'slapos.cookbook'
long_description = open("README.rst").read() long_description = open("README.rst").read()
......
...@@ -226,15 +226,9 @@ class Recipe(GenericSlapRecipe, Notify, Callback): ...@@ -226,15 +226,9 @@ class Recipe(GenericSlapRecipe, Notify, Callback):
(self.options['sshclient-binary'], (self.options['sshclient-binary'],
parsed_url.username, parsed_url.hostname, parsed_url.port))) parsed_url.username, parsed_url.hostname, parsed_url.port)))
# Create known_hosts file by default. # Create known_hosts file
# In some case, we don't want to create it (case where we share IP mong partitions) known_hostname = "[%s]:%s" % (parsed_url.hostname, parsed_url.port)
if not self.isTrueValue(self.options.get('ignore-known-hosts-file')): known_hosts_file[known_hostname] = entry['server-key'].strip()
# Migration code: if known_hosts file contains entry with just IP, then it
# is updated to use [IP]:port. It allows to share same IP among partitions
if parsed_url.hostname in known_hosts_file:
del known_hosts_file[parsed_url.hostname]
known_hostname = "[%s]:%s" % (parsed_url.hostname, parsed_url.port)
known_hosts_file[known_hostname] = entry['server-key'].strip()
notifier_wrapper_path = os.path.join(self.options['wrappers-directory'], slave_id) notifier_wrapper_path = os.path.join(self.options['wrappers-directory'], slave_id)
rdiff_wrapper_path = notifier_wrapper_path + '_raw' rdiff_wrapper_path = notifier_wrapper_path + '_raw'
......
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -72,25 +72,25 @@ ...@@ -72,25 +72,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -101,4 +101,4 @@ ...@@ -101,4 +101,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -60,25 +60,25 @@ ...@@ -60,25 +60,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -89,4 +89,4 @@ ...@@ -89,4 +89,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -78,30 +78,30 @@ ...@@ -78,30 +78,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -137,4 +137,4 @@ ...@@ -137,4 +137,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -66,30 +66,30 @@ ...@@ -66,30 +66,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -125,4 +125,4 @@ ...@@ -125,4 +125,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -72,25 +72,25 @@ ...@@ -72,25 +72,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -101,4 +101,4 @@ ...@@ -101,4 +101,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -60,25 +60,25 @@ ...@@ -60,25 +60,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -89,4 +89,4 @@ ...@@ -89,4 +89,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -78,30 +78,30 @@ ...@@ -78,30 +78,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -137,4 +137,4 @@ ...@@ -137,4 +137,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -66,30 +66,30 @@ ...@@ -66,30 +66,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -125,4 +125,4 @@ ...@@ -125,4 +125,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -72,25 +72,25 @@ ...@@ -72,25 +72,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -101,4 +101,4 @@ ...@@ -101,4 +101,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -60,25 +60,25 @@ ...@@ -60,25 +60,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -89,4 +89,4 @@ ...@@ -89,4 +89,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -78,30 +78,30 @@ ...@@ -78,30 +78,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -137,4 +137,4 @@ ...@@ -137,4 +137,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -66,30 +66,30 @@ ...@@ -66,30 +66,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -125,4 +125,4 @@ ...@@ -125,4 +125,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -72,25 +72,25 @@ ...@@ -72,25 +72,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -101,4 +101,4 @@ ...@@ -101,4 +101,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -60,25 +60,25 @@ ...@@ -60,25 +60,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -89,4 +89,4 @@ ...@@ -89,4 +89,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -78,30 +78,30 @@ ...@@ -78,30 +78,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -137,4 +137,4 @@ ...@@ -137,4 +137,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -66,30 +66,30 @@ ...@@ -66,30 +66,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -125,4 +125,4 @@ ...@@ -125,4 +125,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -53,4 +53,4 @@ ...@@ -53,4 +53,4 @@
"index": 5 "index": 5
} }
} }
} }
\ No newline at end of file
...@@ -53,4 +53,4 @@ ...@@ -53,4 +53,4 @@
"index": 5 "index": 5
} }
} }
} }
\ No newline at end of file
...@@ -53,4 +53,4 @@ ...@@ -53,4 +53,4 @@
"index": 5 "index": 5
} }
} }
} }
\ No newline at end of file
...@@ -53,4 +53,4 @@ ...@@ -53,4 +53,4 @@
"index": 5 "index": 5
} }
} }
} }
\ No newline at end of file
...@@ -194,7 +194,7 @@ setproctitle = 1.1.10 ...@@ -194,7 +194,7 @@ setproctitle = 1.1.10
setuptools-dso = 1.7 setuptools-dso = 1.7
rubygemsrecipe = 0.4.3 rubygemsrecipe = 0.4.3
six = 1.12.0 six = 1.12.0
slapos.cookbook = 1.0.246 slapos.cookbook = 1.0.252
slapos.core = 1.7.9 slapos.core = 1.7.9
slapos.extension.strip = 0.4 slapos.extension.strip = 0.4
slapos.extension.shared = 1.0 slapos.extension.shared = 1.0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment