generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: missing json file in walkthrough demo
Signed-off-by: Hunter Gregory <[email protected]>
- Loading branch information
1 parent
feae59d
commit 0f743ee
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
cmd/policy-assistant/examples/demos/walkthrough/traffic-no-cluster.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} | ||
] |