Skip to content

Commit 97360a6

Browse files
committed
✏️ Fix
modified: .goreleaser.yml; modified: Makefile; modified: README.md; modified: charts/kube-arch-scheduler/values.yaml; modified: deploy/deployment.yaml; modified: go.mod; modified: main.go
1 parent b61ea8e commit 97360a6

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

.goreleaser.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ archives:
2626
2727
dockers:
2828
- image_templates:
29-
- "ghcr.io/jatalocks/{{.ProjectName}}:{{ .Tag }}-amd64"
29+
- "ghcr.io/elementtech/{{.ProjectName}}:{{ .Tag }}-amd64"
3030
dockerfile: Dockerfile
3131
use: buildx
3232
build_flag_templates:
3333
- "--pull"
34-
- "--label=io.artifacthub.package.readme-url=https://raw.githubusercontent.com/jatalocks/kube-arch-scheduler/main/README.md"
34+
- "--label=io.artifacthub.package.readme-url=https://raw.githubusercontent.com/elementtech/kube-arch-scheduler/main/README.md"
3535
- '--label=io.artifacthub.package.maintainers=[{"name":"Jatalocks","email":"[email protected]"}]'
3636
- "--label=io.artifacthub.package.license=MIT"
3737
- "--label=org.opencontainers.image.description=A container image architecture aware Kubernetes scheduler plugin"
@@ -44,13 +44,13 @@ dockers:
4444
goarch: amd64
4545
goos: linux
4646
- image_templates:
47-
- "ghcr.io/jatalocks/{{.ProjectName}}:{{ .Tag }}-arm64"
47+
- "ghcr.io/elementtech/{{.ProjectName}}:{{ .Tag }}-arm64"
4848
dockerfile: Dockerfile
4949
use: buildx
5050
build_flag_templates:
5151
- "--pull"
52-
- "--label=io.artifacthub.package.readme-url=https://raw.githubusercontent.com/jatalocks/kube-arch-scheduler/main/README.md"
53-
- "--label=io.artifacthub.package.logo-url=https://raw.githubusercontent.com/jatalocks/kube-arch-scheduler/main/assets/logo/logo.png"
52+
- "--label=io.artifacthub.package.readme-url=https://raw.githubusercontent.com/elementtech/kube-arch-scheduler/main/README.md"
53+
- "--label=io.artifacthub.package.logo-url=https://raw.githubusercontent.com/elementtech/kube-arch-scheduler/main/assets/logo/logo.png"
5454
- '--label=io.artifacthub.package.maintainers=[{"name":"Jatalocks","email":"[email protected]"}]'
5555
- "--label=io.artifacthub.package.license=MIT"
5656
- "--label=org.opencontainers.image.description=A container image architecture aware Kubernetes scheduler plugin"
@@ -64,14 +64,14 @@ dockers:
6464
goos: linux
6565

6666
docker_manifests:
67-
- name_template: "ghcr.io/jatalocks/{{.ProjectName}}:{{ .Tag }}"
67+
- name_template: "ghcr.io/elementtech/{{.ProjectName}}:{{ .Tag }}"
6868
image_templates:
69-
- "ghcr.io/jatalocks/{{.ProjectName}}:{{ .Tag }}-amd64"
70-
- "ghcr.io/jatalocks/{{.ProjectName}}:{{ .Tag }}-arm64"
71-
- name_template: "ghcr.io/jatalocks/{{.ProjectName}}:latest"
69+
- "ghcr.io/elementtech/{{.ProjectName}}:{{ .Tag }}-amd64"
70+
- "ghcr.io/elementtech/{{.ProjectName}}:{{ .Tag }}-arm64"
71+
- name_template: "ghcr.io/elementtech/{{.ProjectName}}:latest"
7272
image_templates:
73-
- "ghcr.io/jatalocks/{{.ProjectName}}:{{ .Tag }}-amd64"
74-
- "ghcr.io/jatalocks/{{.ProjectName}}:{{ .Tag }}-arm64"
73+
- "ghcr.io/elementtech/{{.ProjectName}}:{{ .Tag }}-amd64"
74+
- "ghcr.io/elementtech/{{.ProjectName}}:{{ .Tag }}-arm64"
7575

7676
checksum:
7777
name_template: "checksums.txt"

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019 The jatalocks Authors.
1+
# Copyright 2019 The elementtech Authors.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -31,10 +31,10 @@ build-linux: init
3131
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o=${BIN_DIR}/kube-arch-scheduler .
3232

3333
image: build-linux
34-
docker build --no-cache . -t ghcr.io/jatalocks/kube-arch-scheduler:$(TAG)
34+
docker build --no-cache . -t ghcr.io/elementtech/kube-arch-scheduler:$(TAG)
3535

3636
push:
37-
docker push ghcr.io/jatalocks/kube-arch-scheduler:$(TAG)
37+
docker push ghcr.io/elementtech/kube-arch-scheduler:$(TAG)
3838

3939
update:
4040
go mod download

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
<p align="center">An image architecture aware Kubernetes scheduler plugin</p>
44

55
<p align="center">
6-
<a target="_blank"><img src="https://img.shields.io/github/v/release/jatalocks/kube-arch-scheduler" /></a>
7-
<a target="_blank"><img src="https://img.shields.io/github/downloads/jatalocks/kube-arch-scheduler/total"/></a>
8-
<a target="_blank"><img src="https://img.shields.io/github/issues/jatalocks/kube-arch-scheduler"/></a>
9-
<a target="_blank"><img src="https://img.shields.io/github/go-mod/go-version/jatalocks/kube-arch-scheduler"/></a>
6+
<a target="_blank"><img src="https://img.shields.io/github/v/release/elementtech/kube-arch-scheduler" /></a>
7+
<a target="_blank"><img src="https://img.shields.io/github/downloads/elementtech/kube-arch-scheduler/total"/></a>
8+
<a target="_blank"><img src="https://img.shields.io/github/issues/elementtech/kube-arch-scheduler"/></a>
9+
<a target="_blank"><img src="https://img.shields.io/github/go-mod/go-version/elementtech/kube-arch-scheduler"/></a>
1010
</p>
1111

1212
**kube-arch-scheduler** is a kubernetes scheduler filter plugin that will filter nodes by the compatibility of the container image architectures (platforms) present in a Pod. It can also assign weight to each architecture, so that pods can prefer sitting on a specific one.
@@ -66,4 +66,4 @@ kubectl deploy -f example/busybox.yaml
6666

6767
## Support
6868

69-
<a href="https://www.buymeacoffee.com/jatalocks" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/purple_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>
69+
<a href="https://www.buymeacoffee.com/elementtech" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/purple_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>

charts/kube-arch-scheduler/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
controllerManager:
22
manager:
33
image:
4-
repository: ghcr.io/jatalocks/kube-arch-scheduler
4+
repository: ghcr.io/elementtech/kube-arch-scheduler
55
tag: latest
66
resources:
77
requests:

deploy/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ spec:
4343
name: scheduler-config
4444
containers:
4545
- name: scheduler-ctrl
46-
image: ghcr.io/jatalocks/kube-arch-scheduler:latest
46+
image: ghcr.io/elementtech/kube-arch-scheduler:latest
4747
imagePullPolicy: IfNotPresent
4848
args:
4949
- kube-arch-scheduler

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/jatalocks/kube-arch-scheduler
1+
module github.com/elementtech/kube-arch-scheduler
22

33
go 1.20
44

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/jatalocks/kube-arch-scheduler/pkg/plugins/archfilter"
7+
"github.com/elementtech/kube-arch-scheduler/pkg/plugins/archfilter"
88
"k8s.io/component-base/logs"
99
"k8s.io/kubernetes/cmd/kube-scheduler/app"
1010
)

0 commit comments

Comments
 (0)