File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
core/src/main/java/io/javaoperatorsdk/webhook/conversion
quarkus/src/test/java/io/javaoperatorsdk/webhook/sample
spring-boot/src/test/java/io/javaoperatorsdk/webhook/sample/springboot Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public CompletionStage<ConversionReview> handle(ConversionReview conversionRevie
40
40
conversionReview .getRequest ().getObjects ().stream ()
41
41
.map (HasMetadata .class ::cast ).collect (Collectors .toList ()),
42
42
Utils .versionOfApiVersion (conversionReview .getRequest ().getDesiredAPIVersion ()))
43
- .thenApply (convertedObjects -> createResponse (convertedObjects , conversionReview ));
43
+ .thenApply (convertedObjects -> createResponse (convertedObjects , conversionReview ));
44
44
} catch (MissingConversionMapperException e ) {
45
45
log .error ("Error in conversion hook. UID: {}" ,
46
46
conversionReview .getRequest ().getUid (), e );
Original file line number Diff line number Diff line change 13
13
* The target version of the resource this mapper supports. Example values: "v1","v1beta1". This
14
14
* is not the full API Version just the version suffix, for example only the "v1" of api version:
15
15
* "apiextensions.k8s.io/v1"
16
- *
16
+ *
17
17
* @return version
18
18
**/
19
19
String value ();
Original file line number Diff line number Diff line change 52
52
<directory-maven-plugin .version>1.0</directory-maven-plugin .version>
53
53
<nexus-staging-maven-plugin .version>1.6.13</nexus-staging-maven-plugin .version>
54
54
<maven-surefire-plugin .version>3.0.0</maven-surefire-plugin .version>
55
- <formatter-maven-plugin .version>2.17.1 </formatter-maven-plugin .version>
55
+ <formatter-maven-plugin .version>2.22.0 </formatter-maven-plugin .version>
56
56
<impsort-maven-plugin .version>1.8.0</impsort-maven-plugin .version>
57
57
<maven-install-plugin .version>2.5.2</maven-install-plugin .version>
58
58
<maven-clean-plugin .version>3.1.0</maven-clean-plugin .version>
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ static void deployService() throws IOException {
20
20
InputStream certManager =
21
21
new URL (
22
22
"https://github.com/cert-manager/cert-manager/releases/download/v1.10.1/cert-manager.yaml" )
23
- .openStream ()) {
23
+ .openStream ()) {
24
24
applyAndWait (client , certManager );
25
25
applyAndWait (client , "target/kubernetes/minikube.yml" );
26
26
applyAndWait (client , "k8s/validating-webhook-configuration.yml" );
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ static void deployService() throws IOException {
21
21
InputStream certManager =
22
22
new URL (
23
23
"https://github.com/cert-manager/cert-manager/releases/download/v1.10.1/cert-manager.yaml" )
24
- .openStream ()) {
24
+ .openStream ()) {
25
25
applyAndWait (client , certManager );
26
26
applyAndWait (client , "target/classes/META-INF/dekorate/kubernetes.yml" );
27
27
applyAndWait (client , "k8s/validating-webhook-configuration.yml" );
You can’t perform that action at this time.
0 commit comments