diff --git a/examples/basic/README.md b/examples/basic/README.md index d1dde276eb39..6272b404ae30 100644 --- a/examples/basic/README.md +++ b/examples/basic/README.md @@ -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=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/basic?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` 3. Wait for admission-webhook-k8s: diff --git a/examples/features/dns/README.md b/examples/features/dns/README.md index f3c7b6c74885..42e2765e1697 100644 --- a/examples/features/dns/README.md +++ b/examples/features/dns/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -107,11 +107,11 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 resources: - dnsutils.yaml -- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/dns/coredns-config-map.yaml +- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/dns/coredns-config-map.yaml patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/features/dual-stack/Kernel2Kernel_dual_stack/README.md b/examples/features/dual-stack/Kernel2Kernel_dual_stack/README.md index f498070a9c53..1cf534590451 100644 --- a/examples/features/dual-stack/Kernel2Kernel_dual_stack/README.md +++ b/examples/features/dual-stack/Kernel2Kernel_dual_stack/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -30,7 +30,7 @@ namespace: ${NAMESPACE} resources: - client.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/features/dual-stack/Kernel2Wireguard2Kernel_dual_stack/README.md b/examples/features/dual-stack/Kernel2Wireguard2Kernel_dual_stack/README.md index 2997840666f6..cc81ab42d539 100644 --- a/examples/features/dual-stack/Kernel2Wireguard2Kernel_dual_stack/README.md +++ b/examples/features/dual-stack/Kernel2Wireguard2Kernel_dual_stack/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -30,7 +30,7 @@ namespace: ${NAMESPACE} resources: - client.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/features/exclude-prefixes-client/README.md b/examples/features/exclude-prefixes-client/README.md index 58ea9952edf4..827037a416b1 100644 --- a/examples/features/exclude-prefixes-client/README.md +++ b/examples/features/exclude-prefixes-client/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -26,11 +26,11 @@ kind: Kustomization namespace: ${NAMESPACE} resources: -- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/exclude-prefixes-client/test-client.yaml -- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/exclude-prefixes-client/nsm-service-1.yaml -- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/exclude-prefixes-client/nsm-service-2.yaml -- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/exclude-prefixes-client/nse-kernel-1.yaml -- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/exclude-prefixes-client/nse-kernel-2.yaml +- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/exclude-prefixes-client/test-client.yaml +- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/exclude-prefixes-client/nsm-service-1.yaml +- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/exclude-prefixes-client/nsm-service-2.yaml +- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/exclude-prefixes-client/nse-kernel-1.yaml +- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/exclude-prefixes-client/nse-kernel-2.yaml EOF ``` diff --git a/examples/features/exclude-prefixes/README.md b/examples/features/exclude-prefixes/README.md index 2e2796f83bc3..aa98d21945cd 100644 --- a/examples/features/exclude-prefixes/README.md +++ b/examples/features/exclude-prefixes/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -31,8 +31,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/features/ipv6/Kernel2Kernel_ipv6/README.md b/examples/features/ipv6/Kernel2Kernel_ipv6/README.md index 27a37be3eb7e..7dc9fb0c3b05 100644 --- a/examples/features/ipv6/Kernel2Kernel_ipv6/README.md +++ b/examples/features/ipv6/Kernel2Kernel_ipv6/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -30,7 +30,7 @@ namespace: ${NAMESPACE} resources: - client.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/features/ipv6/Kernel2Wireguard2Kernel_ipv6/README.md b/examples/features/ipv6/Kernel2Wireguard2Kernel_ipv6/README.md index 52fa06126f16..3fc6abfee50b 100644 --- a/examples/features/ipv6/Kernel2Wireguard2Kernel_ipv6/README.md +++ b/examples/features/ipv6/Kernel2Wireguard2Kernel_ipv6/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -30,7 +30,7 @@ namespace: ${NAMESPACE} resources: - client.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/features/ipv6/Kernel2Wireguard2Memif_ipv6/README.md b/examples/features/ipv6/Kernel2Wireguard2Memif_ipv6/README.md index a0e614692c17..3f9dcb39014a 100644 --- a/examples/features/ipv6/Kernel2Wireguard2Memif_ipv6/README.md +++ b/examples/features/ipv6/Kernel2Wireguard2Memif_ipv6/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -31,7 +31,7 @@ namespace: ${NAMESPACE} resources: - client.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/features/ipv6/Memif2Memif_ipv6/README.md b/examples/features/ipv6/Memif2Memif_ipv6/README.md index 6c50bb2cd77c..fffc1978d184 100644 --- a/examples/features/ipv6/Memif2Memif_ipv6/README.md +++ b/examples/features/ipv6/Memif2Memif_ipv6/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -27,8 +27,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/features/ipv6/Memif2Wireguard2Kernel_ipv6/README.md b/examples/features/ipv6/Memif2Wireguard2Kernel_ipv6/README.md index 1ff4d679ead8..b894dcabe446 100644 --- a/examples/features/ipv6/Memif2Wireguard2Kernel_ipv6/README.md +++ b/examples/features/ipv6/Memif2Wireguard2Kernel_ipv6/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -30,8 +30,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/features/ipv6/Memif2Wireguard2Memif_ipv6/README.md b/examples/features/ipv6/Memif2Wireguard2Memif_ipv6/README.md index 316ed883383d..9716f215a64e 100644 --- a/examples/features/ipv6/Memif2Wireguard2Memif_ipv6/README.md +++ b/examples/features/ipv6/Memif2Wireguard2Memif_ipv6/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -28,8 +28,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/features/jaeger/README.md b/examples/features/jaeger/README.md index 31c1712574fd..523055c2decb 100644 --- a/examples/features/jaeger/README.md +++ b/examples/features/jaeger/README.md @@ -84,7 +84,7 @@ kubectl wait -n observability --timeout=1m --for=condition=ready pod -l name=jae Apply Jaeger pod: ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/features/jaeger/jaeger?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/features/jaeger/jaeger?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Wait for Jaeger pod status ready: @@ -94,12 +94,12 @@ kubectl wait -n observability --timeout=1m --for=condition=ready pod -l app=jaeg Apply OpenTelemetry pod: ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/features/jaeger/opentelemetry?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/features/jaeger/opentelemetry?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Apply Spire deployments (required for NSM system) ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/spire?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/spire?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Wait for Spire pods status ready: @@ -117,7 +117,7 @@ kubectl create ns nsm-system Apply NSM resources: ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/features/jaeger/nsm-system?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/features/jaeger/nsm-system?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Wait for admission-webhook-k8s: diff --git a/examples/features/mutually-aware-nses/README.md b/examples/features/mutually-aware-nses/README.md index 52c9f794ab56..37256749ea81 100644 --- a/examples/features/mutually-aware-nses/README.md +++ b/examples/features/mutually-aware-nses/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -38,7 +38,7 @@ resources: - config-file-nse-1.yaml - config-file-nse-2.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/features/nse-composition/README.md b/examples/features/nse-composition/README.md index 85b094824aa8..fc693bbeb914 100644 --- a/examples/features/nse-composition/README.md +++ b/examples/features/nse-composition/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -30,15 +30,15 @@ kind: Kustomization namespace: ${NAMESPACE} resources: -- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/nse-composition/config-file.yaml -- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/nse-composition/passthrough-1.yaml -- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/nse-composition/passthrough-2.yaml -- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/nse-composition/passthrough-3.yaml -- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/nse-composition/nse-composition-ns.yaml +- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/nse-composition/config-file.yaml +- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/nse-composition/passthrough-1.yaml +- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/nse-composition/passthrough-2.yaml +- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/nse-composition/passthrough-3.yaml +- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/nse-composition/nse-composition-ns.yaml - client.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/examples/features/nse-composition/nse-firewall?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/examples/features/nse-composition/nse-firewall?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/features/opa/README.md b/examples/features/opa/README.md index 57f37299455d..63bf21ac8a99 100644 --- a/examples/features/opa/README.md +++ b/examples/features/opa/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -38,8 +38,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/features/policy-based-routing/README.md b/examples/features/policy-based-routing/README.md index b47b90cf93bd..5fe38fbda949 100644 --- a/examples/features/policy-based-routing/README.md +++ b/examples/features/policy-based-routing/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -36,7 +36,7 @@ resources: - client.yaml - config-file-nse.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/features/scale-from-zero/README.md b/examples/features/scale-from-zero/README.md index 51e6d20374bf..2aa5ac933e3c 100644 --- a/examples/features/scale-from-zero/README.md +++ b/examples/features/scale-from-zero/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -100,8 +100,8 @@ kind: Kustomization namespace: $NAMESPACE bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-supplier-k8s?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-supplier-k8s?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml @@ -110,13 +110,13 @@ patchesStrategicMerge: configMapGenerator: - name: supplier-pod-template-configmap files: - - https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/scale-from-zero/pod-template.yaml + - https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/scale-from-zero/pod-template.yaml EOF ``` 6. Register network service: ```bash -kubectl apply -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/scale-from-zero/autoscale-netsvc.yaml +kubectl apply -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/scale-from-zero/autoscale-netsvc.yaml ``` 7. Deploy NSC and supplier: diff --git a/examples/features/select-forwarder/README.md b/examples/features/select-forwarder/README.md index 74b2ce088661..638f2520cc8b 100644 --- a/examples/features/select-forwarder/README.md +++ b/examples/features/select-forwarder/README.md @@ -25,7 +25,7 @@ kubectl create ns ns-select-forwarder Apply example resources: ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/features/select-forwarder?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/features/select-forwarder?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Wait for applications ready: diff --git a/examples/features/webhook-smartvf/README.md b/examples/features/webhook-smartvf/README.md index 8cbc670ef6e7..35d2303ba69b 100644 --- a/examples/features/webhook-smartvf/README.md +++ b/examples/features/webhook-smartvf/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -104,7 +104,7 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 resources: - postgres-cl.yaml diff --git a/examples/features/webhook/README.md b/examples/features/webhook/README.md index 7a206956cd3a..318030870f4d 100644 --- a/examples/features/webhook/README.md +++ b/examples/features/webhook/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/features/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/features/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -89,7 +89,7 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 resources: - postgres-cl.yaml diff --git a/examples/heal/local-forwarder-death/README.md b/examples/heal/local-forwarder-death/README.md index 3e5bbd8a781a..535ce4e1e900 100644 --- a/examples/heal/local-forwarder-death/README.md +++ b/examples/heal/local-forwarder-death/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -31,8 +31,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/local-forwarder-remote-forwarder/README.md b/examples/heal/local-forwarder-remote-forwarder/README.md index 8c02478feb73..12ce1b2f6ea5 100644 --- a/examples/heal/local-forwarder-remote-forwarder/README.md +++ b/examples/heal/local-forwarder-remote-forwarder/README.md @@ -13,7 +13,7 @@ Make sure that you have completed steps from [basic](../../basic) setup. Create test namespace: ```bash -NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/local-nse-death/README.md b/examples/heal/local-nse-death/README.md index 1add51b6d9e9..d8e9bf20f1d5 100644 --- a/examples/heal/local-nse-death/README.md +++ b/examples/heal/local-nse-death/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -31,8 +31,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/local-nsm-system-restart/README.md b/examples/heal/local-nsm-system-restart/README.md index 6a73836234bf..c61a8ede8dcd 100644 --- a/examples/heal/local-nsm-system-restart/README.md +++ b/examples/heal/local-nsm-system-restart/README.md @@ -12,7 +12,7 @@ Make sure that you have completed steps from [basic](../../basic). Create test namespace: ```bash -NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -31,8 +31,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml @@ -121,7 +121,7 @@ kubectl delete ns nsm-system kubectl create ns nsm-system ``` ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/basic?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/basic?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Ping from NSC to NSE: diff --git a/examples/heal/local-nsmgr-local-forwarder-memif/README.md b/examples/heal/local-nsmgr-local-forwarder-memif/README.md index 03bee562fa16..14342e6f8b55 100644 --- a/examples/heal/local-nsmgr-local-forwarder-memif/README.md +++ b/examples/heal/local-nsmgr-local-forwarder-memif/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/local-nsmgr-local-nse-memif/README.md b/examples/heal/local-nsmgr-local-nse-memif/README.md index 39eb9b409e34..e5e7ee6c0504 100644 --- a/examples/heal/local-nsmgr-local-nse-memif/README.md +++ b/examples/heal/local-nsmgr-local-nse-memif/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -31,8 +31,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/local-nsmgr-remote-nsmgr/README.md b/examples/heal/local-nsmgr-remote-nsmgr/README.md index befefdb00d5c..bde986c11934 100644 --- a/examples/heal/local-nsmgr-remote-nsmgr/README.md +++ b/examples/heal/local-nsmgr-remote-nsmgr/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/local-nsmgr-restart/README.md b/examples/heal/local-nsmgr-restart/README.md index 22fd8855e3cd..d448e6eb0e49 100644 --- a/examples/heal/local-nsmgr-restart/README.md +++ b/examples/heal/local-nsmgr-restart/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/registry-local-endpoint/README.md b/examples/heal/registry-local-endpoint/README.md index b10797d64bde..575725371bbf 100644 --- a/examples/heal/registry-local-endpoint/README.md +++ b/examples/heal/registry-local-endpoint/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -31,8 +31,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/registry-remote-forwarder/README.md b/examples/heal/registry-remote-forwarder/README.md index 082dea92e57d..adb1a1d0f426 100644 --- a/examples/heal/registry-remote-forwarder/README.md +++ b/examples/heal/registry-remote-forwarder/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/registry-remote-nsmgr/README.md b/examples/heal/registry-remote-nsmgr/README.md index 81f11c0faa07..6af28ac40797 100644 --- a/examples/heal/registry-remote-nsmgr/README.md +++ b/examples/heal/registry-remote-nsmgr/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/registry-restart/README.md b/examples/heal/registry-restart/README.md index 382341bfe6b0..793e53451ecf 100644 --- a/examples/heal/registry-restart/README.md +++ b/examples/heal/registry-restart/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -31,8 +31,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml @@ -134,7 +134,7 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesJson6902: - target: diff --git a/examples/heal/remote-forwarder-death-ip/README.md b/examples/heal/remote-forwarder-death-ip/README.md index bfc275262c76..20d0cdad0ce1 100644 --- a/examples/heal/remote-forwarder-death-ip/README.md +++ b/examples/heal/remote-forwarder-death-ip/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/remote-forwarder-death/README.md b/examples/heal/remote-forwarder-death/README.md index 4ef0ad12a2f8..75d8bbc8fe89 100644 --- a/examples/heal/remote-forwarder-death/README.md +++ b/examples/heal/remote-forwarder-death/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/remote-nse-death-ip/README.md b/examples/heal/remote-nse-death-ip/README.md index 1621b696cdce..937027fdf927 100644 --- a/examples/heal/remote-nse-death-ip/README.md +++ b/examples/heal/remote-nse-death-ip/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/remote-nse-death/README.md b/examples/heal/remote-nse-death/README.md index 836c72931c33..b53022026429 100644 --- a/examples/heal/remote-nse-death/README.md +++ b/examples/heal/remote-nse-death/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/remote-nsm-system-restart-memif-ip/README.md b/examples/heal/remote-nsm-system-restart-memif-ip/README.md index ca68bf6ab4ca..857ea07e7276 100644 --- a/examples/heal/remote-nsm-system-restart-memif-ip/README.md +++ b/examples/heal/remote-nsm-system-restart-memif-ip/README.md @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml @@ -131,7 +131,7 @@ kubectl delete ns nsm-system kubectl create ns nsm-system ``` ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/basic?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/basic?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Ping from NSC to NSE: diff --git a/examples/heal/remote-nsmgr-death/README.md b/examples/heal/remote-nsmgr-death/README.md index f8eb12e4aee5..f34516dd7056 100644 --- a/examples/heal/remote-nsmgr-death/README.md +++ b/examples/heal/remote-nsmgr-death/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml @@ -124,7 +124,7 @@ kind: Kustomization namespace: nsm-system bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsmgr?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsmgr?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsmgr.yaml @@ -167,7 +167,7 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml @@ -223,7 +223,7 @@ kubectl exec ${NEW_NSE} -n ${NAMESPACE} -- ping -c 4 172.16.1.103 Restore NSMgr setup: ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/apps/nsmgr?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -n nsm-system +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/apps/nsmgr?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 -n nsm-system ``` Delete ns: diff --git a/examples/heal/remote-nsmgr-remote-endpoint/README.md b/examples/heal/remote-nsmgr-remote-endpoint/README.md index 1cf7ea6fcfa3..62ebe162440d 100644 --- a/examples/heal/remote-nsmgr-remote-endpoint/README.md +++ b/examples/heal/remote-nsmgr-remote-endpoint/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/remote-nsmgr-restart-ip/README.md b/examples/heal/remote-nsmgr-restart-ip/README.md index d29ccef5b57a..9174da2c3dfb 100644 --- a/examples/heal/remote-nsmgr-restart-ip/README.md +++ b/examples/heal/remote-nsmgr-restart-ip/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/heal/remote-nsmgr-restart/README.md b/examples/heal/remote-nsmgr-restart/README.md index 16206fe7f359..01b3d78a33de 100644 --- a/examples/heal/remote-nsmgr-restart/README.md +++ b/examples/heal/remote-nsmgr-restart/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/heal/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/heal/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/interdomain/spire/README.md b/examples/interdomain/spire/README.md index 01b0ed885435..29f5c839a5d0 100644 --- a/examples/interdomain/spire/README.md +++ b/examples/interdomain/spire/README.md @@ -31,7 +31,7 @@ export KUBECONFIG=$KUBECONFIG1 ``` ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/interdomain/spire/cluster1?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/interdomain/spire/cluster1?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Wait for PODs status ready: @@ -48,7 +48,7 @@ export KUBECONFIG=$KUBECONFIG2 ``` ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/interdomain/spire/cluster2?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/interdomain/spire/cluster2?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Wait for PODs status ready: @@ -65,7 +65,7 @@ export KUBECONFIG=$KUBECONFIG3 ``` ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/interdomain/spire/cluster3?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/interdomain/spire/cluster3?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Wait for PODs status ready: diff --git a/examples/interdomain/usecases/FloatingKernel2Vxlan2Kernel/README.md b/examples/interdomain/usecases/FloatingKernel2Vxlan2Kernel/README.md index 35c64f8a2480..05cd51f61681 100644 --- a/examples/interdomain/usecases/FloatingKernel2Vxlan2Kernel/README.md +++ b/examples/interdomain/usecases/FloatingKernel2Vxlan2Kernel/README.md @@ -24,7 +24,7 @@ export KUBECONFIG=$KUBECONFIG2 Create test namespace: ```bash -NAMESPACE1=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/interdomain/usecases/namespace.yaml)[0]) +NAMESPACE1=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/interdomain/usecases/namespace.yaml)[0]) NAMESPACE1=${NAMESPACE1:10} ``` @@ -38,7 +38,7 @@ kind: Kustomization namespace: ${NAMESPACE1} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml @@ -94,7 +94,7 @@ export KUBECONFIG=$KUBECONFIG1 Create test namespace: ```bash -NAMESPACE2=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/interdomain/usecases/namespace.yaml)[0]) +NAMESPACE2=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/interdomain/usecases/namespace.yaml)[0]) NAMESPACE2=${NAMESPACE2:10} ``` @@ -108,7 +108,7 @@ kind: Kustomization namespace: ${NAMESPACE2} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/interdomain/usecases/FloatingKernel2Wireguard2Kernel/README.md b/examples/interdomain/usecases/FloatingKernel2Wireguard2Kernel/README.md index 53b1ed3ddcd6..04ea7214e2d8 100644 --- a/examples/interdomain/usecases/FloatingKernel2Wireguard2Kernel/README.md +++ b/examples/interdomain/usecases/FloatingKernel2Wireguard2Kernel/README.md @@ -27,7 +27,7 @@ export KUBECONFIG=$KUBECONFIG2 Create test namespace: ```bash -NAMESPACE1=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/interdomain/usecases/namespace.yaml)[0]) +NAMESPACE1=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/interdomain/usecases/namespace.yaml)[0]) NAMESPACE1=${NAMESPACE1:10} ``` @@ -67,7 +67,7 @@ export KUBECONFIG=$KUBECONFIG1 Create test namespace: ```bash -NAMESPACE2=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/interdomain/usecases/namespace.yaml)[0]) +NAMESPACE2=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/interdomain/usecases/namespace.yaml)[0]) NAMESPACE2=${NAMESPACE2:10} ``` @@ -81,7 +81,7 @@ kind: Kustomization namespace: ${NAMESPACE2} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/interdomain/usecases/Kernel2Vxlan2Kernel/README.md b/examples/interdomain/usecases/Kernel2Vxlan2Kernel/README.md index 67ce0d8c967e..60215103342d 100644 --- a/examples/interdomain/usecases/Kernel2Vxlan2Kernel/README.md +++ b/examples/interdomain/usecases/Kernel2Vxlan2Kernel/README.md @@ -21,7 +21,7 @@ export KUBECONFIG=$KUBECONFIG2 Create test namespace: ```bash -NAMESPACE1=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/interdomain/usecases/namespace.yaml)[0]) +NAMESPACE1=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/interdomain/usecases/namespace.yaml)[0]) NAMESPACE1=${NAMESPACE1:10} ``` @@ -35,7 +35,7 @@ kind: Kustomization namespace: ${NAMESPACE1} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml @@ -82,7 +82,7 @@ export KUBECONFIG=$KUBECONFIG1 Create test namespace: ```bash -NAMESPACE2=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/interdomain/usecases/namespace.yaml)[0]) +NAMESPACE2=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/interdomain/usecases/namespace.yaml)[0]) NAMESPACE2=${NAMESPACE2:10} ``` @@ -96,7 +96,7 @@ kind: Kustomization namespace: ${NAMESPACE2} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/interdomain/usecases/Kernel2Wireguard2Kernel/README.md b/examples/interdomain/usecases/Kernel2Wireguard2Kernel/README.md index 710c90e05e4c..16dd4f7dc09b 100644 --- a/examples/interdomain/usecases/Kernel2Wireguard2Kernel/README.md +++ b/examples/interdomain/usecases/Kernel2Wireguard2Kernel/README.md @@ -21,7 +21,7 @@ export KUBECONFIG=$KUBECONFIG2 Create test namespace: ```bash -NAMESPACE1=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/interdomain/usecases/namespace.yaml)[0]) +NAMESPACE1=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/interdomain/usecases/namespace.yaml)[0]) NAMESPACE1=${NAMESPACE1:10} ``` @@ -35,7 +35,7 @@ kind: Kustomization namespace: ${NAMESPACE1} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml @@ -86,7 +86,7 @@ export KUBECONFIG=$KUBECONFIG1 Create test namespace: ```bash -NAMESPACE2=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/interdomain/usecases/namespace.yaml)[0]) +NAMESPACE2=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/interdomain/usecases/namespace.yaml)[0]) NAMESPACE2=${NAMESPACE2:10} ``` @@ -100,7 +100,7 @@ kind: Kustomization namespace: ${NAMESPACE2} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/memory/README.md b/examples/memory/README.md index 39f25f665252..590d179f4a87 100644 --- a/examples/memory/README.md +++ b/examples/memory/README.md @@ -22,7 +22,7 @@ kubectl create ns nsm-system 2. Apply NSM resources for basic tests: ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/memory?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/memory?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` 3. Wait for admission-webhook-k8s: diff --git a/examples/multiforwarder/README.md b/examples/multiforwarder/README.md index f64d4273837c..6619848db6d6 100644 --- a/examples/multiforwarder/README.md +++ b/examples/multiforwarder/README.md @@ -41,7 +41,7 @@ kubectl create ns nsm-system 2. Apply NSM resources for basic tests: ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/multiforwarder?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/multiforwarder?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` 3. Wait for admission-webhook-k8s: diff --git a/examples/observability/jaeger-and-prometheus/README.md b/examples/observability/jaeger-and-prometheus/README.md index 176ef71546c9..6ae892845b7d 100644 --- a/examples/observability/jaeger-and-prometheus/README.md +++ b/examples/observability/jaeger-and-prometheus/README.md @@ -6,7 +6,7 @@ This example demonstrates how to setup Open Telemetry Collector with Jaeger and ## Run Apply Jaeger, Prometheus and OpenTelemetry Collector: ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/observability/jaeger-and-prometheus?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/observability/jaeger-and-prometheus?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Wait for OpenTelemetry Collector POD status ready: @@ -21,7 +21,7 @@ kubectl create ns nsm-system Apply NSM resources for basic tests: ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/observability/jaeger-and-prometheus/nsm-system?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/observability/jaeger-and-prometheus/nsm-system?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Wait for admission-webhook-k8s: @@ -32,7 +32,7 @@ kubectl wait --for=condition=ready --timeout=1m pod ${WH} -n nsm-system Create test namespace: ```bash -NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -58,7 +58,7 @@ namespace: ${NAMESPACE} resources: - client.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/ovs/README.md b/examples/ovs/README.md index 2830d170240f..df0b7122faba 100644 --- a/examples/ovs/README.md +++ b/examples/ovs/README.md @@ -43,7 +43,7 @@ kubectl create ns nsm-system 2. Apply NSM resources for basic tests: ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/ovs?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/ovs?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` 3. Wait for admission-webhook-k8s: diff --git a/examples/remotevlan/rvlanovs/README.md b/examples/remotevlan/rvlanovs/README.md index 66810a1ccb5b..26d9c2b2f349 100644 --- a/examples/remotevlan/rvlanovs/README.md +++ b/examples/remotevlan/rvlanovs/README.md @@ -17,7 +17,7 @@ Make sure that you have completed steps from [remotevlan](../../remotevlan) setu Deploy the forwarder: ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/remotevlan/rvlanovs?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/remotevlan/rvlanovs?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Wait forwarder to start: @@ -31,5 +31,5 @@ kubectl -n nsm-system wait --for=condition=ready --timeout=2m pod -l app=forward Delete the forwarder: ```bash -kubectl delete -k https://github.com/networkservicemesh/deployments-k8s/examples/remotevlan/rvlanovs?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl delete -k https://github.com/networkservicemesh/deployments-k8s/examples/remotevlan/rvlanovs?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` diff --git a/examples/remotevlan/rvlanovs/kustomization.yaml b/examples/remotevlan/rvlanovs/kustomization.yaml index 6a4eefd36b32..ef761132c612 100644 --- a/examples/remotevlan/rvlanovs/kustomization.yaml +++ b/examples/remotevlan/rvlanovs/kustomization.yaml @@ -5,7 +5,7 @@ kind: Kustomization namespace: nsm-system bases: - - https://github.com/networkservicemesh/deployments-k8s/apps/forwarder-ovs?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c + - https://github.com/networkservicemesh/deployments-k8s/apps/forwarder-ovs?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 configMapGenerator: - name: device-selector diff --git a/examples/remotevlan/rvlanvpp/README.md b/examples/remotevlan/rvlanvpp/README.md index 253525907ed2..527c1d9bc24e 100644 --- a/examples/remotevlan/rvlanvpp/README.md +++ b/examples/remotevlan/rvlanvpp/README.md @@ -17,7 +17,7 @@ Make sure that you have completed steps from [remotevlan](../../remotevlan) setu Deploy the forwarder: ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/remotevlan/rvlanvpp?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/remotevlan/rvlanvpp?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Wait forwarder to start: @@ -31,5 +31,5 @@ kubectl -n nsm-system wait --for=condition=ready --timeout=2m pod -l app=forward Delete the forwarder: ```bash -kubectl delete -k https://github.com/networkservicemesh/deployments-k8s/examples/remotevlan/rvlanvpp?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl delete -k https://github.com/networkservicemesh/deployments-k8s/examples/remotevlan/rvlanvpp?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` diff --git a/examples/remotevlan/rvlanvpp/kustomization.yaml b/examples/remotevlan/rvlanvpp/kustomization.yaml index 584d45913746..fb8f16bb09bb 100644 --- a/examples/remotevlan/rvlanvpp/kustomization.yaml +++ b/examples/remotevlan/rvlanvpp/kustomization.yaml @@ -5,7 +5,7 @@ kind: Kustomization namespace: nsm-system bases: - - https://github.com/networkservicemesh/deployments-k8s/apps/forwarder-vpp?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c + - https://github.com/networkservicemesh/deployments-k8s/apps/forwarder-vpp?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 configMapGenerator: - name: device-selector diff --git a/examples/spire/README.md b/examples/spire/README.md index 421b16cda1d2..9fcdb88935d8 100644 --- a/examples/spire/README.md +++ b/examples/spire/README.md @@ -4,7 +4,7 @@ To apply spire deployments following the next command: ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/spire?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/spire?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` Wait for PODs status ready: diff --git a/examples/sriov/README.md b/examples/sriov/README.md index 3f577924a38e..6e78df551a67 100644 --- a/examples/sriov/README.md +++ b/examples/sriov/README.md @@ -36,7 +36,7 @@ kubectl create ns nsm-system Apply NSM resources for basic tests: ```bash -kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/sriov?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +kubectl apply -k https://github.com/networkservicemesh/deployments-k8s/examples/sriov?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 ``` ## Cleanup diff --git a/examples/use-cases/Kernel2Kernel&Vfio2Noop/README.md b/examples/use-cases/Kernel2Kernel&Vfio2Noop/README.md index 7a04b61d7a7f..6074e3bfb065 100644 --- a/examples/use-cases/Kernel2Kernel&Vfio2Noop/README.md +++ b/examples/use-cases/Kernel2Kernel&Vfio2Noop/README.md @@ -6,7 +6,7 @@ This example shows that local kernel connection and VFIO connection can be setup Create test namespace: ```bash -NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -25,10 +25,10 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-vfio?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-vfio?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-vfio?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-vfio?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/use-cases/Kernel2Kernel/README.md b/examples/use-cases/Kernel2Kernel/README.md index a2fa9a334d49..8f2baffb4fc0 100644 --- a/examples/use-cases/Kernel2Kernel/README.md +++ b/examples/use-cases/Kernel2Kernel/README.md @@ -19,7 +19,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -40,7 +40,7 @@ namespace: ${NAMESPACE} resources: - client.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/use-cases/Kernel2KernelVLAN/README.md b/examples/use-cases/Kernel2KernelVLAN/README.md index f7d69a92e81e..25f7a816403e 100644 --- a/examples/use-cases/Kernel2KernelVLAN/README.md +++ b/examples/use-cases/Kernel2KernelVLAN/README.md @@ -16,7 +16,7 @@ hugepage, so in this case NSE pod should be created with memory limit > 2.2 GB. Create test namespace: ```bash -NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -35,8 +35,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-vlan-vpp?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-vlan-vpp?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/use-cases/Kernel2Memif/README.md b/examples/use-cases/Kernel2Memif/README.md index 86d4ed34b2ee..25b6598b56bf 100644 --- a/examples/use-cases/Kernel2Memif/README.md +++ b/examples/use-cases/Kernel2Memif/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -35,7 +35,7 @@ namespace: ${NAMESPACE} resources: - client.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/use-cases/Kernel2RVlanBreakout/README.md b/examples/use-cases/Kernel2RVlanBreakout/README.md index 83accd5d9e19..a91d0fd9e21f 100644 --- a/examples/use-cases/Kernel2RVlanBreakout/README.md +++ b/examples/use-cases/Kernel2RVlanBreakout/README.md @@ -13,7 +13,7 @@ Make sure that you have completed steps from [remotevlan](../../remotevlan) setu Create test namespace: ```bash -NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` diff --git a/examples/use-cases/Kernel2RVlanInternal/README.md b/examples/use-cases/Kernel2RVlanInternal/README.md index 84a7d071b12f..bf42e2eca24c 100644 --- a/examples/use-cases/Kernel2RVlanInternal/README.md +++ b/examples/use-cases/Kernel2RVlanInternal/README.md @@ -13,7 +13,7 @@ Make sure that you have completed steps from [remotevlan](../../remotevlan) setu Create test namespace: ```bash -NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` diff --git a/examples/use-cases/Kernel2RVlanMultiNS/README.md b/examples/use-cases/Kernel2RVlanMultiNS/README.md index 8346f90f92a4..891a083c3c41 100644 --- a/examples/use-cases/Kernel2RVlanMultiNS/README.md +++ b/examples/use-cases/Kernel2RVlanMultiNS/README.md @@ -13,9 +13,9 @@ Make sure that you have completed steps from [remotevlan](../../remotevlan) setu Create test namespace: ```bash -NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) FIRST_NAMESPACE=${NAMESPACE:10} -NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) SECOND_NAMESPACE=${NAMESPACE:10} ``` @@ -236,7 +236,7 @@ resources: - third-client.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-remote-vlan?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-remote-vlan?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 nameSuffix: -bg diff --git a/examples/use-cases/Kernel2Vxlan2Kernel&Vfio2Noop/README.md b/examples/use-cases/Kernel2Vxlan2Kernel&Vfio2Noop/README.md index 5a735597f5c1..4002ec722be2 100644 --- a/examples/use-cases/Kernel2Vxlan2Kernel&Vfio2Noop/README.md +++ b/examples/use-cases/Kernel2Vxlan2Kernel&Vfio2Noop/README.md @@ -6,7 +6,7 @@ This example shows that remote kernel over VXLAN connection and VFIO connection Create test namespace: ```bash -NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -25,10 +25,10 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-vfio?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-vfio?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-vfio?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-vfio?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/use-cases/Kernel2Vxlan2Kernel/README.md b/examples/use-cases/Kernel2Vxlan2Kernel/README.md index 8ec42bd620f6..5ff0f5226566 100644 --- a/examples/use-cases/Kernel2Vxlan2Kernel/README.md +++ b/examples/use-cases/Kernel2Vxlan2Kernel/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -34,7 +34,7 @@ namespace: ${NAMESPACE} resources: - client.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/use-cases/Kernel2Vxlan2Memif/README.md b/examples/use-cases/Kernel2Vxlan2Memif/README.md index a87f6731e649..02be22f8287d 100644 --- a/examples/use-cases/Kernel2Vxlan2Memif/README.md +++ b/examples/use-cases/Kernel2Vxlan2Memif/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -35,7 +35,7 @@ namespace: ${NAMESPACE} resources: - client.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/use-cases/Kernel2Wireguard2Kernel/README.md b/examples/use-cases/Kernel2Wireguard2Kernel/README.md index 77825617e6d1..89ed58a9366b 100644 --- a/examples/use-cases/Kernel2Wireguard2Kernel/README.md +++ b/examples/use-cases/Kernel2Wireguard2Kernel/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -34,7 +34,7 @@ namespace: ${NAMESPACE} resources: - client.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/use-cases/Kernel2Wireguard2Memif/README.md b/examples/use-cases/Kernel2Wireguard2Memif/README.md index c325eab8ea53..0159822a5723 100644 --- a/examples/use-cases/Kernel2Wireguard2Memif/README.md +++ b/examples/use-cases/Kernel2Wireguard2Memif/README.md @@ -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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -35,7 +35,7 @@ namespace: ${NAMESPACE} resources: - client.yaml bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nse.yaml diff --git a/examples/use-cases/Memif2Kernel/README.md b/examples/use-cases/Memif2Kernel/README.md index 2523922bb313..8e5bc67d7507 100644 --- a/examples/use-cases/Memif2Kernel/README.md +++ b/examples/use-cases/Memif2Kernel/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/use-cases/Memif2Memif/README.md b/examples/use-cases/Memif2Memif/README.md index db2919f405da..cf7b04aac86f 100644 --- a/examples/use-cases/Memif2Memif/README.md +++ b/examples/use-cases/Memif2Memif/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/use-cases/Memif2Vxlan2Kernel/README.md b/examples/use-cases/Memif2Vxlan2Kernel/README.md index 3530e7750e00..932bf4c4f32c 100644 --- a/examples/use-cases/Memif2Vxlan2Kernel/README.md +++ b/examples/use-cases/Memif2Vxlan2Kernel/README.md @@ -15,7 +15,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -34,8 +34,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/use-cases/Memif2Vxlan2Memif/README.md b/examples/use-cases/Memif2Vxlan2Memif/README.md index a5544642e377..c8b29baf5e9a 100644 --- a/examples/use-cases/Memif2Vxlan2Memif/README.md +++ b/examples/use-cases/Memif2Vxlan2Memif/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/use-cases/Memif2Wireguard2Kernel/README.md b/examples/use-cases/Memif2Wireguard2Kernel/README.md index 94472d3c5c59..6675b2a0b274 100644 --- a/examples/use-cases/Memif2Wireguard2Kernel/README.md +++ b/examples/use-cases/Memif2Wireguard2Kernel/README.md @@ -15,7 +15,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -34,8 +34,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/use-cases/Memif2Wireguard2Memif/README.md b/examples/use-cases/Memif2Wireguard2Memif/README.md index f2fad06a23a0..a532aa1c1c1d 100644 --- a/examples/use-cases/Memif2Wireguard2Memif/README.md +++ b/examples/use-cases/Memif2Wireguard2Memif/README.md @@ -13,7 +13,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/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -32,8 +32,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-memif?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: - patch-nsc.yaml diff --git a/examples/use-cases/SmartVF2SmartVF/README.md b/examples/use-cases/SmartVF2SmartVF/README.md index 6de342dcf7bc..986c01f90f4b 100644 --- a/examples/use-cases/SmartVF2SmartVF/README.md +++ b/examples/use-cases/SmartVF2SmartVF/README.md @@ -10,7 +10,7 @@ Make sure that you have completed steps from [ovs](../../ovs) setup. Create test namespace: ```bash -NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -24,8 +24,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: diff --git a/examples/use-cases/SriovKernel2Noop/README.md b/examples/use-cases/SriovKernel2Noop/README.md index 477cd3fc4c2d..5ad5f1b0fafd 100644 --- a/examples/use-cases/SriovKernel2Noop/README.md +++ b/examples/use-cases/SriovKernel2Noop/README.md @@ -10,7 +10,7 @@ Make sure that you have completed steps from [sriov](../../sriov) setup. Create test namespace: ```bash -NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -24,9 +24,9 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel-ponger?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel-ponger?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 patchesStrategicMerge: diff --git a/examples/use-cases/Vfio2Noop/README.md b/examples/use-cases/Vfio2Noop/README.md index a496b7f3cc4b..5cb2bdf3fb1f 100644 --- a/examples/use-cases/Vfio2Noop/README.md +++ b/examples/use-cases/Vfio2Noop/README.md @@ -10,7 +10,7 @@ Make sure that you have completed steps from [sriov](../../sriov) setup. Create test namespace: ```bash -NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/examples/use-cases/namespace.yaml)[0]) +NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/examples/use-cases/namespace.yaml)[0]) NAMESPACE=${NAMESPACE:10} ``` @@ -24,8 +24,8 @@ kind: Kustomization namespace: ${NAMESPACE} bases: -- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-vfio?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c -- https://github.com/networkservicemesh/deployments-k8s/apps/nse-vfio?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c +- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-vfio?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 +- https://github.com/networkservicemesh/deployments-k8s/apps/nse-vfio?ref=29b5e51f8961cddbb04b10f6a351208141f82d87 EOF ``` diff --git a/to-export.sh b/to-export.sh index 814c148aedae..ddad3ffff9cb 100755 --- a/to-export.sh +++ b/to-export.sh @@ -21,7 +21,7 @@ grep 'raw.githubusercontent.com' -rl examples/* | while IFS= read -r file; do sedi -E "s/(https:\/\/)?raw.githubusercontent.com\/networkservicemesh\/deployments-k8s\/[a-z0-9]*\/(.*)/${root}\2/g" "${file}" done -grep 'ref=460a0c7eb2ddeca26e1872cad8bed519695f905c' -rl examples/* | while IFS= read -r file; do +grep 'ref=29b5e51f8961cddbb04b10f6a351208141f82d87' -rl examples/* | while IFS= read -r file; do root="$(get_root "$file")" - sedi -E "s/(https:\/\/)?github.com\/networkservicemesh\/deployments-k8s\/(.*)\?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c[a-z0-9]*/${root}\2/g" "${file}" + sedi -E "s/(https:\/\/)?github.com\/networkservicemesh\/deployments-k8s\/(.*)\?ref=29b5e51f8961cddbb04b10f6a351208141f82d87[a-z0-9]*/${root}\2/g" "${file}" done diff --git a/to-local.sh b/to-local.sh index bf29949cfaff..e45ec9a9841c 100755 --- a/to-local.sh +++ b/to-local.sh @@ -22,7 +22,7 @@ grep 'raw.githubusercontent.com' -rl examples/* | while IFS= read -r file; do sedi -E "s/(https:\/\/)?raw.githubusercontent.com\/networkservicemesh\/deployments-k8s\/[a-z0-9]*\/(.*)/${root}\/\2/g" "${file}" done -grep 'ref=460a0c7eb2ddeca26e1872cad8bed519695f905c' -rl examples/* | while IFS= read -r file; do +grep 'ref=29b5e51f8961cddbb04b10f6a351208141f82d87' -rl examples/* | while IFS= read -r file; do root="$(get_root "$file")" - sedi -E "s/(https:\/\/)?github.com\/networkservicemesh\/deployments-k8s\/(.*)\?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c[a-z0-9]*/${root}\/\2/g" "${file}" + sedi -E "s/(https:\/\/)?github.com\/networkservicemesh\/deployments-k8s\/(.*)\?ref=29b5e51f8961cddbb04b10f6a351208141f82d87[a-z0-9]*/${root}\/\2/g" "${file}" done diff --git a/to-ref.sh b/to-ref.sh index 60e4a628380d..138baa39d9bd 100755 --- a/to-ref.sh +++ b/to-ref.sh @@ -17,13 +17,13 @@ get_root() { escape "${root}" } -FILE_PATTERN="$(escape 'https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/460a0c7eb2ddeca26e1872cad8bed519695f905c/\1')" +FILE_PATTERN="$(escape 'https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/29b5e51f8961cddbb04b10f6a351208141f82d87/\1')" grep "$(pwd)" -rl examples/* | while IFS= read -r file; do root="$(get_root "$file")" sedi -E "s/${root//./\.}\/([^ ]*\.[a-z]+)/${FILE_PATTERN}/g" "${file}" done -DIR_PATTERN="$(escape 'https://github.com/networkservicemesh/deployments-k8s/\1?ref=460a0c7eb2ddeca26e1872cad8bed519695f905c')" +DIR_PATTERN="$(escape 'https://github.com/networkservicemesh/deployments-k8s/\1?ref=29b5e51f8961cddbb04b10f6a351208141f82d87')" grep "$(pwd)" -rl examples/* | while IFS= read -r file; do root="$(get_root "$file")" sedi -E "s/${root//./\.}\/([^ ]*)/${DIR_PATTERN}/g" "${file}"