Skip to content

Commit

Permalink
Update application-api refs
Browse files Browse the repository at this point in the history
Signed-off-by: thepetk <[email protected]>
  • Loading branch information
thepetk committed May 29, 2024
1 parent 926cef4 commit 5987bdd
Show file tree
Hide file tree
Showing 40 changed files with 41 additions and 41 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ENVIRONMENT ?= ""
ENABLE_WEBHOOKS ?= true
ENABLE_WEBHOOK_HTTP2 ?=false

APPLICATION_API_CRD = https://raw.githubusercontent.com/redhat-appstudio/application-api/main/manifests/application-api-customresourcedefinitions.yaml
APPLICATION_API_CRD = https://raw.githubusercontent.com/konflux-ci/application-api/main/manifests/application-api-customresourcedefinitions.yaml

# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
ENVTEST_K8S_VERSION = 1.22
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

A Kubernetes operator to create, manage and control the lifecycle of applications and components.

This repository is closely associated with the [application-api](https://github.com/redhat-appstudio/application-api/) repository, which contains the Kubernetes CRD definitions for the application-service specific resources - `Application`, `Component` and `ComponentDetectionQuery`.
This repository is closely associated with the [application-api](https://github.com/konflux-ci/application-api/) repository, which contains the Kubernetes CRD definitions for the application-service specific resources - `Application`, `Component` and `ComponentDetectionQuery`.

## Documentation

Expand Down
2 changes: 1 addition & 1 deletion config/samples/snapshot/snapshot.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# API type definition is in https://github.com/redhat-appstudio/application-api/tree/main/api/v1alpha1
# API type definition is in https://github.com/konflux-ci/application-api/tree/main/api/v1alpha1
apiVersion: appstudio.redhat.com/v1alpha1
kind: Snapshot
metadata:
Expand Down
2 changes: 1 addition & 1 deletion contracts/pact_state_handlers_methods.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ import (
"strings"
"time"

appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
"github.com/onsi/ginkgo"
gomega "github.com/onsi/gomega"
models "github.com/pact-foundation/pact-go/v2/models"
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"

core "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
Expand Down
2 changes: 1 addition & 1 deletion contracts/pact_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package contracts

import (
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"

metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
Expand Down
2 changes: 1 addition & 1 deletion controllers/application_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import (
"sigs.k8s.io/controller-runtime/pkg/source"
"sigs.k8s.io/yaml"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
devfile "github.com/redhat-appstudio/application-service/pkg/devfile"
logutil "github.com/redhat-appstudio/application-service/pkg/log"
)
Expand Down
2 changes: 1 addition & 1 deletion controllers/application_controller_conditions.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
)

func (r *ApplicationReconciler) SetCreateConditionAndUpdateCR(ctx context.Context, req ctrl.Request, application *appstudiov1alpha1.Application, createError error) {
Expand Down
2 changes: 1 addition & 1 deletion controllers/application_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ import (

"github.com/devfile/library/v2/pkg/devfile/parser"

appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
cdqanalysis "github.com/redhat-appstudio/application-service/cdq-analysis/pkg"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
Expand Down
2 changes: 1 addition & 1 deletion controllers/component_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import (
devfileParserUtil "github.com/devfile/library/v2/pkg/devfile/parser/util"
"github.com/go-logr/logr"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
devfile "github.com/redhat-appstudio/application-service/pkg/devfile"
"github.com/redhat-appstudio/application-service/pkg/github"
logutil "github.com/redhat-appstudio/application-service/pkg/log"
Expand Down
2 changes: 1 addition & 1 deletion controllers/component_controller_conditions.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"k8s.io/client-go/util/retry"
ctrl "sigs.k8s.io/controller-runtime"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
logutil "github.com/redhat-appstudio/application-service/pkg/log"
)

Expand Down
2 changes: 1 addition & 1 deletion controllers/component_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ import (
"github.com/devfile/library/v2/pkg/devfile/parser"
data "github.com/devfile/library/v2/pkg/devfile/parser/data"
"github.com/devfile/library/v2/pkg/devfile/parser/data/v2/common"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
devfilePkg "github.com/redhat-appstudio/application-service/pkg/devfile"

spiapi "github.com/redhat-appstudio/service-provider-integration-operator/api/v1beta1"
Expand Down
2 changes: 1 addition & 1 deletion controllers/componentdetectionquery_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import (

"github.com/go-logr/logr"
"github.com/hashicorp/go-multierror"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
"github.com/prometheus/client_golang/prometheus"
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
cdqanalysis "github.com/redhat-appstudio/application-service/cdq-analysis/pkg"
"github.com/redhat-appstudio/application-service/pkg/github"
logutil "github.com/redhat-appstudio/application-service/pkg/log"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
logutil "github.com/redhat-appstudio/application-service/pkg/log"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"sigs.k8s.io/controller-runtime/pkg/client/fake"
"sigs.k8s.io/controller-runtime/pkg/reconcile"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
)
Expand Down
2 changes: 1 addition & 1 deletion controllers/componentdetectionquery_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ import (
"github.com/prometheus/client_golang/prometheus/testutil"
"github.com/redhat-appstudio/application-service/pkg/metrics"

appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"

batchv1 "k8s.io/api/batch/v1"
corev1 "k8s.io/api/core/v1"
Expand Down
2 changes: 1 addition & 1 deletion controllers/mapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package controllers

import (
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
Expand Down
2 changes: 1 addition & 1 deletion controllers/mapper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"context"
"testing"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion controllers/start_test_env.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ import (

ctrl "sigs.k8s.io/controller-runtime"

appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
routev1 "github.com/openshift/api/route/v1"
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"

github "github.com/redhat-appstudio/application-service/pkg/github"
"github.com/redhat-appstudio/application-service/pkg/spi"
Expand Down
2 changes: 1 addition & 1 deletion controllers/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
data "github.com/devfile/library/v2/pkg/devfile/parser/data"
"github.com/devfile/library/v2/pkg/devfile/parser/data/v2/common"
"github.com/go-logr/logr"
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
cdqanalysis "github.com/redhat-appstudio/application-service/cdq-analysis/pkg"
devfile "github.com/redhat-appstudio/application-service/pkg/devfile"
"github.com/redhat-appstudio/application-service/pkg/metrics"
Expand Down
2 changes: 1 addition & 1 deletion controllers/update_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import (
"github.com/devfile/api/v2/pkg/devfile"
v2 "github.com/devfile/library/v2/pkg/devfile/parser/data/v2"
"github.com/devfile/library/v2/pkg/devfile/parser/data/v2/common"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
"github.com/prometheus/client_golang/prometheus/testutil"
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
devfilePkg "github.com/redhat-appstudio/application-service/pkg/devfile"
"github.com/redhat-appstudio/application-service/pkg/metrics"
"github.com/stretchr/testify/assert"
Expand Down
2 changes: 1 addition & 1 deletion controllers/webhooks/application_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"fmt"

"github.com/go-logr/logr"
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/util/validation"
ctrl "sigs.k8s.io/controller-runtime"
Expand Down
2 changes: 1 addition & 1 deletion controllers/webhooks/application_webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"

metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
//+kubebuilder:scaffold:imports
Expand Down
2 changes: 1 addition & 1 deletion controllers/webhooks/application_webhook_unit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"context"
"testing"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
"go.uber.org/zap/zapcore"
"sigs.k8s.io/controller-runtime/pkg/log/zap"

Expand Down
2 changes: 1 addition & 1 deletion controllers/webhooks/component_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"fmt"
"net/url"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
"github.com/redhat-appstudio/application-service/pkg/util"

"github.com/go-logr/logr"
Expand Down
2 changes: 1 addition & 1 deletion controllers/webhooks/component_webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"

metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
Expand Down
2 changes: 1 addition & 1 deletion controllers/webhooks/component_webhook_unit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"fmt"
"testing"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
"github.com/redhat-appstudio/application-service/pkg/util"
"go.uber.org/zap/zapcore"
"sigs.k8s.io/controller-runtime/pkg/client"
Expand Down
2 changes: 1 addition & 1 deletion controllers/webhooks/webhook_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
toolkit "github.com/konflux-ci/operator-toolkit/webhook"
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
admissionv1beta1 "k8s.io/api/admission/v1beta1"

//+kubebuilder:scaffold:imports
Expand Down
2 changes: 1 addition & 1 deletion docs/serviceability.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ For more information, on how to debug on RHTAP Staging or how to set up a debugg
## FAQs
Q. Where can I view the application-service API types?

A. The application-service API types and their corresponding webhooks are defined in the [redhat-appstudio/application-api](https://github.com/redhat-appstudio/application-api) repository. You can also find the API reference information in the [Book of AppStudio](https://redhat-appstudio.github.io/architecture/ref/index.html) website.
A. The application-service API types and their corresponding webhooks are defined in the [konflux-ci/application-api](https://github.com/konflux-ci/application-api) repository. You can also find the API reference information in the [Book of AppStudio](https://redhat-appstudio.github.io/architecture/ref/index.html) website.

Q. Where are the application-service controller logic located?

Expand Down
2 changes: 1 addition & 1 deletion gitops/generate_build.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"regexp"
"strings"

appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
pacv1alpha1 "github.com/openshift-pipelines/pipelines-as-code/pkg/apis/pipelinesascode/v1alpha1"
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
gitopsprepare "github.com/redhat-appstudio/application-service/gitops/prepare"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
Expand Down
2 changes: 1 addition & 1 deletion gitops/generate_build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"strings"
"testing"

appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
pacv1alpha1 "github.com/openshift-pipelines/pipelines-as-code/pkg/apis/pipelinesascode/v1alpha1"
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
gitopsprepare "github.com/redhat-appstudio/application-service/gitops/prepare"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
Expand Down
2 changes: 1 addition & 1 deletion gitops/prepare/prepare.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package prepare
import (
"context"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"

corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/types"
Expand Down
2 changes: 1 addition & 1 deletion gitops/prepare/prepare_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"reflect"
"testing"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
crclient "sigs.k8s.io/controller-runtime/pkg/client"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ require (
github.com/gofri/go-github-ratelimit v1.0.3-0.20230428184158-a500e14de53f
github.com/google/go-github/v59 v59.0.0
github.com/hashicorp/go-multierror v1.1.1
github.com/konflux-ci/application-api v0.0.0-20240527211352-be061932d497
github.com/konflux-ci/operator-toolkit v0.0.0-20240402130556-ef6dcbeca69d
github.com/migueleliasweb/go-github-mock v0.0.23
github.com/onsi/ginkgo v1.16.5
Expand All @@ -18,7 +19,6 @@ require (
github.com/openshift/api v0.0.0-20220912161038-458ad9ca9ca5
github.com/pact-foundation/pact-go/v2 v2.0.0-beta.23
github.com/prometheus/client_golang v1.17.0
github.com/redhat-appstudio/application-api v0.0.0-20240326104708-c647c0bdcda5
github.com/redhat-appstudio/application-service/cdq-analysis v0.0.0
github.com/redhat-appstudio/service-provider-integration-operator v0.2023.22-0.20230713080056-eae17aa8c172
github.com/redhat-developer/gitops-generator v0.0.0-20231030195824-c48f5bf6bf21
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,8 @@ github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+o
github.com/klauspost/compress v1.15.11/go.mod h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM=
github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg=
github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw=
github.com/konflux-ci/application-api v0.0.0-20240527211352-be061932d497 h1:Xv063qqQY8tPNYvx4+hTtWw4DPDAVa4A1SJibvPBsS4=
github.com/konflux-ci/application-api v0.0.0-20240527211352-be061932d497/go.mod h1:948Z+a1IbfRT0RtoHzWWSN9YEucSbMJTHaMhz7dVICc=
github.com/konflux-ci/operator-toolkit v0.0.0-20240402130556-ef6dcbeca69d h1:z7j3mglNoXvIrw5Vz/Ul+izoITRaqYURPIWrFoEyHgI=
github.com/konflux-ci/operator-toolkit v0.0.0-20240402130556-ef6dcbeca69d/go.mod h1:AcChx7FjpYSIkDvQgaUKyauuF0PXm3ivB5MqZSC9Eis=
github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
Expand Down Expand Up @@ -668,8 +670,6 @@ github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsT
github.com/prometheus/procfs v0.0.3/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ=
github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo=
github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo=
github.com/redhat-appstudio/application-api v0.0.0-20240326104708-c647c0bdcda5 h1:jhrq0LbJYYwSx2bDQVD4fUq6fj0JJSnXFsX0x1+0lm0=
github.com/redhat-appstudio/application-api v0.0.0-20240326104708-c647c0bdcda5/go.mod h1:YvckuKHe82eWloGk0/BpSw4YYG2owrGZAanztbOj3pQ=
github.com/redhat-appstudio/remote-secret v0.0.0-20230713072146-a6094c712436 h1:6XYknDslXDSVpNqEKnI+gKj3Uu4afK2S+IIH3KogX1E=
github.com/redhat-appstudio/remote-secret v0.0.0-20230713072146-a6094c712436/go.mod h1:QlcxNg0q63QFGr9ceI3dH7a7vO6gGh+2TJrbTiMf9DE=
github.com/redhat-appstudio/service-provider-integration-operator v0.2023.22-0.20230713080056-eae17aa8c172 h1:Zibq2RBTzcoDgZcTfM5k2o1qrKuix3YPtYQ/NuP039Y=
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import (

routev1 "github.com/openshift/api/route/v1"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
cdqanalysis "github.com/redhat-appstudio/application-service/cdq-analysis/pkg"
"github.com/redhat-appstudio/application-service/controllers"
"github.com/redhat-appstudio/application-service/controllers/webhooks"
Expand Down
2 changes: 1 addition & 1 deletion pkg/devfile/devfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"github.com/devfile/library/v2/pkg/devfile/parser/data/v2/common"
cdqanalysis "github.com/redhat-appstudio/application-service/cdq-analysis/pkg"

appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"

routev1 "github.com/openshift/api/route/v1"
appsv1 "k8s.io/api/apps/v1"
Expand Down
2 changes: 1 addition & 1 deletion pkg/devfile/devfile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
data "github.com/devfile/library/v2/pkg/devfile/parser/data"
v2 "github.com/devfile/library/v2/pkg/devfile/parser/data/v2"
"github.com/devfile/library/v2/pkg/devfile/parser/data/v2/common"
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
"github.com/stretchr/testify/assert"
"k8s.io/apimachinery/pkg/util/intstr"
"sigs.k8s.io/yaml"
Expand Down
2 changes: 1 addition & 1 deletion pkg/spi/spi.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"path/filepath"
"strconv"

"github.com/redhat-appstudio/application-api/api/v1alpha1"
"github.com/konflux-ci/application-api/api/v1alpha1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"github.com/go-logr/logr"
Expand Down
2 changes: 1 addition & 1 deletion pkg/spi/spi_mock.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"io"
"strings"

"github.com/redhat-appstudio/application-api/api/v1alpha1"
"github.com/konflux-ci/application-api/api/v1alpha1"
spiapi "github.com/redhat-appstudio/service-provider-integration-operator/api/v1beta1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
Expand Down
2 changes: 1 addition & 1 deletion pkg/spi/spi_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"context"
"testing"

"github.com/redhat-appstudio/application-api/api/v1alpha1"
"github.com/konflux-ci/application-api/api/v1alpha1"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

Expand Down

0 comments on commit 5987bdd

Please sign in to comment.