Skip to content

Commit 1ad5676

Browse files
author
Thomas Reuhl
committed
Update docs
1 parent 8955913 commit 1ad5676

7 files changed

+98
-31
lines changed

deploy/helm/crds/aquasecurity.github.io_clustersbomreports.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,12 @@ spec:
7878
description: Digest is a unique and immutable identifier of an
7979
Artifact.
8080
type: string
81+
labels:
82+
additionalProperties:
83+
type: string
84+
description: Labels is a map of key value pairs from the scanned
85+
artifact
86+
type: object
8187
mimeType:
8288
description: MimeType represents a type and format of an Artifact.
8389
type: string

deploy/helm/crds/aquasecurity.github.io_clustervulnerabilityreports.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,12 @@ spec:
9494
description: Digest is a unique and immutable identifier of an
9595
Artifact.
9696
type: string
97+
labels:
98+
additionalProperties:
99+
type: string
100+
description: Labels is a map of key value pairs from the scanned
101+
artifact
102+
type: object
97103
mimeType:
98104
description: MimeType represents a type and format of an Artifact.
99105
type: string

deploy/helm/crds/aquasecurity.github.io_exposedsecretreports.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,12 @@ spec:
8989
description: Digest is a unique and immutable identifier of an
9090
Artifact.
9191
type: string
92+
labels:
93+
additionalProperties:
94+
type: string
95+
description: Labels is a map of key value pairs from the scanned
96+
artifact
97+
type: object
9298
mimeType:
9399
description: MimeType represents a type and format of an Artifact.
94100
type: string

deploy/helm/crds/aquasecurity.github.io_sbomreports.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@ spec:
7979
description: Digest is a unique and immutable identifier of an
8080
Artifact.
8181
type: string
82+
labels:
83+
additionalProperties:
84+
type: string
85+
description: Labels is a map of key value pairs from the scanned
86+
artifact
87+
type: object
8288
mimeType:
8389
description: MimeType represents a type and format of an Artifact.
8490
type: string

deploy/helm/crds/aquasecurity.github.io_vulnerabilityreports.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,12 @@ spec:
9595
description: Digest is a unique and immutable identifier of an
9696
Artifact.
9797
type: string
98+
labels:
99+
additionalProperties:
100+
type: string
101+
description: Labels is a map of key value pairs from the scanned
102+
artifact
103+
type: object
98104
mimeType:
99105
description: MimeType represents a type and format of an Artifact.
100106
type: string

deploy/static/trivy-operator.yaml

Lines changed: 58 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -890,6 +890,12 @@ spec:
890890
description: Digest is a unique and immutable identifier of an
891891
Artifact.
892892
type: string
893+
labels:
894+
additionalProperties:
895+
type: string
896+
description: Labels is a map of key value pairs from the scanned
897+
artifact
898+
type: object
893899
mimeType:
894900
description: MimeType represents a type and format of an Artifact.
895901
type: string
@@ -1301,6 +1307,12 @@ spec:
13011307
description: Digest is a unique and immutable identifier of an
13021308
Artifact.
13031309
type: string
1310+
labels:
1311+
additionalProperties:
1312+
type: string
1313+
description: Labels is a map of key value pairs from the scanned
1314+
artifact
1315+
type: object
13041316
mimeType:
13051317
description: MimeType represents a type and format of an Artifact.
13061318
type: string
@@ -1771,6 +1783,12 @@ spec:
17711783
description: Digest is a unique and immutable identifier of an
17721784
Artifact.
17731785
type: string
1786+
labels:
1787+
additionalProperties:
1788+
type: string
1789+
description: Labels is a map of key value pairs from the scanned
1790+
artifact
1791+
type: object
17741792
mimeType:
17751793
description: MimeType represents a type and format of an Artifact.
17761794
type: string
@@ -2328,6 +2346,12 @@ spec:
23282346
description: Digest is a unique and immutable identifier of an
23292347
Artifact.
23302348
type: string
2349+
labels:
2350+
additionalProperties:
2351+
type: string
2352+
description: Labels is a map of key value pairs from the scanned
2353+
artifact
2354+
type: object
23312355
mimeType:
23322356
description: MimeType represents a type and format of an Artifact.
23332357
type: string
@@ -2741,6 +2765,12 @@ spec:
27412765
description: Digest is a unique and immutable identifier of an
27422766
Artifact.
27432767
type: string
2768+
labels:
2769+
additionalProperties:
2770+
type: string
2771+
description: Labels is a map of key value pairs from the scanned
2772+
artifact
2773+
type: object
27442774
mimeType:
27452775
description: MimeType represents a type and format of an Artifact.
27462776
type: string
@@ -3204,6 +3234,25 @@ spec:
32043234
app.kubernetes.io/instance: trivy-operator
32053235
type: ClusterIP
32063236
---
3237+
# Source: trivy-operator/templates/rbac/clusterrolebinding.yaml
3238+
apiVersion: rbac.authorization.k8s.io/v1
3239+
kind: ClusterRoleBinding
3240+
metadata:
3241+
name: trivy-operator
3242+
labels:
3243+
app.kubernetes.io/name: trivy-operator
3244+
app.kubernetes.io/instance: trivy-operator
3245+
app.kubernetes.io/version: "0.29.0"
3246+
app.kubernetes.io/managed-by: kubectl
3247+
roleRef:
3248+
apiGroup: rbac.authorization.k8s.io
3249+
kind: ClusterRole
3250+
name: trivy-operator
3251+
subjects:
3252+
- kind: ServiceAccount
3253+
name: trivy-operator
3254+
namespace: trivy-system
3255+
---
32073256
# Source: trivy-operator/templates/rbac/clusterrole.yaml
32083257
apiVersion: rbac.authorization.k8s.io/v1
32093258
kind: ClusterRole
@@ -3355,20 +3404,21 @@ rules:
33553404
verbs:
33563405
- get
33573406
---
3358-
# Source: trivy-operator/templates/rbac/clusterrolebinding.yaml
3407+
# Source: trivy-operator/templates/rbac/leader-election-rolebinding.yaml
33593408
apiVersion: rbac.authorization.k8s.io/v1
3360-
kind: ClusterRoleBinding
3409+
kind: RoleBinding
33613410
metadata:
3362-
name: trivy-operator
3411+
name: trivy-operator-leader-election
3412+
namespace: trivy-system
33633413
labels:
33643414
app.kubernetes.io/name: trivy-operator
33653415
app.kubernetes.io/instance: trivy-operator
33663416
app.kubernetes.io/version: "0.29.0"
33673417
app.kubernetes.io/managed-by: kubectl
33683418
roleRef:
33693419
apiGroup: rbac.authorization.k8s.io
3370-
kind: ClusterRole
3371-
name: trivy-operator
3420+
kind: Role
3421+
name: trivy-operator-leader-election
33723422
subjects:
33733423
- kind: ServiceAccount
33743424
name: trivy-operator
@@ -3402,11 +3452,11 @@ rules:
34023452
verbs:
34033453
- create
34043454
---
3405-
# Source: trivy-operator/templates/rbac/leader-election-rolebinding.yaml
3455+
# Source: trivy-operator/templates/rbac/rolebinding.yaml
34063456
apiVersion: rbac.authorization.k8s.io/v1
34073457
kind: RoleBinding
34083458
metadata:
3409-
name: trivy-operator-leader-election
3459+
name: trivy-operator
34103460
namespace: trivy-system
34113461
labels:
34123462
app.kubernetes.io/name: trivy-operator
@@ -3416,7 +3466,7 @@ metadata:
34163466
roleRef:
34173467
apiGroup: rbac.authorization.k8s.io
34183468
kind: Role
3419-
name: trivy-operator-leader-election
3469+
name: trivy-operator
34203470
subjects:
34213471
- kind: ServiceAccount
34223472
name: trivy-operator
@@ -3453,26 +3503,6 @@ rules:
34533503
- delete
34543504
- update
34553505
---
3456-
# Source: trivy-operator/templates/rbac/rolebinding.yaml
3457-
apiVersion: rbac.authorization.k8s.io/v1
3458-
kind: RoleBinding
3459-
metadata:
3460-
name: trivy-operator
3461-
namespace: trivy-system
3462-
labels:
3463-
app.kubernetes.io/name: trivy-operator
3464-
app.kubernetes.io/instance: trivy-operator
3465-
app.kubernetes.io/version: "0.29.0"
3466-
app.kubernetes.io/managed-by: kubectl
3467-
roleRef:
3468-
apiGroup: rbac.authorization.k8s.io
3469-
kind: Role
3470-
name: trivy-operator
3471-
subjects:
3472-
- kind: ServiceAccount
3473-
name: trivy-operator
3474-
namespace: trivy-system
3475-
---
34763506
# Source: trivy-operator/templates/rbac/view-configauditreports-clusterrole.yaml
34773507
# permissions for end users to view configauditreports
34783508
apiVersion: rbac.authorization.k8s.io/v1

pkg/apis/aquasecurity/v1alpha1/zz_generated.deepcopy.go

Lines changed: 10 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)