-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
33 lines (30 loc) · 1.35 KB
/
Copy path.env.example
File metadata and controls
33 lines (30 loc) · 1.35 KB
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
# NSO images:
# - NSO_BASE: Base NSO image used as the starting point for builds.
# - NSO_IMAGE: Final image name:tag used for local build/run.
NSO_BASE=ghcr.io/ponchotitlan/cisco-nso-prod:6.6
NSO_IMAGE=ghcr.io/ponchotitlan/nso-dev:6.6.1
# Container registry credentials:
# - DOCKER_REGISTRY: Registry URL used to push/pull images.
# - DOCKER_REGISTRY_USER: Registry username.
# - DOCKER_REGISTRY_TOKEN: Registry access token/password.
DOCKER_REGISTRY=your_docker_registry_url_here
DOCKER_REGISTRY_USER=your_docker_registry_username_here
DOCKER_REGISTRY_TOKEN=your_docker_registry_token_here
# NSO access and exposed ports:
# - ADMIN_USERNAME: NSO admin login username.
# - ADMIN_PASSWORD: NSO admin login password.
# - NSO_HTTP_PORT: Host port mapped to NSO HTTP.
# - NSO_SSH_PORT: Host port mapped to NSO SSH.
ADMIN_USERNAME=admin
ADMIN_PASSWORD=admin
NSO_HTTP_PORT=8080
NSO_SSH_PORT=2022
# Host-mounted paths:
# - HOST_PACKAGES_DIR: Host path for NSO packages mounted in container.
# - HOST_RUNTIME_CONFIG_DIR: Host path for runtime config mounted in container.
# - HOST_BOOTSTRAP_DIR: Host path for bootstrap/init files mounted in container.
# - HOST_TOPOLOGY_FILE: Host path to topology file used to load lab devices.
HOST_PACKAGES_DIR=./source/packages
HOST_RUNTIME_CONFIG_DIR=./config/runtime
HOST_BOOTSTRAP_DIR=./bootstrap/init
HOST_TOPOLOGY_FILE=./nso-lab-topology.yaml