Skip to content

Commit f9d522b

Browse files
committed
Merge remote-tracking branch 'origin/main' into k0s-1-28
2 parents e077394 + 1dd6cbb commit f9d522b

File tree

25 files changed

+46
-48
lines changed

25 files changed

+46
-48
lines changed

docs/resources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This ingestion happens at k0s daemon startup on controller nodes.
1111

1212
It can be dynamically updated, and the k0s config reconciliation process will apply any changes to the cluster except from `spec.api` and `spec.storage`.
1313

14-
The [embedded cluster operator](https://github.com/replicatedhq/embedded-cluster-operator/) reconciles helm chart updates against the `ClusterConfig` object to initiate helm chart upgrades via the k0s helm reconciler.
14+
The [embedded cluster operator](https://github.com/replicatedhq/embedded-cluster/operator/) reconciles helm chart updates against the `ClusterConfig` object to initiate helm chart upgrades via the k0s helm reconciler.
1515

1616
## Chart
1717
- **Owner**: k0s
@@ -39,4 +39,4 @@ The `Installation` object is used by the Embedded Cluster Operator to both initi
3939

4040
The `Installation` object can contain errors surfaced from the `Plan` and `Chart` resources.
4141

42-
Possible Installation statuses can be found here: https://github.com/replicatedhq/embedded-cluster-operator/blob/e4fbb42919ad3b58cdc563dca77471cf76099393/api/v1beta1/installation_types.go#L24
42+
Possible Installation statuses can be found here: https://github.com/replicatedhq/embedded-cluster-kinds/blob/f54d45f99095ac6beaac61a3c8b735b9f7473329/apis/v1beta1/installation_types.go#L29-L42

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ require (
2929
github.com/onsi/ginkgo/v2 v2.19.0
3030
github.com/onsi/gomega v1.33.1
3131
github.com/replicatedhq/embedded-cluster-kinds v1.4.7
32-
github.com/replicatedhq/embedded-cluster-operator v0.42.1
3332
github.com/replicatedhq/embedded-cluster-utils v1.0.0
3433
github.com/replicatedhq/kotskinds v0.0.0-20240621115447-55148ce032e4
3534
github.com/replicatedhq/troubleshoot v0.100.0

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,8 +510,6 @@ github.com/redis/go-redis/v9 v9.5.2 h1:L0L3fcSNReTRGyZ6AqAEN0K56wYeYAwapBIhkvh0f
510510
github.com/redis/go-redis/v9 v9.5.2/go.mod h1:hdY0cQFCN4fnSYT6TkisLufl/4W5UIXyv0b/CLO2V2M=
511511
github.com/replicatedhq/embedded-cluster-kinds v1.4.7 h1:CR55z8Q2ek90BwwwOEz+P3qFIgc84G7wp/FNs+ctfsw=
512512
github.com/replicatedhq/embedded-cluster-kinds v1.4.7/go.mod h1:AwopUvvGcaWO4mn9DkbPj5RnLuOy756CNLrcaAlmjMo=
513-
github.com/replicatedhq/embedded-cluster-operator v0.42.1 h1:x0R41d3FwMWjLsbWGL5PQa92++kYD7XmB43/VRtzVjc=
514-
github.com/replicatedhq/embedded-cluster-operator v0.42.1/go.mod h1:f6B+AFztqFXk6lTmPTfXFcHSEfHNnhd9SAa7NBMhNRI=
515513
github.com/replicatedhq/embedded-cluster-utils v1.0.0 h1:Axdni1nYfl5zeOP9g5U79yvN8cRdClyU6hz0wV1Hmdc=
516514
github.com/replicatedhq/embedded-cluster-utils v1.0.0/go.mod h1:4JmMC2CwMCLxq05GEW3XSPPVotqyamAF/omrbB3pH+c=
517515
github.com/replicatedhq/kotskinds v0.0.0-20240621115447-55148ce032e4 h1:nsNSod6wpFpaMUq1IqnU4y2XWQd2FEKtdr02UB2udkk=

operator/PROJECT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins:
99
manifests.sdk.operatorframework.io/v2: {}
1010
scorecard.sdk.operatorframework.io/v2: {}
1111
projectName: embedded-cluster-operator
12-
repo: github.com/replicatedhq/embedded-cluster-operator
12+
repo: github.com/replicatedhq/embedded-cluster/operator
1313
resources:
1414
- api:
1515
crdVersion: v1

operator/controllers/installation_controller.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ import (
4444
"sigs.k8s.io/controller-runtime/pkg/handler"
4545

4646
"github.com/replicatedhq/embedded-cluster-kinds/apis/v1beta1"
47-
"github.com/replicatedhq/embedded-cluster-operator/pkg/autopilot"
48-
"github.com/replicatedhq/embedded-cluster-operator/pkg/charts"
49-
"github.com/replicatedhq/embedded-cluster-operator/pkg/k8sutil"
50-
"github.com/replicatedhq/embedded-cluster-operator/pkg/metadata"
51-
"github.com/replicatedhq/embedded-cluster-operator/pkg/metrics"
52-
"github.com/replicatedhq/embedded-cluster-operator/pkg/openebs"
53-
"github.com/replicatedhq/embedded-cluster-operator/pkg/registry"
54-
"github.com/replicatedhq/embedded-cluster-operator/pkg/release"
55-
"github.com/replicatedhq/embedded-cluster-operator/pkg/util"
47+
"github.com/replicatedhq/embedded-cluster/operator/pkg/autopilot"
48+
"github.com/replicatedhq/embedded-cluster/operator/pkg/charts"
49+
"github.com/replicatedhq/embedded-cluster/operator/pkg/k8sutil"
50+
"github.com/replicatedhq/embedded-cluster/operator/pkg/metadata"
51+
"github.com/replicatedhq/embedded-cluster/operator/pkg/metrics"
52+
"github.com/replicatedhq/embedded-cluster/operator/pkg/openebs"
53+
"github.com/replicatedhq/embedded-cluster/operator/pkg/registry"
54+
"github.com/replicatedhq/embedded-cluster/operator/pkg/release"
55+
"github.com/replicatedhq/embedded-cluster/operator/pkg/util"
5656
)
5757

5858
// InstallationNameAnnotation is the annotation we keep in the autopilot plan so we can

operator/controllers/installation_controller_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
k0sv1beta1 "github.com/k0sproject/k0s/pkg/apis/k0s/v1beta1"
99
"github.com/replicatedhq/embedded-cluster-kinds/apis/v1beta1"
1010
ectypes "github.com/replicatedhq/embedded-cluster-kinds/types"
11-
"github.com/replicatedhq/embedded-cluster-operator/pkg/release"
11+
"github.com/replicatedhq/embedded-cluster/operator/pkg/release"
1212
"github.com/stretchr/testify/assert"
1313
"github.com/stretchr/testify/require"
1414
v1 "k8s.io/api/core/v1"

operator/controllers/k0s.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/k0sproject/version"
99
clusterv1beta1 "github.com/replicatedhq/embedded-cluster-kinds/apis/v1beta1"
10-
"github.com/replicatedhq/embedded-cluster-operator/pkg/release"
10+
"github.com/replicatedhq/embedded-cluster/operator/pkg/release"
1111
ctrl "sigs.k8s.io/controller-runtime"
1212
)
1313

operator/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package main
1919
import (
2020
"os"
2121

22-
"github.com/replicatedhq/embedded-cluster-operator/pkg/cli"
22+
"github.com/replicatedhq/embedded-cluster/operator/pkg/cli"
2323
)
2424

2525
func main() {

operator/pkg/artifacts/upgrade.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99

1010
autopilotv1beta2 "github.com/k0sproject/k0s/pkg/apis/autopilot/v1beta2"
1111
clusterv1beta1 "github.com/replicatedhq/embedded-cluster-kinds/apis/v1beta1"
12-
"github.com/replicatedhq/embedded-cluster-operator/pkg/k8sutil"
13-
"github.com/replicatedhq/embedded-cluster-operator/pkg/release"
14-
"github.com/replicatedhq/embedded-cluster-operator/pkg/util"
12+
"github.com/replicatedhq/embedded-cluster/operator/pkg/k8sutil"
13+
"github.com/replicatedhq/embedded-cluster/operator/pkg/release"
14+
"github.com/replicatedhq/embedded-cluster/operator/pkg/util"
1515
batchv1 "k8s.io/api/batch/v1"
1616
corev1 "k8s.io/api/core/v1"
1717
k8serrors "k8s.io/apimachinery/pkg/api/errors"

operator/pkg/artifacts/upgrade_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/go-logr/logr"
1010
"github.com/go-logr/logr/testr"
1111
clusterv1beta1 "github.com/replicatedhq/embedded-cluster-kinds/apis/v1beta1"
12-
"github.com/replicatedhq/embedded-cluster-operator/pkg/k8sutil"
12+
"github.com/replicatedhq/embedded-cluster/operator/pkg/k8sutil"
1313
"github.com/stretchr/testify/assert"
1414
"github.com/stretchr/testify/require"
1515
batchv1 "k8s.io/api/batch/v1"

0 commit comments

Comments
 (0)