-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.krew.yaml
61 lines (60 loc) · 2 KB
/
.krew.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: cyclonus
spec:
version: "{{ .TagName }}"
platforms:
- selector:
matchLabels:
os: linux
arch: amd64
{{addURIAndSha "https://github.com/mattfenwick/kubectl-cyclonus/releases/download/{{ .TagName }}/kubectl-cyclonus_linux_amd64.tar.gz" .TagName }}
files:
- from: "./kubectl-cyclonus"
to: "cyclonus"
- from: LICENSE
to: "."
bin: "cyclonus"
- selector:
matchLabels:
os: darwin
arch: amd64
{{addURIAndSha "https://github.com/mattfenwick/kubectl-cyclonus/releases/download/{{ .TagName }}/kubectl-cyclonus_darwin_amd64.tar.gz" .TagName }}
files:
- from: "./kubectl-cyclonus"
to: "cyclonus"
- from: LICENSE
to: "."
bin: "cyclonus"
- selector:
matchLabels:
os: darwin
arch: arm64
{{addURIAndSha "https://github.com/mattfenwick/kubectl-cyclonus/releases/download/{{ .TagName }}/kubectl-cyclonus_darwin_arm64.tar.gz" .TagName }}
files:
- from: "./kubectl-cyclonus"
to: "cyclonus"
- from: LICENSE
to: "."
bin: "cyclonus"
- selector:
matchLabels:
os: windows
arch: amd64
{{addURIAndSha "https://github.com/mattfenwick/kubectl-cyclonus/releases/download/{{ .TagName }}/kubectl-cyclonus_windows_amd64.zip" .TagName }}
files:
- from: "/kubectl-cyclonus.exe"
to: "cyclonus.exe"
- from: LICENSE
to: "."
bin: "cyclonus.exe"
shortDescription: NetworkPolicy analysis tool suite
homepage: https://github.com/mattfenwick/kubectl-cyclonus
description: |
This plugin provides a suite of tools for working with network policies, including:
- linting to detect common problems
- target- and pod-based resolution of policies, to understand how policies work in practice
and override each other
- simulation of traffic allow/deny based on application of policies to source and destination
pod and namespace labels and IP addresses