Skip to content

Commit b458e3b

Browse files
Merge pull request #286 from hasanawad94/kodata-update
Update kodata, buildah and buildkit for v0.19
2 parents 1ef64c5 + 213d6bb commit b458e3b

File tree

5 files changed

+2274
-186
lines changed

5 files changed

+2274
-186
lines changed

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.16.0
6+
VERSION ?= 0.19.1
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/shipwright-operator.clusterserviceversion.yaml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ metadata:
2424
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
2525
repository: https://github.com/shipwright-io/operator
2626
support: The Shipwright Contributors
27-
name: shipwright-operator.v0.16.0
27+
name: shipwright-operator.v0.19.1
2828
namespace: placeholder
2929
spec:
3030
apiservicedefinitions: {}
@@ -193,6 +193,17 @@ spec:
193193
- create
194194
- delete
195195
- patch
196+
- apiGroups:
197+
- tekton.dev
198+
resources:
199+
- pipelineruns
200+
verbs:
201+
- get
202+
- list
203+
- watch
204+
- create
205+
- delete
206+
- patch
196207
- apiGroups:
197208
- ""
198209
resources:
@@ -674,4 +685,4 @@ spec:
674685
provider:
675686
name: The Shipwright Contributors
676687
url: https://shipwright.io
677-
version: 0.16.0
688+
version: 0.19.1

config/rbac/shipwright_build_controller_role.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ rules:
3838
# BuildRuns are set as the owners of Tekton TaskRuns.
3939
# With the OwnerReferencesPermissionEnforcement admission controller enabled, controllers need the "delete" permission on objects that they set owner references on.
4040
verbs: ['get', 'list', 'watch', 'create', 'delete', 'patch']
41+
- apiGroups: ['tekton.dev']
42+
resources: ['pipelineruns']
43+
verbs: ['get', 'list', 'watch', 'create', 'delete', 'patch']
4144
- apiGroups: ['']
4245
resources: ['pods']
4346
verbs: ['get', 'list', 'watch']

0 commit comments

Comments
 (0)