-
Notifications
You must be signed in to change notification settings - Fork 7
/
artifacthub-pkg.yml
111 lines (111 loc) · 3.25 KB
/
artifacthub-pkg.yml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# Kubewarden Artifacthub Package config
#
# Use this config to submit the policy to https://artifacthub.io.
#
# This config can be saved to its default location with:
# kwctl scaffold artifacthub > artifacthub-pkg.yml
version: 0.1.15
name: capabilities-psp
displayName: Capabilities PSP
createdAt: 2024-01-16T13:13:41.907494337Z
description: Replacement for the Kubernetes Pod Security Policy that controls the usage of capabilities
license: Apache-2.0
homeURL: https://github.com/kubewarden/capabilities-psp-policy
containersImages:
- name: policy
image: ghcr.io/kubewarden/policies/capabilities-psp:v0.1.15
keywords:
- psp
- container
- capability
- capabilities
links:
- name: policy
url: https://github.com/kubewarden/capabilities-psp-policy/releases/download/v0.1.15/policy.wasm
- name: source
url: https://github.com/kubewarden/capabilities-psp-policy
install: |
The policy can be obtained using [`kwctl`](https://github.com/kubewarden/kwctl):
```console
kwctl pull ghcr.io/kubewarden/policies/capabilities-psp:v0.1.15
```
Then, generate the policy manifest and tune it to your liking. For example:
```console
kwctl scaffold manifest -t ClusterAdmissionPolicy registry://ghcr.io/kubewarden/policies/capabilities-psp:v0.1.15
```
maintainers:
- name: Kubewarden developers
email: [email protected]
provider:
name: kubewarden
recommendations:
- url: https://artifacthub.io/packages/helm/kubewarden/kubewarden-controller
annotations:
kubewarden/mutation: 'true'
kubewarden/questions-ui: |
questions:
- default: [""]
description: Provides a list of capabilities that are allowed to be added to a container
tooltip: Specified as the capability name in ALL_CAPS. (e.g. `CHOWN`, `KILL`)
group: Settings
label: Allowed capabilities
required: false
type: array[
variable: allowed_capabilities
- default: [""]
description: The capabilities which must be dropped from containers.
tooltip: Specified as the capability name in ALL_CAPS. (e.g. `NET_ADMIN`)
group: Settings
label: Required drop capabilities
required: false
type: array[
variable: required_drop_capabilities
- default: [""]
description: >-
The capabilities which are added to containers by default, in addition to
the runtime defaults.
tooltip: Specified as the capability name in ALL_CAPS. (e.g. `CHOWN`)
group: Settings
label: Default add capabilities
required: false
type: array[
variable: default_add_capabilities
kubewarden/resources: Pod,Deployment,ReplicaSet,StatefulSet,DaemonSet,Job,CronJob,ReplicationController
kubewarden/rules: |
- apiGroups:
- ''
apiVersions:
- v1
resources:
- pods
operations:
- CREATE
- apiGroups:
- ''
apiVersions:
- v1
resources:
- replicationcontrollers
operations:
- CREATE
- UPDATE
- apiGroups:
- apps
apiVersions:
- v1
resources:
- deployments
- replicasets
- statefulsets
- daemonsets
operations:
- CREATE
- apiGroups:
- batch
apiVersions:
- v1
resources:
- jobs
- cronjobs
operations:
- CREATE