aboutsummaryrefslogtreecommitdiffstats
path: root/operations/a1-pe-sim-packages/resources/oran-sim-csar/o-ran-simulator/values.yaml
blob: 591320726b7a540bb219cb2ff5f4ae7b4bef6dbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Default values for handover-simulator.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

#To easier define node ports:
backendRESTNodePort: 32766
managementNodePort: 32022

#oran_name can be provided from ONAP and will set custom label
oran_name: null

a1pesimulator:
  name: a1-pe-simulator
  replicaCount: 1
  containers:
    a1-simulator:
      image:
        repository: nexus3.onap.org:10001/onap/integration/simulators/a1-pe-simulator
        tag: latest
        pullPolicy: Always
      volumeMounts:
        - name: config
          mountPath: /a1-pe-simulator/config
        - name: pmfiles
          mountPath: /a1-pe-simulator/generated_pm_bulks
    sftp:
      image:
        repository: atmoz/sftp
        tag: latest
        pullPolicy: Always
      command: ./entrypoint
      args: admin:samsung:::upload
      volumeMounts:
        - name: pmfiles
          mountPath: /home/admin/upload
  service:
    type: NodePort
    ports:
      - port: 9998
        name: a1-sim-http
        owner: a1-simulator
        nodePort: "{{ .Values.backendRESTNodePort }}"
      - port: 22
        owner: sftp
        name: sftp-1
        nodePort: "{{ .Values.managementNodePort }}"