Skip to content

Commit

Permalink
Fix #1309: add permissions to patch events
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaferraro committed Mar 17, 2020
1 parent a8f8db9 commit a2f9629
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 4 deletions.
42 changes: 42 additions & 0 deletions build/maven/pom-runtime.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@
<groupId>org.apache.camel.k</groupId>
<artifactId>camel-k-runtime-main</artifactId>
<version>${runtime.version}</version>
<exclusions>
<exclusion>
<groupId>com.cedarsoftware</groupId>
<artifactId>java-util</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel.k</groupId>
Expand Down Expand Up @@ -108,6 +114,10 @@
<groupId>com.oracle.substratevm</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.graalvm.nativeimage</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -119,6 +129,10 @@
<groupId>com.oracle.substratevm</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.graalvm.nativeimage</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -130,6 +144,10 @@
<groupId>com.oracle.substratevm</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.graalvm.nativeimage</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -141,6 +159,10 @@
<groupId>com.oracle.substratevm</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.graalvm.nativeimage</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -152,6 +174,10 @@
<groupId>com.oracle.substratevm</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.graalvm.nativeimage</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -163,6 +189,10 @@
<groupId>com.oracle.substratevm</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.graalvm.nativeimage</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -174,6 +204,10 @@
<groupId>com.oracle.substratevm</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.graalvm.nativeimage</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -185,6 +219,10 @@
<groupId>com.oracle.substratevm</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.graalvm.nativeimage</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -196,6 +234,10 @@
<groupId>com.oracle.substratevm</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.graalvm.nativeimage</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ spec:
- events
verbs:
- create
- patch
- get
- list
- watch
Expand Down
1 change: 1 addition & 0 deletions deploy/operator-role-events.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ rules:
- events
verbs:
- create
- patch
- get
- list
- watch
1 change: 1 addition & 0 deletions deploy/operator-role-olm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ rules:
- events
verbs:
- create
- patch
- get
- list
- watch
Expand Down
Loading

0 comments on commit a2f9629

Please sign in to comment.