Skip to content

Commit 9a849b1

Browse files
[master] changing package to k3s-io (#4846)
* changing package to k3s-io Signed-off-by: Luther Monson <[email protected]> Co-authored-by: Derek Nola <[email protected]>
1 parent a82ac4f commit 9a849b1

File tree

142 files changed

+371
-341
lines changed

Some content is hidden

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

142 files changed

+371
-341
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- HTML Comments can be left in place or removed. -->
2-
<!-- Please see our contributing guide at https://github.com/rancher/k3s/blob/master/CONTRIBUTING.md for guidance on opening pull requests -->
2+
<!-- Please see our contributing guide at https://github.com/k3s-io/k3s/blob/master/CONTRIBUTING.md for guidance on opening pull requests -->
33

44
#### Proposed Changes ####
55

@@ -15,7 +15,7 @@
1515

1616
#### Linked Issues ####
1717

18-
<!-- Link any related issues, pull-requests, or commit hashes that are relevant to this pull request. If you are opening a PR without a corresponding issue please consider creating one first, at https://github.com/rancher/k3s/issues . A functional example will greatly help QA with verifying/reproducing a bug or testing new features. -->
18+
<!-- Link any related issues, pull-requests, or commit hashes that are relevant to this pull request. If you are opening a PR without a corresponding issue please consider creating one first, at https://github.com/k3s-io/k3s/issues . A functional example will greatly help QA with verifying/reproducing a bug or testing new features. -->
1919

2020
#### User-Facing Change ####
2121
<!--

BUILDING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Before getting started, bear in mind that this repository includes all of Kubernetes history, so consider shallow cloning with (`--depth 1`) to speed up the process.
66

77
```bash
8-
git clone --depth 1 https://github.com/rancher/k3s.git
8+
git clone --depth 1 https://github.com/k3s-io/k3s.git
99
```
1010

1111
The k3s build process requires some autogenerated code and remote artifacts that are not checked in to version control. To prepare these resources for your build environment, run:

Dockerfile.dapper

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,11 @@ RUN wget -O - ${YQ_URL}_$(go env GOARCH) > /usr/bin/yq && chmod +x /usr/bin/yq
3939
ARG SELINUX=true
4040
ENV SELINUX $SELINUX
4141

42-
ENV DAPPER_RUN_ARGS --privileged -v k3s-cache:/go/src/github.com/rancher/k3s/.cache -v trivy-cache:/root/.cache/trivy
42+
ENV DAPPER_RUN_ARGS --privileged -v k3s-cache:/go/src/github.com/k3s-io/k3s/.cache -v trivy-cache:/root/.cache/trivy
4343
ENV DAPPER_ENV REPO TAG DRONE_TAG IMAGE_NAME SKIP_VALIDATE SKIP_AIRGAP GCLOUD_AUTH GITHUB_TOKEN GOLANG
44-
ENV DAPPER_SOURCE /go/src/github.com/rancher/k3s/
44+
ENV DAPPER_SOURCE /go/src/github.com/k3s-io/k3s/
4545
ENV DAPPER_OUTPUT ./bin ./dist ./build/out ./build/static ./pkg/static ./pkg/deploy
46+
4647
ENV DAPPER_DOCKER_SOCKET true
4748
ENV HOME ${DAPPER_SOURCE}
4849
ENV CROSS true

Dockerfile.test.dapper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ENV TEST_CLEANUP true
2020

2121
ENV DAPPER_RUN_ARGS --privileged --network host -v /tmp:/tmp
2222
ENV DAPPER_ENV REPO TAG DRONE_TAG DRONE_BUILD_EVENT IMAGE_NAME GCLOUD_AUTH SONOBUOY_VERSION ENABLE_REGISTRY
23-
ENV DAPPER_SOURCE /go/src/github.com/rancher/k3s/
23+
ENV DAPPER_SOURCE /go/src/github.com/k3s-io/k3s/
2424
ENV DAPPER_OUTPUT ./dist
2525
ENV DAPPER_DOCKER_SOCKET true
2626
ENV HOME ${DAPPER_SOURCE}

Dockerfile.test.mod.dapper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG GOLANG=golang:1.17.5-alpine3.15
22
FROM ${GOLANG}
33

44
RUN apk -U --no-cache add bash jq
5-
ENV DAPPER_SOURCE /go/src/github.com/rancher/k3s/
5+
ENV DAPPER_SOURCE /go/src/github.com/k3s-io/k3s/
66
ENV HOME ${DAPPER_SOURCE}
77
WORKDIR ${DAPPER_SOURCE}
88

cmd/agent/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"errors"
66
"os"
77

8-
"github.com/rancher/k3s/pkg/cli/agent"
9-
"github.com/rancher/k3s/pkg/cli/cmds"
10-
"github.com/rancher/k3s/pkg/configfilearg"
8+
"github.com/k3s-io/k3s/pkg/cli/agent"
9+
"github.com/k3s-io/k3s/pkg/cli/cmds"
10+
"github.com/k3s-io/k3s/pkg/configfilearg"
1111
"github.com/sirupsen/logrus"
1212
"github.com/urfave/cli"
1313
)

cmd/cert/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"errors"
66
"os"
77

8-
"github.com/rancher/k3s/pkg/cli/cert"
9-
"github.com/rancher/k3s/pkg/cli/cmds"
10-
"github.com/rancher/k3s/pkg/configfilearg"
8+
"github.com/k3s-io/k3s/pkg/cli/cert"
9+
"github.com/k3s-io/k3s/pkg/cli/cmds"
10+
"github.com/k3s-io/k3s/pkg/configfilearg"
1111
"github.com/sirupsen/logrus"
1212
"github.com/urfave/cli"
1313
)

cmd/containerd/main.go

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

33
import (
4-
"github.com/rancher/k3s/pkg/containerd"
4+
"github.com/k3s-io/k3s/pkg/containerd"
55
"k8s.io/klog"
66
)
77

cmd/ctr/main.go

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

3-
import "github.com/rancher/k3s/pkg/ctr"
3+
import "github.com/k3s-io/k3s/pkg/ctr"
44

55
func main() {
66
ctr.Main()

cmd/encrypt/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"errors"
66
"os"
77

8-
"github.com/rancher/k3s/pkg/cli/cmds"
9-
"github.com/rancher/k3s/pkg/cli/secretsencrypt"
10-
"github.com/rancher/k3s/pkg/configfilearg"
8+
"github.com/k3s-io/k3s/pkg/cli/cmds"
9+
"github.com/k3s-io/k3s/pkg/cli/secretsencrypt"
10+
"github.com/k3s-io/k3s/pkg/configfilearg"
1111
"github.com/sirupsen/logrus"
1212
"github.com/urfave/cli"
1313
)

0 commit comments

Comments
 (0)