Skip to content

Commit 47c85bd

Browse files
committed
chore: update after org rename
Use siderolabs, bump tools/pkgs. Signed-off-by: Andrey Smirnov <[email protected]> (cherry picked from commit 4eb3093)
1 parent 7851b23 commit 47c85bd

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ ARG PKGS
77

88
# Resolve package images using ${PKGS} to be used later in COPY --from=.
99

10-
FROM ghcr.io/talos-systems/ca-certificates:${PKGS} AS pkg-ca-certificates
11-
FROM ghcr.io/talos-systems/fhs:${PKGS} AS pkg-fhs
10+
FROM ghcr.io/siderolabs/ca-certificates:${PKGS} AS pkg-ca-certificates
11+
FROM ghcr.io/siderolabs/fhs:${PKGS} AS pkg-fhs
1212

1313
# The base target provides the base for running various tasks against the source
1414
# code
@@ -91,5 +91,5 @@ FROM scratch AS container
9191
COPY --from=pkg-ca-certificates / /
9292
COPY --from=pkg-fhs / /
9393
COPY --from=binary /manager /manager
94-
LABEL org.opencontainers.image.source https://github.com/talos-systems/cluster-api-bootstrap-provider-talos
94+
LABEL org.opencontainers.image.source https://github.com/siderolabs/cluster-api-bootstrap-provider-talos
9595
ENTRYPOINT [ "/manager" ]

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
REGISTRY ?= ghcr.io
2-
USERNAME ?= talos-systems
2+
USERNAME ?= siderolabs
33
SHA ?= $(shell git describe --match=none --always --abbrev=8 --dirty)
44
TAG ?= $(shell git describe --tag --always --dirty)
55
BRANCH ?= $(shell git rev-parse --abbrev-ref HEAD)
@@ -9,8 +9,8 @@ NAME := cluster-api-talos-controller
99
ARTIFACTS := _out
1010
TEST_RUN ?= ./...
1111

12-
TOOLS ?= ghcr.io/talos-systems/tools:v0.9.0
13-
PKGS ?= v0.9.0
12+
TOOLS ?= ghcr.io/siderolabs/tools:v1.0.0
13+
PKGS ?= v1.0.0
1414
TALOS_VERSION ?= v0.14.0
1515
K8S_VERSION ?= 1.23.1
1616

@@ -129,7 +129,7 @@ check-dirty: ## Verifies that source tree is not dirty
129129
@if test -n "`git status --porcelain`"; then echo "Source tree is dirty"; git status; exit 1 ; fi
130130

131131
conformance: ## Performs policy checks against the commit and source code.
132-
docker run --rm -it -v $(PWD):/src -w /src ghcr.io/talos-systems/conform:v0.1.0-alpha.23 enforce
132+
docker run --rm -it -v $(PWD):/src -w /src ghcr.io/siderolabs/conform:latest enforce
133133

134134
# Make `make test` behave just like `go test` regarding relative paths.
135135
test: ## Run tests.
@@ -140,7 +140,7 @@ coverage: ## Upload coverage data to codecov.io.
140140
/usr/local/bin/codecov -f coverage.txt -X fix
141141

142142
talosctl:
143-
curl -Lo talosctl https://github.com/talos-systems/talos/releases/download/$(TALOS_VERSION)/talosctl-$(shell uname -s | tr "[:upper:]" "[:lower:]")-amd64
143+
curl -Lo talosctl https://github.com/siderolabs/talos/releases/download/$(TALOS_VERSION)/talosctl-$(shell uname -s | tr "[:upper:]" "[:lower:]")-amd64
144144
chmod +x ./talosctl
145145

146146
env-up: talosctl ## Start development environment.

PROJECT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
domain: cluster.x-k8s.io
2-
repo: github.com/talos-systems/cluster-api-bootstrap-provider-talos
2+
repo: github.com/siderolabs/cluster-api-bootstrap-provider-talos
33
resources:
44
- group: bootstrap
55
kind: TalosConfig

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ There are a few corequisites and assumptions that go into using this project:
1414

1515
## Installing
1616

17-
CABPT provider should be installed alongside with [CACPPT](https://github.com/talos-systems/cluster-api-control-plane-provider-talos) provider.
17+
CABPT provider should be installed alongside with [CACPPT](https://github.com/siderolabs/cluster-api-control-plane-provider-talos) provider.
1818

1919
```shell
2020
clusterctl init --bootstrap talos --control-plane talos --infrastructure <infrastructure provider>

docs/GCP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This guide will detail how to deploy the Talos provider into an existing Kuberne
66

77
To import the image, you must download a .tar.gz talos release, add it to Google storage, and import it as an image.
88

9-
- Download the `gcp.tar.gz` image from our [Github releases](https://github.com/talos-systems/talos/releases).
9+
- Download the `gcp.tar.gz` image from our [Github releases](https://github.com/siderolabs/talos/releases).
1010

1111
- Follow the [Google instructions](https://cloud.google.com/compute/docs/images/import-existing-image#import_image) on importing an image using cloud storage.
1212

hack/release.sh

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

33
set -e
44

5-
RELEASE_TOOL_IMAGE="ghcr.io/talos-systems/release-tool:latest"
5+
RELEASE_TOOL_IMAGE="ghcr.io/siderolabs/release-tool:latest"
66

77
function release-tool {
88
docker pull "${RELEASE_TOOL_IMAGE}" >/dev/null

hack/release.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
commit = "HEAD"
33

44
project_name = "CAPI Bootstrap Provider Talos"
5-
github_repo = "talos-systems/cluster-api-bootstrap-provider-talos"
6-
match_deps = "^github.com/(talos-systems/[a-zA-Z0-9-]+)$"
5+
github_repo = "siderolabs/cluster-api-bootstrap-provider-talos"
6+
match_deps = "^github.com/(siderolabs/[a-zA-Z0-9-]+)$"
77

88
# previous release
99
previous = "v0.5.1"

0 commit comments

Comments
 (0)