Skip to content

Commit 1a5f204

Browse files
authored
chore: change module name (#63)
from github.com/NexusGPU/tensor-fusion-operator to github.com/NexusGPU/tensor-fusion
1 parent 46113be commit 1a5f204

File tree

98 files changed

+180
-180
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+180
-180
lines changed

PROJECT

+11-11
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@
55
domain: tensor-fusion.ai
66
layout:
77
- go.kubebuilder.io/v4
8-
projectName: tensor-fusion-operator
9-
repo: github.com/NexusGPU/tensor-fusion-operator
8+
projectName: tensor-fusion
9+
repo: github.com/NexusGPU/tensor-fusion
1010
resources:
1111
- api:
1212
crdVersion: v1
1313
namespaced: true
1414
controller: true
1515
domain: tensor-fusion.ai
1616
kind: TensorFusionConnection
17-
path: github.com/NexusGPU/tensor-fusion-operator/api/v1
17+
path: github.com/NexusGPU/tensor-fusion/api/v1
1818
version: v1
1919
- api:
2020
crdVersion: v1
2121
controller: true
2222
domain: tensor-fusion.ai
2323
kind: GPU
24-
path: github.com/NexusGPU/tensor-fusion-operator/api/v1
24+
path: github.com/NexusGPU/tensor-fusion/api/v1
2525
version: v1
2626
- controller: true
2727
core: true
@@ -37,54 +37,54 @@ resources:
3737
controller: true
3838
domain: tensor-fusion.ai
3939
kind: TensorFusionCluster
40-
path: github.com/NexusGPU/tensor-fusion-operator/api/v1
40+
path: github.com/NexusGPU/tensor-fusion/api/v1
4141
version: v1
4242
- api:
4343
crdVersion: v1
4444
namespaced: true
4545
controller: true
4646
domain: tensor-fusion.ai
4747
kind: GPUPool
48-
path: github.com/NexusGPU/tensor-fusion-operator/api/v1
48+
path: github.com/NexusGPU/tensor-fusion/api/v1
4949
version: v1
5050
- api:
5151
crdVersion: v1
5252
namespaced: true
5353
controller: true
5454
domain: tensor-fusion.ai
5555
kind: GPUNode
56-
path: github.com/NexusGPU/tensor-fusion-operator/api/v1
56+
path: github.com/NexusGPU/tensor-fusion/api/v1
5757
version: v1
5858
- api:
5959
crdVersion: v1
6060
namespaced: true
6161
controller: true
6262
domain: tensor-fusion.ai
6363
kind: GPUNodeClass
64-
path: github.com/NexusGPU/tensor-fusion-operator/api/v1
64+
path: github.com/NexusGPU/tensor-fusion/api/v1
6565
version: v1
6666
- api:
6767
crdVersion: v1
6868
namespaced: true
6969
controller: true
7070
domain: tensor-fusion.ai
7171
kind: SchedulingConfigTemplate
72-
path: github.com/NexusGPU/tensor-fusion-operator/api/v1
72+
path: github.com/NexusGPU/tensor-fusion/api/v1
7373
version: v1
7474
- api:
7575
crdVersion: v1
7676
namespaced: true
7777
controller: true
7878
domain: tensor-fusion.ai
7979
kind: ClientProfile
80-
path: github.com/NexusGPU/tensor-fusion-operator/api/v1
80+
path: github.com/NexusGPU/tensor-fusion/api/v1
8181
version: v1
8282
- api:
8383
crdVersion: v1
8484
namespaced: true
8585
controller: true
8686
domain: tensor-fusion.ai
8787
kind: TensorFusionWorkload
88-
path: github.com/NexusGPU/tensor-fusion-operator/api/v1
88+
path: github.com/NexusGPU/tensor-fusion/api/v1
8989
version: v1
9090
version: "3"

api/v1/gpu_types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package v1
1818

1919
import (
20-
"github.com/NexusGPU/tensor-fusion-operator/internal/constants"
20+
"github.com/NexusGPU/tensor-fusion/internal/constants"
2121
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2222
)
2323

api/v1/gpunode_types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package v1
1818

1919
import (
20-
"github.com/NexusGPU/tensor-fusion-operator/internal/constants"
20+
"github.com/NexusGPU/tensor-fusion/internal/constants"
2121
"k8s.io/apimachinery/pkg/api/resource"
2222
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2323
)

api/v1/gpupool_types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package v1
1818

1919
import (
20-
"github.com/NexusGPU/tensor-fusion-operator/internal/constants"
20+
"github.com/NexusGPU/tensor-fusion/internal/constants"
2121
corev1 "k8s.io/api/core/v1"
2222
"k8s.io/apimachinery/pkg/api/resource"
2323
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

api/v1/tensorfusioncluster_funcs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package v1
1818

1919
import (
20-
"github.com/NexusGPU/tensor-fusion-operator/internal/constants"
20+
"github.com/NexusGPU/tensor-fusion/internal/constants"
2121
"k8s.io/apimachinery/pkg/api/meta"
2222
"k8s.io/apimachinery/pkg/api/resource"
2323
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

api/v1/tensorfusioncluster_types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package v1
1818

1919
import (
20-
"github.com/NexusGPU/tensor-fusion-operator/internal/constants"
20+
"github.com/NexusGPU/tensor-fusion/internal/constants"
2121
"k8s.io/apimachinery/pkg/api/resource"
2222
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2323
"k8s.io/apimachinery/pkg/runtime"

cmd/main.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ import (
3939
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
4040
"sigs.k8s.io/controller-runtime/pkg/webhook"
4141

42-
tensorfusionaiv1 "github.com/NexusGPU/tensor-fusion-operator/api/v1"
43-
tfv1 "github.com/NexusGPU/tensor-fusion-operator/api/v1"
44-
"github.com/NexusGPU/tensor-fusion-operator/internal/controller"
45-
"github.com/NexusGPU/tensor-fusion-operator/internal/scheduler"
46-
"github.com/NexusGPU/tensor-fusion-operator/internal/server"
47-
"github.com/NexusGPU/tensor-fusion-operator/internal/server/router"
48-
webhookcorev1 "github.com/NexusGPU/tensor-fusion-operator/internal/webhook/v1"
42+
tensorfusionaiv1 "github.com/NexusGPU/tensor-fusion/api/v1"
43+
tfv1 "github.com/NexusGPU/tensor-fusion/api/v1"
44+
"github.com/NexusGPU/tensor-fusion/internal/controller"
45+
"github.com/NexusGPU/tensor-fusion/internal/scheduler"
46+
"github.com/NexusGPU/tensor-fusion/internal/server"
47+
"github.com/NexusGPU/tensor-fusion/internal/server/router"
48+
webhookcorev1 "github.com/NexusGPU/tensor-fusion/internal/webhook/v1"
4949
// +kubebuilder:scaffold:imports
5050
)
5151

cmd/nodediscovery/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ import (
1414
"github.com/shirou/gopsutil/mem"
1515

1616
"github.com/NVIDIA/go-nvml/pkg/nvml"
17-
tfv1 "github.com/NexusGPU/tensor-fusion-operator/api/v1"
18-
"github.com/NexusGPU/tensor-fusion-operator/internal/config"
19-
"github.com/NexusGPU/tensor-fusion-operator/internal/constants"
17+
tfv1 "github.com/NexusGPU/tensor-fusion/api/v1"
18+
"github.com/NexusGPU/tensor-fusion/internal/config"
19+
"github.com/NexusGPU/tensor-fusion/internal/constants"
2020
"github.com/samber/lo"
2121
"k8s.io/apimachinery/pkg/api/resource"
2222
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

config/certmanager/certificate.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apiVersion: cert-manager.io/v1
55
kind: Issuer
66
metadata:
77
labels:
8-
app.kubernetes.io/name: tensor-fusion-operator
8+
app.kubernetes.io/name: tensor-fusion
99
app.kubernetes.io/managed-by: kustomize
1010
name: selfsigned-issuer
1111
namespace: system
@@ -19,8 +19,8 @@ metadata:
1919
app.kubernetes.io/name: certificate
2020
app.kubernetes.io/instance: serving-cert
2121
app.kubernetes.io/component: certificate
22-
app.kubernetes.io/created-by: tensor-fusion-operator
23-
app.kubernetes.io/part-of: tensor-fusion-operator
22+
app.kubernetes.io/created-by: tensor-fusion
23+
app.kubernetes.io/part-of: tensor-fusion
2424
app.kubernetes.io/managed-by: kustomize
2525
name: serving-cert # this name should match the one appeared in kustomizeconfig.yaml
2626
namespace: system

config/default/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace: tensor-fusion
66
# "wordpress" becomes "alices-wordpress".
77
# Note that it should also match with the prefix (text before '-') of the namespace
88
# field above.
9-
namePrefix: tensor-fusion-operator-
9+
namePrefix: tensor-fusion-
1010

1111
# Labels to add to all resources and selectors.
1212
#labels:

config/default/manager_webhook_patch.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: Deployment
33
metadata:
44
name: controller-manager
55
labels:
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
spec:
99
template:

config/default/metrics_service.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: Service
33
metadata:
44
labels:
55
control-plane: controller-manager
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
name: controller-manager-metrics-service
99
namespace: system

config/manager/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1
66
kind: Kustomization
77
images:
88
- name: controller
9-
newName: tensorfusion/tensor-fusion-operator
9+
newName: tensorfusion/tensor-fusion
1010
newTag: latest

config/manager/manager.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: controller-manager
55
labels:
66
control-plane: controller-manager
7-
app.kubernetes.io/name: tensor-fusion-operator
7+
app.kubernetes.io/name: tensor-fusion
88
app.kubernetes.io/managed-by: kustomize
99
spec:
1010
selector:

config/network-policy/allow-metrics-traffic.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apiVersion: networking.k8s.io/v1
55
kind: NetworkPolicy
66
metadata:
77
labels:
8-
app.kubernetes.io/name: tensor-fusion-operator
8+
app.kubernetes.io/name: tensor-fusion
99
app.kubernetes.io/managed-by: kustomize
1010
name: allow-metrics-traffic
1111
namespace: system

config/network-policy/allow-webhook-traffic.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apiVersion: networking.k8s.io/v1
55
kind: NetworkPolicy
66
metadata:
77
labels:
8-
app.kubernetes.io/name: tensor-fusion-operator
8+
app.kubernetes.io/name: tensor-fusion
99
app.kubernetes.io/managed-by: kustomize
1010
name: allow-webhook-traffic
1111
namespace: system

config/prometheus/monitor.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ kind: ServiceMonitor
44
metadata:
55
labels:
66
control-plane: controller-manager
7-
app.kubernetes.io/name: tensor-fusion-operator
7+
app.kubernetes.io/name: tensor-fusion
88
app.kubernetes.io/managed-by: kustomize
99
name: controller-manager-metrics-monitor
1010
namespace: system

config/rbac/clientprofile_editor_role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
55
labels:
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
name: clientprofile-editor-role
99
rules:

config/rbac/clientprofile_viewer_role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
55
labels:
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
name: clientprofile-viewer-role
99
rules:

config/rbac/gpu_editor_role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
55
labels:
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
name: gpu-editor-role
99
rules:

config/rbac/gpu_viewer_role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
55
labels:
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
name: gpu-viewer-role
99
rules:

config/rbac/gpunode_editor_role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
55
labels:
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
name: gpunode-editor-role
99
rules:

config/rbac/gpunode_viewer_role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
55
labels:
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
name: gpunode-viewer-role
99
rules:

config/rbac/gpunodeclass_editor_role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
55
labels:
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
name: gpunodeclass-editor-role
99
rules:

config/rbac/gpunodeclass_viewer_role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
55
labels:
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
name: gpunodeclass-viewer-role
99
rules:

config/rbac/gpupool_editor_role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
55
labels:
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
name: gpupool-editor-role
99
rules:

config/rbac/gpupool_viewer_role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
55
labels:
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
name: gpupool-viewer-role
99
rules:

config/rbac/leader_election_role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: rbac.authorization.k8s.io/v1
33
kind: Role
44
metadata:
55
labels:
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
name: leader-election-role
99
rules:

config/rbac/leader_election_role_binding.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: rbac.authorization.k8s.io/v1
22
kind: RoleBinding
33
metadata:
44
labels:
5-
app.kubernetes.io/name: tensor-fusion-operator
5+
app.kubernetes.io/name: tensor-fusion
66
app.kubernetes.io/managed-by: kustomize
77
name: leader-election-rolebinding
88
roleRef:

config/rbac/role_binding.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: rbac.authorization.k8s.io/v1
22
kind: ClusterRoleBinding
33
metadata:
44
labels:
5-
app.kubernetes.io/name: tensor-fusion-operator
5+
app.kubernetes.io/name: tensor-fusion
66
app.kubernetes.io/managed-by: kustomize
77
name: manager-rolebinding
88
roleRef:

config/rbac/schedulingconfigtemplate_editor_role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
55
labels:
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
name: schedulingconfigtemplate-editor-role
99
rules:

config/rbac/schedulingconfigtemplate_viewer_role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
55
labels:
6-
app.kubernetes.io/name: tensor-fusion-operator
6+
app.kubernetes.io/name: tensor-fusion
77
app.kubernetes.io/managed-by: kustomize
88
name: schedulingconfigtemplate-viewer-role
99
rules:

0 commit comments

Comments
 (0)