File tree Expand file tree Collapse file tree 2 files changed +29
-1
lines changed
operator-framework/src/test
java/com/github/containersolutions/operator
resources/com/github/containersolutions/operator Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 15
15
16
16
import static com .github .containersolutions .operator .IntegrationTestSupport .TEST_NAMESPACE ;
17
17
import static org .assertj .core .api .Assertions .assertThat ;
18
+ import static org .assertj .core .api .Assertions .fail ;
18
19
import static org .awaitility .Awaitility .await ;
19
20
20
21
@ TestInstance (TestInstance .Lifecycle .PER_CLASS )
@@ -64,4 +65,10 @@ public void configMapGetsCreatedForTestCustomResource() throws Exception {
64
65
});
65
66
});
66
67
}
68
+
69
+ @ Test
70
+ public void eventIsSkippedIfNoGenerationChangedOnMetadataOnlyUpdate () {
71
+ fail ("TODO" );
72
+ }
73
+
67
74
}
Original file line number Diff line number Diff line change 11
11
singular : customservice
12
12
kind : CustomService
13
13
shortNames :
14
- - cs
14
+ - cs
15
+
16
+
17
+ # apiVersion: apiextensions.k8s.io/v1
18
+ # kind: CustomResourceDefinition
19
+ # metadata:
20
+ # name: customservices.sample.javaoperatorsdk
21
+ # spec:
22
+ # group: sample.javaoperatorsdk
23
+ # versions:
24
+ # - name: v1
25
+ # served: true
26
+ # storage: true
27
+ # subresources:
28
+ # status: {}
29
+ # scope: Namespaced
30
+ # names:
31
+ # plural: customservices
32
+ # singular: customservice
33
+ # kind: CustomService
34
+ # shortNames:
35
+ # - cs
You can’t perform that action at this time.
0 commit comments