Skip to content

Commit

Permalink
manually update to v1.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: denis-tingaikin <[email protected]>
  • Loading branch information
denis-tingaikin committed Feb 16, 2022
1 parent 9aeaeb7 commit 274a43e
Show file tree
Hide file tree
Showing 74 changed files with 220 additions and 220 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ jobs:
echo "branch point: $BRANCH_POINT"
find . -type f -not -path "./.github/*" ! -name '*.yaml' ! -name '*.yml' -exec git diff "${{ github.event.pull_request.head.sha }}".."$BRANCH_POINT" --exit-code -- {} +
linkChecker:
runs-on: ubuntu-latest
container:
image: lycheeverse/lychee:20211216183321587853
env:
GITHUB_TOKEN: $LYCHEE_GITHUB_TOKEN
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Check external links using lychee
run: |
lychee -v '**/*.md' --exclude-mail --exclude '.*?ref=.*'
# linkChecker:
# runs-on: ubuntu-latest
# container:
# image: lycheeverse/lychee:20211216183321587853
# env:
# GITHUB_TOKEN: $LYCHEE_GITHUB_TOKEN
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# - name: Check external links using lychee
# run: |
# lychee -v '**/*.md' --exclude-mail --exclude '.*?ref=.*'
2 changes: 1 addition & 1 deletion apps/forwarder-host-ovs/forwarder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
hostPID: true
hostNetwork: true
containers:
- image: ghcr.io/networkservicemesh/ci/cmd-forwarder-ovs-use-host-ovs:7aca11b
- image: ghcr.io/networkservicemesh/cmd-forwarder-ovs:v1.2.0
imagePullPolicy: IfNotPresent
name: forwarder-ovs
securityContext:
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ kubectl create ns nsm-system
2. Apply NSM resources for basic tests:

```bash
kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/basic?ref=e972708cbac0354f48f1c7d525d0d7c680672011
kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/basic?ref=v1.2.0
```

3. Wait for admission-webhook-k8s:
Expand Down
2 changes: 1 addition & 1 deletion examples/calico/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ kubectl create ns nsm-system
2. Apply NSM resources for calico tests:

```bash
kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/calico/?ref=e972708cbac0354f48f1c7d525d0d7c680672011
kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/calico/?ref=v1.2.0
```

3. Wait for admission-webhook-k8s:
Expand Down
6 changes: 3 additions & 3 deletions examples/features/dns/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Make sure that you have completed steps from [features](../)

1. Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand Down Expand Up @@ -109,11 +109,11 @@ kind: Kustomization
namespace: ${NAMESPACE}
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=v1.2.0
resources:
- dnsutils.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/dns/coredns-config-map.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/dns/coredns-config-map.yaml
patchesStrategicMerge:
- patch-nse.yaml
Expand Down
12 changes: 6 additions & 6 deletions examples/features/exclude-prefixes-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Make sure that you have completed steps from [basic](../../basic) or [memory](..

Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/use-cases/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/use-cases/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand All @@ -26,11 +26,11 @@ kind: Kustomization
namespace: ${NAMESPACE}
resources:
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/exclude-prefixes-client/test-client.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/exclude-prefixes-client/nsm-service-1.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/exclude-prefixes-client/nsm-service-2.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/exclude-prefixes-client/nse-kernel-1.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/exclude-prefixes-client/nse-kernel-2.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/exclude-prefixes-client/test-client.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/exclude-prefixes-client/nsm-service-1.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/exclude-prefixes-client/nsm-service-2.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/exclude-prefixes-client/nse-kernel-1.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/exclude-prefixes-client/nse-kernel-2.yaml
EOF
```

Expand Down
6 changes: 3 additions & 3 deletions examples/features/exclude-prefixes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Make sure that you have completed steps from [basic](../../basic) or [memory](..

Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/use-cases/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/use-cases/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand All @@ -31,8 +31,8 @@ kind: Kustomization
namespace: ${NAMESPACE}
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=v1.2.0
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=v1.2.0
patchesStrategicMerge:
- patch-nsc.yaml
Expand Down
4 changes: 2 additions & 2 deletions examples/features/ipv6/Kernel2Kernel_ipv6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ NSC and NSE are using the `kernel` mechanism to connect to its local forwarder.

Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand All @@ -30,7 +30,7 @@ namespace: ${NAMESPACE}
resources:
- client.yaml
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=v1.2.0
patchesStrategicMerge:
- patch-nse.yaml
Expand Down
4 changes: 2 additions & 2 deletions examples/features/ipv6/Kernel2Wireguard2Kernel_ipv6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Forwarders are using the `wireguard` mechanism to connect with each other.

Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand All @@ -30,7 +30,7 @@ namespace: ${NAMESPACE}
resources:
- client.yaml
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=v1.2.0
patchesStrategicMerge:
- patch-nse.yaml
Expand Down
4 changes: 2 additions & 2 deletions examples/features/ipv6/Kernel2Wireguard2Memif_ipv6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Forwarders are using the `wireguard` mechanism to connect with each other.

Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand All @@ -31,7 +31,7 @@ namespace: ${NAMESPACE}
resources:
- client.yaml
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=v1.2.0
patchesStrategicMerge:
- patch-nse.yaml
Expand Down
6 changes: 3 additions & 3 deletions examples/features/ipv6/Memif2Memif_ipv6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ NSC and NSE are using the `memif` mechanism to connect to its local forwarder.

Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand All @@ -27,8 +27,8 @@ kind: Kustomization
namespace: ${NAMESPACE}
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=v1.2.0
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=v1.2.0
patchesStrategicMerge:
- patch-nsc.yaml
Expand Down
6 changes: 3 additions & 3 deletions examples/features/ipv6/Memif2Wireguard2Kernel_ipv6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Forwarders are using the `wireguard` mechanism to connect with each other.

Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand All @@ -30,8 +30,8 @@ kind: Kustomization
namespace: ${NAMESPACE}
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=v1.2.0
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=v1.2.0
patchesStrategicMerge:
- patch-nsc.yaml
Expand Down
6 changes: 3 additions & 3 deletions examples/features/ipv6/Memif2Wireguard2Memif_ipv6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Forwarders are using the `wireguard` mechanism to connect with each other.

Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand All @@ -28,8 +28,8 @@ kind: Kustomization
namespace: ${NAMESPACE}
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=v1.2.0
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=v1.2.0
patchesStrategicMerge:
- patch-nsc.yaml
Expand Down
16 changes: 8 additions & 8 deletions examples/features/nse-composition/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Make sure that you have completed steps from [basic](../../basic) or [memory](..

Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand All @@ -30,15 +30,15 @@ kind: Kustomization
namespace: ${NAMESPACE}
resources:
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/nse-composition/config-file.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/nse-composition/passthrough-1.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/nse-composition/passthrough-2.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/nse-composition/passthrough-3.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/nse-composition/nse-composition-ns.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/nse-composition/config-file.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/nse-composition/passthrough-1.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/nse-composition/passthrough-2.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/nse-composition/passthrough-3.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/nse-composition/nse-composition-ns.yaml
- client.yaml
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/examples/features/nse-composition/nse-firewall?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=v1.2.0
- https://github.com/networkservicemesh/deployments-k8s/examples/features/nse-composition/nse-firewall?ref=v1.2.0
patchesStrategicMerge:
- patch-nse.yaml
Expand Down
6 changes: 3 additions & 3 deletions examples/features/opa/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Expected that Endpoint(in this case NSMgr) will fail the Request from the client

1. Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand All @@ -38,8 +38,8 @@ kind: Kustomization
namespace: ${NAMESPACE}
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=v1.2.0
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=v1.2.0
patchesStrategicMerge:
- patch-nsc.yaml
Expand Down
4 changes: 2 additions & 2 deletions examples/features/policy-based-routing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Make sure that you have completed steps from [basic](../../basic) or [memory](..

Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand All @@ -36,7 +36,7 @@ resources:
- client.yaml
- config-file-nse.yaml
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=v1.2.0
patchesStrategicMerge:
- patch-nse.yaml
Expand Down
10 changes: 5 additions & 5 deletions examples/features/scale-from-zero/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ thus saving cluster resources (see step 14).

1. Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand Down Expand Up @@ -100,8 +100,8 @@ kind: Kustomization
namespace: $NAMESPACE
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-supplier-k8s?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-supplier-k8s?ref=v1.2.0
- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=v1.2.0
patchesStrategicMerge:
- patch-nsc.yaml
Expand All @@ -110,13 +110,13 @@ patchesStrategicMerge:
configMapGenerator:
- name: supplier-pod-template-configmap
files:
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/scale-from-zero/pod-template.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/scale-from-zero/pod-template.yaml
EOF
```

6. Register network service:
```bash
kubectl apply -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/scale-from-zero/autoscale-netsvc.yaml
kubectl apply -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/scale-from-zero/autoscale-netsvc.yaml
```

7. Deploy NSC and supplier:
Expand Down
2 changes: 1 addition & 1 deletion examples/features/select-forwarder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ kubectl create ns select-forwarder
Apply example resources:

```bash
kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/features/select-forwarder?ref=e972708cbac0354f48f1c7d525d0d7c680672011
kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/features/select-forwarder?ref=v1.2.0
```

Wait for applications ready:
Expand Down
4 changes: 2 additions & 2 deletions examples/features/webhook-smartvf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ kubectl wait --for=condition=ready --timeout=1m pod ${WH} -n nsm-system

1. Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand Down Expand Up @@ -106,7 +106,7 @@ kind: Kustomization
namespace: ${NAMESPACE}
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=v1.2.0
resources:
- postgres-cl.yaml
Expand Down
4 changes: 2 additions & 2 deletions examples/features/webhook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Make sure that you have completed steps from [features](../)

1. Create test namespace:
```bash
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/e972708cbac0354f48f1c7d525d0d7c680672011/examples/features/namespace.yaml)[0])
NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/v1.2.0/examples/features/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10}
```

Expand Down Expand Up @@ -91,7 +91,7 @@ kind: Kustomization
namespace: ${NAMESPACE}
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=e972708cbac0354f48f1c7d525d0d7c680672011
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=v1.2.0
resources:
- postgres-cl.yaml
Expand Down
Loading

0 comments on commit 274a43e

Please sign in to comment.