Enhanced SIM for E2AP v1 for TS UC
[sim/e2-interface.git] / e2sim / e2apv1sim / helm / e2sim / values.yaml
1 ################################################################################
2 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
3 #   Copyright (c) 2019 Nokia.                                                  #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17
18 replicaCount: 1
19
20 image:
21   repository: snapshot.docker.ranco-dev-tools.eastus.cloudapp.azure.com:10001
22   repositoryCred: docker-reg-cred
23   # for local testing
24   #repository: ric/testsuite
25   name: test/e2sim
26   tag: latest
27   pullPolicy: IfNotPresent
28
29 nameOverride: ""
30 fullnameOverride: ""
31
32 e2sim:
33  network:
34   # network implementation type: hostnetworking or DANM
35   # type: ["host"]|"danm"
36   # where e2sim should listen for SCTP connections:
37   # o if "address" is supplied, listen on that IP (v4 or v6) address
38   # o if "address" is not supplied and "interface" is supplied, listen on the
39   #   first globally-scoped address on that interface of family "addressFamily"
40   #   (default "inet")
41   # o if neither "address" nor "interface" is supplied, listen on the first
42   #   globally-scoped address of family "addressFamily" (default "inet") on
43   #   the interface associated with the container's default route, if any; if
44   #   the container does not have a default route, the first interface with
45   #   a globally-scoped address will be used.
46   # address: addr
47   # interface: ifname
48   # addressFamily: ["inet"]|"inet6"