Skip to content

Commit

Permalink
Change package name to something resolvable
Browse files Browse the repository at this point in the history
From: cloud.redhat.com/clowder/v2
To:   github.com/RedHatInsights/clowder

While we could get the actual URL to resolve, all our stuff is moving to
console.redhat.come.  Also, it would require dev work that is not very
valuable.

We are dropping the v2 because we don't need to use go modules to track
different versions of our package since k8s APIs handle that for us.
  • Loading branch information
kylape committed Jul 23, 2021
1 parent 5704c87 commit 8bb3076
Show file tree
Hide file tree
Showing 88 changed files with 337 additions and 335 deletions.
8 changes: 4 additions & 4 deletions PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins:
manifests.sdk.operatorframework.io/v2: {}
scorecard.sdk.operatorframework.io/v2: {}
projectName: clowder
repo: cloud.redhat.com/clowder/v2
repo: github.com/RedHatInsights/clowder
resources:
- api:
crdVersion: v1
Expand All @@ -15,7 +15,7 @@ resources:
domain: cloud.redhat.com
group: cloud.redhat.com
kind: ClowdEnvironment
path: cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1
path: github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1
version: v1alpha1
- api:
crdVersion: v1
Expand All @@ -24,7 +24,7 @@ resources:
domain: cloud.redhat.com
group: cloud.redhat.com
kind: ClowdJobInvocation
path: cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1
path: github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1
version: v1alpha1
- api:
crdVersion: v1
Expand All @@ -33,7 +33,7 @@ resources:
domain: cloud.redhat.com
group: cloud.redhat.com
kind: ClowdApp
path: cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1
path: github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1
version: v1alpha1
webhooks:
validation: true
Expand Down
2 changes: 1 addition & 1 deletion apis/cloud.redhat.com/v1alpha1/clowdapp_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"errors"
"fmt"

"cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1/common"
"github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1/common"
strimzi "github.com/RedHatInsights/strimzi-client-go/apis/kafka.strimzi.io/v1beta1"
batch "k8s.io/api/batch/v1beta1"
v1 "k8s.io/api/core/v1"
Expand Down
6 changes: 3 additions & 3 deletions apis/cloud.redhat.com/v1alpha1/clowdenvironment_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import (
"fmt"
"strings"

"cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1/common"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/errors"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/utils"
"github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1/common"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/errors"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/utils"
strimzi "github.com/RedHatInsights/strimzi-client-go/apis/kafka.strimzi.io/v1beta1"

core "k8s.io/api/core/v1"
Expand Down
2 changes: 1 addition & 1 deletion apis/cloud.redhat.com/v1alpha1/clowdjobinvocation_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package v1alpha1
import (
"fmt"

"cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1/common"
"github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1/common"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
)
Expand Down
16 changes: 9 additions & 7 deletions config/crd/bases/cloud.redhat.com_clowdapps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2387,17 +2387,18 @@ spec:
jobs:
description: A list of jobs
items:
description: Job defines a CronJob as Schedule is required. In the
future omitting the Schedule field will allow support for a standard
Job resource.
description: Job defines a ClowdJob A Job struct will deploy as
a CronJob if `schedule` is set and will deploy as a Job if it
is not set. Unsupported fields will be dropped from Jobs
properties:
concurrencyPolicy:
description: Defines the concurrency policy for the CronJob,
defaults to Allow
defaults to Allow Only applies to Cronjobs
type: string
failedJobsHistoryLimit:
description: The number of failed finished jobs to retain. Value
must be non-negative integer. Defaults to 1.
must be non-negative integer. Defaults to 1. Only applies
to Cronjobs
format: int32
type: integer
name:
Expand Down Expand Up @@ -4615,13 +4616,14 @@ spec:
type: integer
successfulJobsHistoryLimit:
description: The number of successful finished jobs to retain.
Value must be non-negative integer. Defaults to 3.
Value must be non-negative integer. Defaults to 3. Only applies
to Cronjobs
format: int32
type: integer
suspend:
description: This flag tells the controller to suspend subsequent
executions, it does not apply to already started executions. Defaults
to false.
to false. Only applies to Cronjobs
type: boolean
required:
- name
Expand Down
50 changes: 25 additions & 25 deletions controllers/cloud.redhat.com/clowdapp_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,33 +44,33 @@ import (
"sigs.k8s.io/controller-runtime/pkg/source"

// Import the providers to initialize them
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/clowder_config"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/config"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/clowder_config"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/config"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers"

// These imports are to register the providers with the provider registration system
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/confighash"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/cronjob"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/database"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/dependencies"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/deployment"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/featureflags"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/inmemorydb"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/iqe"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/kafka"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/logging"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/metrics"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/namespace"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/objectstore"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/pullsecrets"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/serviceaccount"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/servicemesh"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/sidecar"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/web"

crd "cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/errors"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/utils"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/confighash"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/cronjob"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/database"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/dependencies"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/deployment"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/featureflags"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/inmemorydb"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/iqe"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/kafka"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/logging"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/metrics"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/namespace"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/objectstore"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/pullsecrets"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/serviceaccount"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/servicemesh"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/sidecar"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/web"

crd "github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/errors"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/utils"

"github.com/RedHatInsights/go-difflib/difflib"
)
Expand Down
48 changes: 24 additions & 24 deletions controllers/cloud.redhat.com/clowdenvironment_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,30 +34,30 @@ import (
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"

// Import the providers to initialize them
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/confighash"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/cronjob"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/database"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/dependencies"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/deployment"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/featureflags"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/inmemorydb"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/iqe"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/kafka"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/logging"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/metrics"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/namespace"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/objectstore"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/pullsecrets"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/serviceaccount"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/servicemesh"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/sidecar"
_ "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/web"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/utils"

crd "cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/clowder_config"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/errors"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/confighash"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/cronjob"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/database"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/dependencies"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/deployment"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/featureflags"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/inmemorydb"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/iqe"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/kafka"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/logging"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/metrics"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/namespace"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/objectstore"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/pullsecrets"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/serviceaccount"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/servicemesh"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/sidecar"
_ "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/web"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/utils"

crd "github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/clowder_config"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/errors"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers"
k8serr "k8s.io/apimachinery/pkg/api/errors"
"sigs.k8s.io/controller-runtime/pkg/handler"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
Expand Down
10 changes: 5 additions & 5 deletions controllers/cloud.redhat.com/clowdjobinvocation_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"context"
"fmt"

crd "cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1"
crd "github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1"
"github.com/go-logr/logr"
batchv1 "k8s.io/api/batch/v1"
core "k8s.io/api/core/v1"
Expand All @@ -33,11 +33,11 @@ import (
"sigs.k8s.io/controller-runtime/pkg/reconcile"
"sigs.k8s.io/controller-runtime/pkg/source"

"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/errors"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/iqe"
jobProvider "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/job"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/errors"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/iqe"
jobProvider "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/job"

"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers"

"k8s.io/apimachinery/pkg/types"
"k8s.io/client-go/tools/record"
Expand Down
2 changes: 1 addition & 1 deletion controllers/cloud.redhat.com/object/object.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package object

import (
"cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1/common"
"github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1/common"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
)
Expand Down
6 changes: 3 additions & 3 deletions controllers/cloud.redhat.com/providers/confighash/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"encoding/json"
"fmt"

crd "cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/config"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/errors"
crd "github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/config"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/errors"
core "k8s.io/api/core/v1"
)

Expand Down
10 changes: 5 additions & 5 deletions controllers/cloud.redhat.com/providers/confighash/default.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package confighash

import (
crd "cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/config"
p "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers"
cronjobProvider "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/cronjob"
deployProvider "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/deployment"
crd "github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/config"
p "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers"
cronjobProvider "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/cronjob"
deployProvider "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/deployment"
apps "k8s.io/api/apps/v1"
batch "k8s.io/api/batch/v1beta1"
core "k8s.io/api/core/v1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package confighash

import (
p "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers"
p "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers"
)

// ProvName sets the provider name identifier
Expand Down
6 changes: 3 additions & 3 deletions controllers/cloud.redhat.com/providers/cronjob/default.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package cronjob

import (
crd "cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/config"
p "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers"
crd "github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/config"
p "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers"
)

type cronjobProvider struct {
Expand Down
4 changes: 2 additions & 2 deletions controllers/cloud.redhat.com/providers/cronjob/impl.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package cronjob
import (
"fmt"

crd "cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1"
deployProvider "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/deployment"
crd "github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1"
deployProvider "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/deployment"

batch "k8s.io/api/batch/v1beta1"
core "k8s.io/api/core/v1"
Expand Down
2 changes: 1 addition & 1 deletion controllers/cloud.redhat.com/providers/cronjob/provider.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cronjob

import (
p "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers"
p "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers"
batch "k8s.io/api/batch/v1beta1"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
"strconv"
"strings"

crd "cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/config"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/errors"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers"
crd "github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/config"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/errors"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers"
core "k8s.io/api/core/v1"
"sigs.k8s.io/controller-runtime/pkg/client"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

crd "cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1"
crd "github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1"
core "k8s.io/api/core/v1"
)

Expand Down
12 changes: 6 additions & 6 deletions controllers/cloud.redhat.com/providers/database/localdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import (
"fmt"
"strings"

crd "cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/config"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/errors"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers"
provutils "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/utils"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/utils"
crd "github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/config"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/errors"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers"
provutils "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/utils"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/utils"

apps "k8s.io/api/apps/v1"
core "k8s.io/api/core/v1"
Expand Down
10 changes: 5 additions & 5 deletions controllers/cloud.redhat.com/providers/database/localdb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"

crd "cloud.redhat.com/clowder/v2/apis/cloud.redhat.com/v1alpha1"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/config"
p "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers"
provutils "cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/providers/utils"
"cloud.redhat.com/clowder/v2/controllers/cloud.redhat.com/utils"
crd "github.com/RedHatInsights/clowder/apis/cloud.redhat.com/v1alpha1"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/config"
p "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers"
provutils "github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/providers/utils"
"github.com/RedHatInsights/clowder/controllers/cloud.redhat.com/utils"
)

func getBaseElements() (types.NamespacedName, crd.ClowdApp) {
Expand Down
Loading

0 comments on commit 8bb3076

Please sign in to comment.