Skip to content

Commit bfdd85a

Browse files
committed
Fixed docker images from clickhouse to altinityinfra
1 parent 99f9574 commit bfdd85a

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

docker/docs/builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# docker build -t clickhouse/docs-builder .
1+
# docker build -t altinityinfra/docs-builder .
22
# nodejs 17 prefers ipv6 and is broken in our environment
33
FROM node:16-alpine
44

docker/test/fasttest/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# docker build -t clickhouse/fasttest .
22
ARG FROM_TAG=latest
3-
FROM clickhouse/test-util:$FROM_TAG
3+
FROM altinityinfra/test-util:$FROM_TAG
44

55
RUN apt-get update \
66
&& apt-get install \

docker/test/integration/base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ maxClientCnxns=80' > /opt/zookeeper/conf/zoo.cfg && \
7373
ENV TZ=Etc/UTC
7474
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
7575

76-
COPY --from=clickhouse/cctools:0d6b90a7a490 /opt/gdb /opt/gdb
76+
COPY --from=altinityinfra/cctools:0d6b90a7a490 /opt/gdb /opt/gdb
7777
ENV PATH="/opt/gdb/bin:${PATH}"

docker/test/performance-comparison/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ RUN pip3 --no-cache-dir install -r requirements.txt
4141

4242
COPY run.sh /
4343

44-
COPY --from=clickhouse/cctools:0d6b90a7a490 /opt/gdb /opt/gdb
44+
COPY --from=altinityinfra/cctools:0d6b90a7a490 /opt/gdb /opt/gdb
4545
ENV PATH="/opt/gdb/bin:${PATH}"
4646

4747
CMD ["bash", "/run.sh"]

docker/test/util/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ RUN apt-get update \
5858

5959
COPY process_functional_tests_result.py /
6060

61-
COPY --from=clickhouse/cctools:0d6b90a7a490 /opt/gdb /opt/gdb
61+
COPY --from=altinityinfra/cctools:0d6b90a7a490 /opt/gdb /opt/gdb
6262
ENV PATH="/opt/gdb/bin:${PATH}"

tests/ci/changelog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def parse_args() -> argparse.Namespace:
161161
)
162162
parser.add_argument(
163163
"--repo",
164-
default="ClickHouse/ClickHouse",
164+
default="Altinity/ClickHouse",
165165
help="a repository to query for pull-requests from GitHub",
166166
)
167167
parser.add_argument(

tests/ci/env_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
GITHUB_RUN_ID = os.getenv("GITHUB_RUN_ID", "0")
2525
GITHUB_SERVER_URL = os.getenv("GITHUB_SERVER_URL", "https://github.com")
2626
GITHUB_UPSTREAM_REPOSITORY = os.getenv(
27-
"GITHUB_UPSTREAM_REPOSITORY", "ClickHouse/ClickHouse"
27+
"GITHUB_UPSTREAM_REPOSITORY", "Altinity/ClickHouse"
2828
)
2929
GITHUB_WORKSPACE = os.getenv("GITHUB_WORKSPACE", git_root)
3030
GITHUB_RUN_URL = f"{GITHUB_SERVER_URL}/{GITHUB_REPOSITORY}/actions/runs/{GITHUB_RUN_ID}"

tests/ci/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ def parse_args() -> argparse.Namespace:
603603
)
604604
parser.add_argument(
605605
"--repo",
606-
default="ClickHouse/ClickHouse",
606+
default="Altinity/ClickHouse",
607607
help="repository to create the release",
608608
)
609609
parser.add_argument(

tests/integration/test_trace_log_build_id/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
node = cluster.add_instance(
1212
"node",
1313
with_zookeeper=True,
14-
image="clickhouse/clickhouse-server",
14+
image="altinity/clickhouse-server",
1515
tag=CLICKHOUSE_CI_MIN_TESTED_VERSION,
1616
stay_alive=True,
1717
with_installed_binary=True,

0 commit comments

Comments
 (0)