Skip to content

Commit 976b6b3

Browse files
authored
Merge pull request #102 from sdcio/migrate-repo
migrate repo
2 parents e4290cf + 24f1e19 commit 976b6b3

Some content is hidden

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

72 files changed

+200
-195
lines changed

.github/workflows/dev-nightlies.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ env:
2424

2525
jobs:
2626
dev-release:
27-
runs-on: iptecharch-action-runners
27+
runs-on: sdcio-action-runners
2828
steps:
2929
- name: Checkout
3030
uses: actions/checkout@v4
@@ -48,21 +48,21 @@ jobs:
4848
uses: docker/login-action@v3
4949
with:
5050
registry: ghcr.io
51-
username: iptecharch-builder
51+
username: sdcio-builder
5252
password: ${{ secrets.IPTECHARCH_GITHUB_PAT }}
5353

5454
- name: Login to Hans' Private k8s Container Registry
5555
uses: docker/login-action@v3
5656
with:
5757
registry: registry.k8s.hans.io
58-
username: iptecharch-builder
58+
username: sdcio-builder
5959
password: ${{ secrets.K8S_REGISTRY_HANS }}
6060

6161
- name: Login to Karim's Private k8s Container Registry
6262
uses: docker/login-action@v3
6363
with:
6464
registry: registry.kmrd.dev
65-
username: iptecharch-builder
65+
username: sdcio-builder
6666
password: ${{ secrets.K8S_REGISTRY_HANS }}
6767

6868
- name: Run GoReleaser

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ env:
2929

3030
jobs:
3131
build-and-release:
32-
runs-on: iptecharch-action-runners
32+
runs-on: sdcio-action-runners
3333
if: startsWith(github.ref, 'refs/tags/v')
3434
steps:
3535
- name: Checkout
@@ -61,14 +61,14 @@ jobs:
6161
uses: docker/login-action@v3
6262
with:
6363
registry: registry.k8s.hans.io
64-
username: iptecharch-builder
64+
username: sdcio-builder
6565
password: ${{ secrets.K8S_REGISTRY_HANS }}
6666

6767
- name: Login to Karim's Private k8s Container Registry
6868
uses: docker/login-action@v3
6969
with:
7070
registry: registry.kmrd.dev
71-
username: iptecharch-builder
71+
username: sdcio-builder
7272
password: ${{ secrets.K8S_REGISTRY_HANS }}
7373

7474
- name: Run GoReleaser

.goreleaser.nightlies.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,27 +42,27 @@ dockers:
4242
- data-server
4343
- datactl
4444
image_templates:
45-
- "ghcr.io/iptecharch/data-server:v0.0.0-{{ .ShortCommit }}"
46-
- "ghcr.io/iptecharch/data-server:v0.0.0-dev-latest"
47-
- "registry.kmrd.dev/iptecharch/data-server:v0.0.0-{{ .ShortCommit }}"
48-
- "registry.kmrd.dev/iptecharch/data-server:v0.0.0-dev-latest"
45+
- "ghcr.io/sdcio/data-server:v0.0.0-{{ .ShortCommit }}"
46+
- "ghcr.io/sdcio/data-server:v0.0.0-dev-latest"
47+
- "registry.kmrd.dev/sdcio/data-server:v0.0.0-{{ .ShortCommit }}"
48+
- "registry.kmrd.dev/sdcio/data-server:v0.0.0-dev-latest"
4949
dockerfile: goreleaser.dockerfile
5050
skip_push: false
5151
build_flag_templates:
5252
- "--pull"
5353
- "--build-arg=USERID=10000"
5454
- "--label=org.opencontainers.image.created={{.Date}}"
5555
- "--label=org.opencontainers.image.title={{.ProjectName}}"
56-
- "--label=org.opencontainers.image.source=https://github.com/iptecharch/{{.ProjectName}}"
56+
- "--label=org.opencontainers.image.source=https://github.com/sdcio/{{.ProjectName}}"
5757
- "--label=org.opencontainers.image.version=v{{.Version}}"
5858
- goos: linux
5959
goarch: amd64
6060
ids:
6161
- data-server
6262
- datactl
6363
image_templates:
64-
- "registry.k8s.hans.io/iptecharch/data-server:v0.0.0-{{ .ShortCommit }}"
65-
- "registry.k8s.hans.io/iptecharch/data-server:v0.0.0-dev-latest"
64+
- "registry.k8s.hans.io/sdcio/data-server:v0.0.0-{{ .ShortCommit }}"
65+
- "registry.k8s.hans.io/sdcio/data-server:v0.0.0-dev-latest"
6666
dockerfile: goreleaser.dockerfile
6767
skip_push: false
6868
push_flags:
@@ -72,7 +72,7 @@ dockers:
7272
- "--build-arg=USERID=10000"
7373
- "--label=org.opencontainers.image.created={{.Date}}"
7474
- "--label=org.opencontainers.image.title={{.ProjectName}}"
75-
- "--label=org.opencontainers.image.source=https://github.com/iptecharch/{{.ProjectName}}"
75+
- "--label=org.opencontainers.image.source=https://github.com/sdcio/{{.ProjectName}}"
7676
- "--label=org.opencontainers.image.version=v{{.Version}}"
7777
release:
7878
disable: true

.goreleaser.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,20 @@ dockers:
4242
- data-server
4343
- datactl
4444
image_templates:
45-
- "ghcr.io/iptecharch/data-server:latest"
46-
- "ghcr.io/iptecharch/data-server:v{{ .Version }}"
47-
- "registry.kmrd.dev/iptecharch/data-server:latest"
48-
- "registry.kmrd.dev/iptecharch/data-server:v{{ .Version }}"
49-
- "registry.k8s.hans.io/iptecharch/data-server:latest"
50-
- "registry.k8s.hans.io/iptecharch/data-server:v{{ .Version }}"
45+
- "ghcr.io/sdcio/data-server:latest"
46+
- "ghcr.io/sdcio/data-server:v{{ .Version }}"
47+
- "registry.kmrd.dev/sdcio/data-server:latest"
48+
- "registry.kmrd.dev/sdcio/data-server:v{{ .Version }}"
49+
- "registry.k8s.hans.io/sdcio/data-server:latest"
50+
- "registry.k8s.hans.io/sdcio/data-server:v{{ .Version }}"
5151
dockerfile: goreleaser.dockerfile
5252
skip_push: false
5353
build_flag_templates:
5454
- "--pull"
5555
- "--build-arg=USERID=10000"
5656
- "--label=org.opencontainers.image.created={{.Date}}"
5757
- "--label=org.opencontainers.image.title={{.ProjectName}}"
58-
- "--label=org.opencontainers.image.source=https://github.com/iptecharch/{{.ProjectName}}"
58+
- "--label=org.opencontainers.image.source=https://github.com/sdcio/{{.ProjectName}}"
5959
- "--label=org.opencontainers.image.version=v{{.Version}}"
6060
archives:
6161
- name_template: >-

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
REMOTE_REGISTRY := registry.kmrd.dev/iptecharch/data-server
1+
REMOTE_REGISTRY := registry.kmrd.dev/sdcio/data-server
22
TAG := $(shell git describe --tags)
33
IMAGE := $(REMOTE_REGISTRY):$(TAG)
44
TEST_IMAGE := $(IMAGE)-test

client/cmd/data_diff.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ import (
1818
"context"
1919
"fmt"
2020

21-
sdcpb "github.com/iptecharch/sdc-protos/sdcpb"
21+
sdcpb "github.com/sdcio/sdc-protos/sdcpb"
2222
"github.com/spf13/cobra"
2323
"google.golang.org/protobuf/encoding/prototext"
2424

25-
"github.com/iptecharch/data-server/pkg/utils"
25+
"github.com/sdcio/data-server/pkg/utils"
2626
)
2727

2828
// dataDiffCmd represents the diff command

client/cmd/data_get.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
"fmt"
2121
"strings"
2222

23-
"github.com/iptecharch/schema-server/pkg/utils"
24-
sdcpb "github.com/iptecharch/sdc-protos/sdcpb"
23+
"github.com/sdcio/schema-server/pkg/utils"
24+
sdcpb "github.com/sdcio/sdc-protos/sdcpb"
2525
"github.com/spf13/cobra"
2626
"google.golang.org/protobuf/encoding/prototext"
2727
)

client/cmd/data_getIntent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"context"
1919
"fmt"
2020

21-
sdcpb "github.com/iptecharch/sdc-protos/sdcpb"
21+
sdcpb "github.com/sdcio/sdc-protos/sdcpb"
2222
"github.com/spf13/cobra"
2323
"google.golang.org/protobuf/encoding/prototext"
2424
)

client/cmd/data_listIntent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"context"
1919
"fmt"
2020

21-
sdcpb "github.com/iptecharch/sdc-protos/sdcpb"
21+
sdcpb "github.com/sdcio/sdc-protos/sdcpb"
2222
"github.com/spf13/cobra"
2323
"google.golang.org/protobuf/encoding/prototext"
2424
)

client/cmd/data_set.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121
"os"
2222
"strings"
2323

24-
"github.com/iptecharch/schema-server/pkg/utils"
25-
sdcpb "github.com/iptecharch/sdc-protos/sdcpb"
24+
"github.com/sdcio/schema-server/pkg/utils"
25+
sdcpb "github.com/sdcio/sdc-protos/sdcpb"
2626
"github.com/spf13/cobra"
2727
"google.golang.org/protobuf/encoding/prototext"
2828
)

0 commit comments

Comments
 (0)