Skip to content

Commit 509eaf1

Browse files
committed
chore: change module name to github.com/distr-sh/distr
Signed-off-by: Jakob Steiner <jakob.steiner@glasskube.eu>
1 parent b8e8362 commit 509eaf1

File tree

213 files changed

+680
-680
lines changed

Some content is hidden

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

213 files changed

+680
-680
lines changed

.github/workflows/build-hub.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ jobs:
4848
- name: community
4949
suffix: '-ce'
5050
images: |
51-
ghcr.io/glasskube/distr-ce
51+
ghcr.io/distr-sh/distr-ce
5252
- name: enterprise
5353
suffix: -ee
5454
images: |
55-
ghcr.io/glasskube/distr-ee
55+
ghcr.io/distr-sh/distr-ee
5656
registry.distr.sh/glasskube/distr-ee
5757
steps:
5858
- name: Checkout
@@ -116,9 +116,9 @@ jobs:
116116
env:
117117
CGO_ENABLED: '0'
118118
LDFLAGS: >-
119-
-X github.com/glasskube/distr/internal/buildconfig.version=${{ github.ref_name }}
120-
-X github.com/glasskube/distr/internal/buildconfig.commit=${{ steps.hash.outputs.sha_short }}
121-
-X github.com/glasskube/distr/internal/buildconfig.edition=${{ matrix.edition.name }}
119+
-X github.com/distr-sh/distr/internal/buildconfig.version=${{ github.ref_name }}
120+
-X github.com/distr-sh/distr/internal/buildconfig.commit=${{ steps.hash.outputs.sha_short }}
121+
-X github.com/distr-sh/distr/internal/buildconfig.edition=${{ matrix.edition.name }}
122122
123123
- name: Start Hub and verify migrations
124124
shell: bash

.github/workflows/build-mcp.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
env:
3434
CGO_ENABLED: '0'
3535
LDFLAGS: >-
36-
-X github.com/glasskube/distr/internal/buildconfig.version=${{ github.ref_name }}
37-
-X github.com/glasskube/distr/internal/buildconfig.commit=${{ steps.hash.outputs.sha_short }}
36+
-X github.com/distr-sh/distr/internal/buildconfig.version=${{ github.ref_name }}
37+
-X github.com/distr-sh/distr/internal/buildconfig.commit=${{ steps.hash.outputs.sha_short }}
3838
3939
- name: Login to GitHub Container Registry (tag only)
4040
if: ${{ startsWith(github.ref, 'refs/tags/') }}
@@ -50,7 +50,7 @@ jobs:
5050
id: meta
5151
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
5252
with:
53-
images: ghcr.io/glasskube/distr-mcp
53+
images: ghcr.io/distr-sh/distr-mcp
5454
tags: |
5555
type=ref,event=branch
5656
type=semver,pattern={{version}}

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Thank you for your interest in contributing to Distr!
44

5-
Distr is open-source software licensed under the [Apache 2.0 license](https://github.com/glasskube/distr/blob/main/LICENSE) and accepts contributions via GitHub pull requests.
5+
Distr is open-source software licensed under the [Apache 2.0 license](https://github.com/distr-sh/distr/blob/main/LICENSE) and accepts contributions via GitHub pull requests.
66

77
## Communications
88

Dockerfile.docker-agent

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ COPY cmd/agent/docker/ cmd/agent/docker/
1616
COPY internal/ internal/
1717
RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} \
1818
go build -a -o agent \
19-
-ldflags="-s -w -X github.com/glasskube/distr/internal/buildconfig.version=${VERSION:-snapshot} -X github.com/glasskube/distr/internal/buildconfig.commit=${COMMIT}" \
19+
-ldflags="-s -w -X github.com/distr-sh/distr/internal/buildconfig.version=${VERSION:-snapshot} -X github.com/distr-sh/distr/internal/buildconfig.commit=${COMMIT}" \
2020
./cmd/agent/docker/
2121

2222
FROM docker:27.3.1-alpine3.20

Dockerfile.kubernetes-agent

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ COPY cmd/agent/kubernetes/ cmd/agent/kubernetes/
1616
COPY internal/ internal/
1717
RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} \
1818
go build -a -o agent \
19-
-ldflags="-s -w -X github.com/glasskube/distr/internal/buildconfig.version=${VERSION:-snapshot} -X github.com/glasskube/distr/internal/buildconfig.commit=${COMMIT}" \
19+
-ldflags="-s -w -X github.com/distr-sh/distr/internal/buildconfig.version=${VERSION:-snapshot} -X github.com/distr-sh/distr/internal/buildconfig.commit=${COMMIT}" \
2020
./cmd/agent/kubernetes/
2121

2222
FROM gcr.io/distroless/static-debian12:nonroot@sha256:cba10d7abd3e203428e86f5b2d7fd5eb7d8987c387864ae4996cf97191b33764

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<br>
22
<div align="center">
33
<a href="https://glasskube.dev?utm_source=github">
4-
<img src="https://github.com/glasskube/distr/blob/main/frontend/ui/public/distr-logo.svg" alt="Distr Logo" height="160">
4+
<img src="https://github.com/distr-sh/distr/blob/main/frontend/ui/public/distr-logo.svg" alt="Distr Logo" height="160">
55
</a>
66
<h1 align="center">Distr</h1>
77
<br>
@@ -13,7 +13,7 @@ Distr enables software and AI companies to distribute applications to self-manag
1313

1414
<hr>
1515

16-
[![GitHub Repo stars](https://img.shields.io/github/stars/glasskube/distr?style=flat)](https://github.com/glasskube/distr)
16+
[![GitHub Repo stars](https://img.shields.io/github/stars/glasskube/distr?style=flat)](https://github.com/distr-sh/distr)
1717
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
1818
[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/distr)](https://artifacthub.io/packages/helm/distr/distr)
1919

@@ -88,7 +88,7 @@ Check out [`deploy/docker`](deploy/docker) for our example deployment using Dock
8888
To get started quickly, do the following:
8989

9090
```shell
91-
mkdir distr && cd distr && curl -fsSL https://github.com/glasskube/distr/releases/latest/download/deploy-docker.tar.bz2 | tar -jx
91+
mkdir distr && cd distr && curl -fsSL https://github.com/distr-sh/distr/releases/latest/download/deploy-docker.tar.bz2 | tar -jx
9292
# make necessary changes to the .env file
9393
docker-compose up -d
9494
```
@@ -101,7 +101,7 @@ To install Distr in Kubernetes, simply run:
101101

102102
```shell
103103
helm upgrade --install --wait --namespace distr --create-namespace \
104-
distr oci://ghcr.io/glasskube/charts/distr \
104+
distr oci://ghcr.io/distr-sh/charts/distr \
105105
--set postgresql.enabled=true --set minio.enabled=true
106106
```
107107

api/access_token.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package api
33
import (
44
"time"
55

6-
"github.com/glasskube/distr/internal/authkey"
6+
"github.com/distr-sh/distr/internal/authkey"
77
"github.com/google/uuid"
88
)
99

api/agent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package api
22

33
import (
4-
"github.com/glasskube/distr/internal/types"
4+
"github.com/distr-sh/distr/internal/types"
55
"github.com/google/uuid"
66
)
77

api/application.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package api
33
import (
44
"time"
55

6-
"github.com/glasskube/distr/internal/types"
6+
"github.com/distr-sh/distr/internal/types"
77
"github.com/google/uuid"
88
)
99

api/artifact.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package api
22

3-
import "github.com/glasskube/distr/internal/types"
3+
import "github.com/distr-sh/distr/internal/types"
44

55
type ArtifactResponse struct {
66
types.ArtifactWithTaggedVersion

0 commit comments

Comments
 (0)