File tree Expand file tree Collapse file tree 5 files changed +35
-6
lines changed
internal/cmd/operator-sdk/cli
website/content/en/docs/cli Expand file tree Collapse file tree 5 files changed +35
-6
lines changed Original file line number Diff line number Diff line change
1
+ # entries is a list of entries to include in
2
+ # release notes and/or the migration guide
3
+ entries :
4
+ - description : >
5
+ Remove the Quarkus plugin (java-operator-plugins integration).
6
+
7
+ # kind is one of:
8
+ # - addition
9
+ # - change
10
+ # - deprecation
11
+ # - removal
12
+ # - bugfix
13
+ kind: "removal"
14
+
15
+ # Is this a breaking change?
16
+ breaking: true
17
+
18
+ # NOTE: ONLY USE `pull_request_override` WHEN ADDING THIS
19
+ # FILE FOR A PREVIOUSLY MERGED PULL_REQUEST!
20
+ #
21
+ # The generator auto-detects the PR number from the commit
22
+ # message in which this file was originally added.
23
+ #
24
+ # What is the pull request number (without the "#")?
25
+ # pull_request_override: 0
26
+
27
+
28
+ # Migration can be defined to automatically add a section to
29
+ # the migration guide. This is required for breaking changes.
30
+ migration:
31
+ header: Migrate to the Quarkus extension provided bootstrap
32
+ body: |
33
+ From now on, you can bootstrap your Quarkus-based operator
34
+ with the provided Quarkus tools as described in the bootstrapping
35
+ instructions - https://github.com/quarkiverse/quarkus-operator-sdk?tab=readme-ov-file#bootstrapping-a-project.
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ require (
16
16
github.com/operator-framework/ansible-operator-plugins v1.35.0
17
17
github.com/operator-framework/api v0.23.0
18
18
github.com/operator-framework/helm-operator-plugins v0.2.2
19
- github.com/operator-framework/java-operator-plugins v0.11.1
20
19
github.com/operator-framework/operator-lib v0.13.0
21
20
github.com/operator-framework/operator-manifest-tools v0.6.0
22
21
github.com/operator-framework/operator-registry v1.39.0
Original file line number Diff line number Diff line change @@ -431,8 +431,6 @@ github.com/operator-framework/api v0.23.0 h1:kHymOwcHBpBVujT49SKOCd4EVG7Odwj4wl3
431
431
github.com/operator-framework/api v0.23.0 /go.mod h1:oKcFOz+Xc1UhMi2Pzcp6qsO7wjS4r+yP7EQprQBXrfM =
432
432
github.com/operator-framework/helm-operator-plugins v0.2.2 h1:xbVRXM4VIpixrjA9OwVF+Kky6DpYHpkOnME2HEoQUfg =
433
433
github.com/operator-framework/helm-operator-plugins v0.2.2 /go.mod h1:h8HwfHHr29GRpduxy5jCL/sIe4TDarS5XHExBHVDc8k =
434
- github.com/operator-framework/java-operator-plugins v0.11.1 h1:NdKIEu9HKT5II1RZiU0LeH6QUPRHiDqzFbKDltcrjiM =
435
- github.com/operator-framework/java-operator-plugins v0.11.1 /go.mod h1:2qkhvf5jY3Myd6Ef+3HtseJyZPAAOWTa8xTOsPidHKY =
436
434
github.com/operator-framework/operator-lib v0.13.0 h1:+TWgJhbJqyNix9m1LmHK5gY/lb3CGqZX3Wvl7K0k+6I =
437
435
github.com/operator-framework/operator-lib v0.13.0 /go.mod h1:RDs1wGdOKWSMCO+BYSbqmmKGnD5jOP7TVP+KvoX8jMg =
438
436
github.com/operator-framework/operator-manifest-tools v0.6.0 h1:1fUP0ki3plXM6WivlcE6m5cV8fO2ZZVPHJM93vlgWJo =
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ package cli
16
16
17
17
import (
18
18
hybrid "github.com/operator-framework/helm-operator-plugins/pkg/plugins/hybrid/v1alpha"
19
- quarkusv1 "github.com/operator-framework/java-operator-plugins/pkg/quarkus/v1beta"
20
19
log "github.com/sirupsen/logrus"
21
20
"github.com/spf13/cobra"
22
21
"github.com/spf13/viper"
@@ -171,7 +170,6 @@ func GetPluginsCLIAndRoot() (*cli.CLI, *cobra.Command) {
171
170
grafanav1alpha.Plugin {},
172
171
deployImageBundle ,
173
172
declarativev1.Plugin {},
174
- & quarkusv1.Plugin {},
175
173
),
176
174
cli .WithDefaultPlugins (cfgv2 .Version , gov2Bundle ),
177
175
cli .WithDefaultPlugins (cfgv3 .Version , gov4Bundle ),
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ and <PROJECT VERSION> a supported project version for these plugins.
34
34
grafana.kubebuilder.io/v1-alpha | 3
35
35
helm.sdk.operatorframework.io/v1 | 3
36
36
hybrid.helm.sdk.operatorframework.io/v1-alpha | 3
37
- quarkus.javaoperatorsdk.io/v1-beta | 3
38
37
39
38
For more specific help for the init command of a certain plugins and project version
40
39
configuration please run:
You can’t perform that action at this time.
0 commit comments