Skip to content

Commit dd1b3c5

Browse files
authored
Remove java-operator-plugins (#6824)
Signed-off-by: xstefank <xstefank122@gmail.com>
1 parent 79f14e5 commit dd1b3c5

File tree

5 files changed

+35
-6
lines changed

5 files changed

+35
-6
lines changed

changelog/fragments/01-template.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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.

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ require (
1616
github.com/operator-framework/ansible-operator-plugins v1.35.0
1717
github.com/operator-framework/api v0.23.0
1818
github.com/operator-framework/helm-operator-plugins v0.2.2
19-
github.com/operator-framework/java-operator-plugins v0.11.1
2019
github.com/operator-framework/operator-lib v0.13.0
2120
github.com/operator-framework/operator-manifest-tools v0.6.0
2221
github.com/operator-framework/operator-registry v1.39.0

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,8 +431,6 @@ github.com/operator-framework/api v0.23.0 h1:kHymOwcHBpBVujT49SKOCd4EVG7Odwj4wl3
431431
github.com/operator-framework/api v0.23.0/go.mod h1:oKcFOz+Xc1UhMi2Pzcp6qsO7wjS4r+yP7EQprQBXrfM=
432432
github.com/operator-framework/helm-operator-plugins v0.2.2 h1:xbVRXM4VIpixrjA9OwVF+Kky6DpYHpkOnME2HEoQUfg=
433433
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=
436434
github.com/operator-framework/operator-lib v0.13.0 h1:+TWgJhbJqyNix9m1LmHK5gY/lb3CGqZX3Wvl7K0k+6I=
437435
github.com/operator-framework/operator-lib v0.13.0/go.mod h1:RDs1wGdOKWSMCO+BYSbqmmKGnD5jOP7TVP+KvoX8jMg=
438436
github.com/operator-framework/operator-manifest-tools v0.6.0 h1:1fUP0ki3plXM6WivlcE6m5cV8fO2ZZVPHJM93vlgWJo=

internal/cmd/operator-sdk/cli/cli.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ package cli
1616

1717
import (
1818
hybrid "github.com/operator-framework/helm-operator-plugins/pkg/plugins/hybrid/v1alpha"
19-
quarkusv1 "github.com/operator-framework/java-operator-plugins/pkg/quarkus/v1beta"
2019
log "github.com/sirupsen/logrus"
2120
"github.com/spf13/cobra"
2221
"github.com/spf13/viper"
@@ -171,7 +170,6 @@ func GetPluginsCLIAndRoot() (*cli.CLI, *cobra.Command) {
171170
grafanav1alpha.Plugin{},
172171
deployImageBundle,
173172
declarativev1.Plugin{},
174-
&quarkusv1.Plugin{},
175173
),
176174
cli.WithDefaultPlugins(cfgv2.Version, gov2Bundle),
177175
cli.WithDefaultPlugins(cfgv3.Version, gov4Bundle),

website/content/en/docs/cli/operator-sdk.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ and <PROJECT VERSION> a supported project version for these plugins.
3434
grafana.kubebuilder.io/v1-alpha | 3
3535
helm.sdk.operatorframework.io/v1 | 3
3636
hybrid.helm.sdk.operatorframework.io/v1-alpha | 3
37-
quarkus.javaoperatorsdk.io/v1-beta | 3
3837
3938
For more specific help for the init command of a certain plugins and project version
4039
configuration please run:

0 commit comments

Comments
 (0)