Skip to content

Commit 91d2f7b

Browse files
committed
add job permission to create manually triggerede vulnerability scans
1 parent bd03dd5 commit 91d2f7b

File tree

7 files changed

+14
-11
lines changed

7 files changed

+14
-11
lines changed

.github/workflows/docker-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ on:
1616

1717
env:
1818
SDK_VERSION: "v1.24.0"
19-
# IMG: ghcr.io/kubero-dev/kubero-operator/kuberoapp:v0.0.111
20-
# BUNDLE_IMG: ghcr.io/kubero-dev/kubero-operator/kuberoapp-bundle:v0.0.111
19+
# IMG: ghcr.io/kubero-dev/kubero-operator/kuberoapp:v0.0.112
20+
# BUNDLE_IMG: ghcr.io/kubero-dev/kubero-operator/kuberoapp-bundle:v0.0.112
2121

2222
jobs:
2323
# Push image to GitHub Packages.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= 0.0.111
6+
VERSION ?= 0.0.112
77

88
# CHANNELS define the bundle channels used in the bundle.
99
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")

bundle/manifests/kubero-operator.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -706,13 +706,13 @@ metadata:
706706
capabilities: Basic Install
707707
categories: Integration & Delivery
708708
certified: "false"
709-
containerImage: ghcr.io/kubero-dev/kubero-operator/kuberoapp:v0.0.111
709+
containerImage: ghcr.io/kubero-dev/kubero-operator/kuberoapp:v0.0.112
710710
description: Kubero is a GitOps continuous delivery tool for Kubernetes.
711711
operators.operatorframework.io/builder: operator-sdk-v1.24.0
712712
operators.operatorframework.io/project_layout: helm.sdk.operatorframework.io/v1
713713
repository: https://github.com/kubero-dev/kubero
714714
support: Kubero Community
715-
name: kubero-operator.v0.0.111
715+
name: kubero-operator.v0.0.112
716716
namespace: placeholder
717717
spec:
718718
apiservicedefinitions: {}
@@ -1402,7 +1402,7 @@ spec:
14021402
- --metrics-bind-address=127.0.0.1:8080
14031403
- --leader-elect
14041404
- --leader-election-id=kubero-operator
1405-
image: ghcr.io/kubero-dev/kubero-operator/kuberoapp:v0.0.111
1405+
image: ghcr.io/kubero-dev/kubero-operator/kuberoapp:v0.0.112
14061406
livenessProbe:
14071407
httpGet:
14081408
path: /healthz
@@ -1489,4 +1489,4 @@ spec:
14891489
provider:
14901490
name: kubero
14911491
url: https://github.com/kubero-dev/
1492-
version: 0.0.111
1492+
version: 0.0.112

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ kind: Kustomization
1313
images:
1414
- name: controller
1515
newName: ghcr.io/kubero-dev/kubero-operator/kuberoapp
16-
newTag: v0.0.111
16+
newTag: v0.0.112

config/manifests/bases/kubero-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
capabilities: Basic Install
77
categories: Integration & Delivery
88
certified: "false"
9-
containerImage: ghcr.io/kubero-dev/kubero-operator/kuberoapp:v0.0.111
9+
containerImage: ghcr.io/kubero-dev/kubero-operator/kuberoapp:v0.0.112
1010
description: Kubero is a GitOps continuous delivery tool for Kubernetes.
1111
repository: https://github.com/kubero-dev/kubero
1212
support: Kubero Community

deploy/operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1132,7 +1132,7 @@ spec:
11321132
- --metrics-bind-address=127.0.0.1:8080
11331133
- --leader-elect
11341134
- --leader-election-id=kubero-operator
1135-
image: ghcr.io/kubero-dev/kubero-operator/kuberoapp:v0.0.111
1135+
image: ghcr.io/kubero-dev/kubero-operator/kuberoapp:v0.0.112
11361136
livenessProbe:
11371137
httpGet:
11381138
path: /healthz

helm-charts/kubero/templates/serviceaccount.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ rules:
3434
resources: ["customresourcedefinitions"]
3535
verbs: ["list", "watch", "get"]
3636
- apiGroups: [""]
37-
resources: ["namespaces", "secrets", "pods", "pods/log", "events", "persistentvolumeclaims", "persistentvolumes", "jobs"]
37+
resources: ["namespaces", "secrets", "pods", "pods/log", "events", "persistentvolumeclaims", "persistentvolumes"]
38+
verbs: ["*"]
39+
- apiGroups: ["batch"]
40+
resources: ["jobs"]
3841
verbs: ["*"]
3942
- apiGroups: ["apps"]
4043
resources: ["deployments"]

0 commit comments

Comments
 (0)