From 0f743ee4f0fd388fd57741989a5ffdeb98622bc1 Mon Sep 17 00:00:00 2001 From: Hunter Gregory <42728408+huntergregory@users.noreply.github.com> Date: Wed, 4 Dec 2024 18:27:20 -0800 Subject: [PATCH] docs: missing json file in walkthrough demo Signed-off-by: Hunter Gregory <42728408+huntergregory@users.noreply.github.com> --- .../demos/walkthrough/traffic-no-cluster.json | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 cmd/policy-assistant/examples/demos/walkthrough/traffic-no-cluster.json diff --git a/cmd/policy-assistant/examples/demos/walkthrough/traffic-no-cluster.json b/cmd/policy-assistant/examples/demos/walkthrough/traffic-no-cluster.json new file mode 100644 index 00000000..133bc3de --- /dev/null +++ b/cmd/policy-assistant/examples/demos/walkthrough/traffic-no-cluster.json @@ -0,0 +1,54 @@ +[ + { + "Source": { + "Internal": { + "PodLabels": {"pod": "a"}, + "Namespace": "demo" + } + }, + "Destination": { + "Internal": { + "PodLabels": {"pod": "b"}, + "Namespace": "demo" + } + }, + "Protocol": "TCP", + "ResolvedPort": 80, + "ResolvedPortName": "serve-80-tcp" + }, + { + "Source": { + "Internal": { + "PodLabels": {"pod": "a"}, + "Namespace": "demo" + } + }, + "Destination": { + "Internal": { + "PodLabels": {"pod": "b"}, + "Namespace": "demo" + } + }, + "Protocol": "TCP", + "ResolvedPort": 81, + "ResolvedPortName": "serve-81-tcp" + }, + { + "Source": { + "Internal": { + "PodLabels": {"app": "nginx"}, + "NamespaceLabels": {"development": "true"}, + "Namespace": "demo2" + } + }, + "Destination": { + "Internal": { + "PodLabels": {"pod": "a"}, + "Namespace": "demo" + } + }, + "Protocol": "TCP", + "ResolvedPort": 81, + "ResolvedPortName": "serve-81-tcp" + } +]