Skip to content

Commit bc0f54d

Browse files
committed
Release 1.0.36.0
1 parent d32193f commit bc0f54d

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
@@ -71,7 +71,7 @@ PyPNM is a DOCSIS 3.x/4.0 Proactive Network Maintenance toolkit for engineers wh
7171
Fast install (helper script; latest release auto-detected):
7272

7373
```bash
74-
TAG="v1.0.35.0"
74+
TAG="v1.0.36.0"
7575
PORT=8080
7676

7777
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
@@ -15,7 +15,7 @@ PyPNM ships with Docker assets so you can run the API quickly on a workstation,
1515
## Fast path: PyPNM Docker container install
1616

1717
```bash
18-
TAG="v1.0.35.0"
18+
TAG="v1.0.36.0"
1919
PORT=8080
2020

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

4949
```bash
50-
TAG="v1.0.35.0"
50+
TAG="v1.0.36.0"
5151
WORKING_DIR="PyPNM-${TAG}"
5252

5353
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.0.35.0"
77+
TAG="v1.0.36.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.0.35.0"
26+
TAG="v1.0.36.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.0.35.0"
114+
TAG="v1.0.36.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.0.35.0"
30+
TAG="v1.0.36.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.0.35.0"
19+
TAG="v1.0.36.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
@@ -25,7 +25,7 @@ This workflow pulls the manifests from GitHub and deploys the GHCR image directl
2525
```bash
2626
curl -fsSL https://raw.githubusercontent.com/PyPNMApps/PyPNM/main/tools/k8s/pypnm_k8s_remote_deploy.sh \\
2727
-o /tmp/pypnm_k8s_remote_deploy.sh
28-
TAG="v1.0.35.0"
28+
TAG="v1.0.36.0"
2929
NAMESPACE="pypnm-cmts-a"
3030

3131
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.0.35.0"
6+
TAG="v1.0.36.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.0.35.0"
13+
TAG="v1.0.36.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.0.35.0"
9+
TAG="v1.0.36.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.0.35.0"
13+
TAG="v1.0.36.0"
1414
BASE_NS="pypnm-cmts"
1515
REPLICAS="1"
1616
COUNT="10"

0 commit comments

Comments
 (0)