Skip to content

Commit bda93f1

Browse files
authored
Update application-api refs (#476)
Signed-off-by: thepetk <[email protected]>
1 parent ac37a3a commit bda93f1

40 files changed

+41
-41
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ENVIRONMENT ?= ""
4747
ENABLE_WEBHOOKS ?= true
4848
ENABLE_WEBHOOK_HTTP2 ?=false
4949

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

5252
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
5353
ENVTEST_K8S_VERSION = 1.22

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

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

9-
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`.
9+
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`.
1010

1111
## Documentation
1212

config/samples/snapshot/snapshot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# API type definition is in https://github.com/redhat-appstudio/application-api/tree/main/api/v1alpha1
1+
# API type definition is in https://github.com/konflux-ci/application-api/tree/main/api/v1alpha1
22
apiVersion: appstudio.redhat.com/v1alpha1
33
kind: Snapshot
44
metadata:

contracts/pact_state_handlers_methods.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ import (
2323
"strings"
2424
"time"
2525

26+
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
2627
"github.com/onsi/ginkgo"
2728
gomega "github.com/onsi/gomega"
2829
models "github.com/pact-foundation/pact-go/v2/models"
29-
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
3030

3131
core "k8s.io/api/core/v1"
3232
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"

contracts/pact_utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
package contracts
1717

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

2121
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2222
)

controllers/application_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import (
4646
"sigs.k8s.io/controller-runtime/pkg/source"
4747
"sigs.k8s.io/yaml"
4848

49-
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
49+
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
5050
devfile "github.com/redhat-appstudio/application-service/pkg/devfile"
5151
logutil "github.com/redhat-appstudio/application-service/pkg/log"
5252
)

controllers/application_controller_conditions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
ctrl "sigs.k8s.io/controller-runtime"
2727
"sigs.k8s.io/controller-runtime/pkg/client"
2828

29-
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
29+
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
3030
)
3131

3232
func (r *ApplicationReconciler) SetCreateConditionAndUpdateCR(ctx context.Context, req ctrl.Request, application *appstudiov1alpha1.Application, createError error) {

controllers/application_controller_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ import (
2222

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

25+
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
2526
. "github.com/onsi/ginkgo"
2627
. "github.com/onsi/gomega"
27-
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
2828
cdqanalysis "github.com/redhat-appstudio/application-service/cdq-analysis/pkg"
2929
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3030
"k8s.io/apimachinery/pkg/types"

controllers/component_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ import (
5050
devfileParserUtil "github.com/devfile/library/v2/pkg/devfile/parser/util"
5151
"github.com/go-logr/logr"
5252

53-
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
53+
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
5454
devfile "github.com/redhat-appstudio/application-service/pkg/devfile"
5555
"github.com/redhat-appstudio/application-service/pkg/github"
5656
logutil "github.com/redhat-appstudio/application-service/pkg/log"

controllers/component_controller_conditions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"k8s.io/client-go/util/retry"
2626
ctrl "sigs.k8s.io/controller-runtime"
2727

28-
appstudiov1alpha1 "github.com/redhat-appstudio/application-api/api/v1alpha1"
28+
appstudiov1alpha1 "github.com/konflux-ci/application-api/api/v1alpha1"
2929
logutil "github.com/redhat-appstudio/application-service/pkg/log"
3030
)
3131

0 commit comments

Comments
 (0)