Skip to content

Commit acc4021

Browse files
committed
Release 1.3.0.0
1 parent 904cd91 commit acc4021

12 files changed

Lines changed: 15 additions & 15 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ PyPNM is a DOCSIS 3.x/4.0 Proactive Network Maintenance toolkit for engineers wh
7272
Fast install (helper script; latest release auto-detected):
7373

7474
```bash
75-
TAG="v1.2.13.0"
75+
TAG="v1.3.0.0"
7676
PORT=8080
7777

7878
curl -fsSLo install-pypnm-docker-container.sh \

docs/docker/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ PyPNM ships with Docker assets so you can run the API quickly on a workstation,
1818
## Fast path: PyPNM Docker container install
1919

2020
```bash
21-
TAG="v1.2.13.0"
21+
TAG="v1.3.0.0"
2222
PORT=8080
2323

2424
curl -fsSLo install-pypnm-docker-container.sh \
@@ -50,7 +50,7 @@ curl -X GET http://127.0.0.1:${PORT}/pypnm/system/webService/reload -H 'accept:
5050
## Deploy bundle flow (tarball)
5151

5252
```bash
53-
TAG="v1.2.13.0"
53+
TAG="v1.3.0.0"
5454
WORKING_DIR="PyPNM-${TAG}"
5555

5656
mkdir -p "${WORKING_DIR}"

docs/kubernetes/commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Deploy from GHCR using a remote manifest (no repo clone required):
7474
curl -fsSL https://raw.githubusercontent.com/PyPNMApps/PyPNM/main/tools/k8s/pypnm_k8s_remote_deploy.sh \
7575
-o /tmp/pypnm_k8s_remote_deploy.sh
7676

77-
TAG="v1.2.13.0"
77+
TAG="v1.3.0.0"
7878
NAMESPACE="pypnm-cmts-a"
7979

8080
bash /tmp/pypnm_k8s_remote_deploy.sh --create --tag "${TAG}" --namespace "${NAMESPACE}" --replicas 1

docs/kubernetes/kind-freelens.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ bash /tmp/pypnm_kind_vm_bootstrap.sh
2323
Pick a release tag, then deploy into a namespace (one namespace per CMTS). This script pulls manifests from GitHub, so no repo clone is required:
2424

2525
```bash
26-
TAG="v1.2.13.0"
26+
TAG="v1.3.0.0"
2727
NAMESPACE="pypnm-cmts-a"
2828

2929
curl -fsSL https://raw.githubusercontent.com/PyPNMApps/PyPNM/main/tools/k8s/pypnm_k8s_remote_deploy.sh \
@@ -111,7 +111,7 @@ Tip: keep one FreeLens workspace per CMTS namespace so it is easy to keep sessio
111111
Deploy a PyPNM instance per CMTS by assigning a unique namespace and configuration per CMTS:
112112

113113
```bash
114-
TAG="v1.2.13.0"
114+
TAG="v1.3.0.0"
115115
116116
for CMTS in cmts-a cmts-b cmts-c; do
117117
NAMESPACE="pypnm-${CMTS}"

docs/kubernetes/kind-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ kubectl get nodes
2727
## Script-only deploy (no repo clone)
2828

2929
```bash
30-
TAG="v1.2.13.0"
30+
TAG="v1.3.0.0"
3131
NAMESPACE="pypnm-cmts-a"
3232
curl -fsSL https://raw.githubusercontent.com/PyPNMApps/PyPNM/main/tools/k8s/pypnm_k8s_remote_deploy.sh \
3333
-o /tmp/pypnm_k8s_remote_deploy.sh

docs/kubernetes/multi-cluster-kind.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ kind create cluster --name "${CLUSTER_B}"
1616
## Deploy to each cluster
1717

1818
```bash
19-
TAG="v1.2.13.0"
19+
TAG="v1.3.0.0"
2020
NAMESPACE="pypnm-default"
2121

2222
kubectl config use-context kind-pypnm-dev-a

docs/kubernetes/pypnm-deploy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This workflow pulls the manifests from GitHub and deploys the GHCR image directl
2828
```bash
2929
curl -fsSL https://raw.githubusercontent.com/PyPNMApps/PyPNM/main/tools/k8s/pypnm_k8s_remote_deploy.sh \\
3030
-o /tmp/pypnm_k8s_remote_deploy.sh
31-
TAG="v1.2.13.0"
31+
TAG="v1.3.0.0"
3232
NAMESPACE="pypnm-cmts-a"
3333

3434
bash /tmp/pypnm_k8s_remote_deploy.sh --create --tag "${TAG}" --namespace "${NAMESPACE}" --replicas 1

docs/kubernetes/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
Copy-paste flow using the current release tag:
44

55
```bash
6-
TAG="v1.2.13.0"
6+
TAG="v1.3.0.0"
77
tools/k8s/pypnm_k8s_toolkit.sh --create --image-source ghcr --tag ${TAG} --replicas 1
88
```
99

1010
To target a specific namespace (useful for one PyPNM per CMTS):
1111

1212
```bash
13-
TAG="v1.2.13.0"
13+
TAG="v1.3.0.0"
1414
NAMESPACE="pypnm-cmts-a"
1515
tools/k8s/pypnm_k8s_toolkit.sh --create --image-source ghcr --tag ${TAG} --replicas 1 --namespace ${NAMESPACE}
1616
```

docs/kubernetes/scale-replicas-kind.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Use it for throughput testing or simple HA without per-namespace isolation.
66
## Deploy (or update) and scale
77

88
```bash
9-
TAG="v1.2.13.0"
9+
TAG="v1.3.0.0"
1010
NAMESPACE="pypnm-default"
1111
REPLICAS="10"
1212

docs/kubernetes/ten-instances-kind.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ and exposes each instance on a unique local port.
1010
## Deploy 10 namespaces (parallel)
1111

1212
```bash
13-
TAG="v1.2.13.0"
13+
TAG="v1.3.0.0"
1414
BASE_NS="pypnm-cmts"
1515
REPLICAS="1"
1616
COUNT="10"

0 commit comments

Comments
 (0)