Skip to content

Commit af85c38

Browse files
committed
Relocate Docker image to ghcr.io/crate/tsperf:latest
1 parent d105e56 commit af85c38

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ jobs:
4949
password: ${{ secrets.REGISTRY_PASSWORD }}
5050
- if: steps.get_tag.outputs.tag != steps.get_tag.outputs.last_tag
5151
run: |
52-
docker build -t ${{ secrets.REGISTRY_LOGIN_SERVER }}/data-generator:${{ steps.get_tag.outputs.tag }} .
53-
docker push ${{ secrets.REGISTRY_LOGIN_SERVER }}/data-generator:${{ steps.get_tag.outputs.tag }}
52+
docker build -t ${{ secrets.REGISTRY_LOGIN_SERVER }}/tsperf:${{ steps.get_tag.outputs.tag }} .
53+
docker push ${{ secrets.REGISTRY_LOGIN_SERVER }}/tsperf:${{ steps.get_tag.outputs.tag }}

KUBERNETES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ spec:
4242
- name: image-pull-cr8
4343
containers:
4444
- name: datagenerator
45-
image: registry.cr8.net/data-generator:{{ version }}
45+
image: ghcr.io/crate/tsperf:latest
4646
ports:
4747
- containerPort: 8000
4848
protocol: TCP

examples/basic-cratedb.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version: "2.3"
55
services:
66

77
datagen1:
8-
image: tsperf
8+
image: ghcr.io/crate/tsperf:latest
99
command: [ "tsperf", "write" ]
1010
ports:
1111
- 8000:8000
@@ -20,7 +20,7 @@ services:
2020
SCHEMA: "tsperf.schema.basic:environment.json"
2121

2222
datagen2:
23-
image: tsperf
23+
image: ghcr.io/crate/tsperf:latest
2424
command: [ "tsperf", "write" ]
2525
ports:
2626
- 8001:8000

examples/basic-influxdb.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: "2.3"
66
services:
77

88
datagen1:
9-
image: tsperf
9+
image: ghcr.io/crate/tsperf:latest
1010
command: [ "tsperf", "write" ]
1111
ports:
1212
- 8000:8000
@@ -22,7 +22,7 @@ services:
2222
ADAPTER: influxdb
2323

2424
datagen2:
25-
image: tsperf
25+
image: ghcr.io/crate/tsperf:latest
2626
command: [ "tsperf", "write" ]
2727
ports:
2828
- 8001:8000

examples/basic-mongodb.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: "2.3"
66
services:
77

88
datagen1:
9-
image: tsperf
9+
image: ghcr.io/crate/tsperf:latest
1010
command: [ "tsperf", "write" ]
1111
ports:
1212
- 8000:8000
@@ -23,7 +23,7 @@ services:
2323
ADAPTER: mongodb
2424

2525
datagen2:
26-
image: tsperf
26+
image: ghcr.io/crate/tsperf:latest
2727
command: [ "tsperf", "write" ]
2828
ports:
2929
- 8001:8000

examples/basic-timescaledb.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: "2.3"
66
services:
77

88
datagen1:
9-
image: tsperf
9+
image: ghcr.io/crate/tsperf:latest
1010
command: [ "tsperf", "write" ]
1111
ports:
1212
- 8000:8000
@@ -24,7 +24,7 @@ services:
2424
SCHEMA: "tsperf.schema.basic:environment.json"
2525

2626
datagen2:
27-
image: tsperf
27+
image: ghcr.io/crate/tsperf:latest
2828
command: [ "tsperf", "write" ]
2929
ports:
3030
- 8001:8000

examples/factory-complex-scenario.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "2.3"
22
services:
33

44
datagen_base1:
5-
image: tsperf
5+
image: ghcr.io/crate/tsperf:latest
66
command: [ "tsperf", "write" ]
77
ports:
88
- 8000:8000
@@ -17,7 +17,7 @@ services:
1717
ADAPTER: cratedb
1818

1919
datagen_base2:
20-
image: tsperf
20+
image: ghcr.io/crate/tsperf:latest
2121
command: [ "tsperf", "write" ]
2222
ports:
2323
- 8001:8000
@@ -32,7 +32,7 @@ services:
3232
ADAPTER: cratedb
3333

3434
datagen_upper:
35-
image: tsperf
35+
image: ghcr.io/crate/tsperf:latest
3636
command: [ "tsperf", "write" ]
3737
ports:
3838
- 8002:8000
@@ -47,7 +47,7 @@ services:
4747
ADAPTER: cratedb
4848

4949
datagen_lower:
50-
image: tsperf
50+
image: ghcr.io/crate/tsperf:latest
5151
command: [ "tsperf", "write" ]
5252
ports:
5353
- 8003:8000

examples/factory-simple-machine.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "2.3"
22
services:
33

44
datagen:
5-
image: tsperf
5+
image: ghcr.io/crate/tsperf:latest
66
command: [ "tsperf", "write" ]
77
ports:
88
- 8000:8000

tsperf/write/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ The *Time Series Data Generator* `tsperf` package and can be installed using `pi
9393

9494
#### Docker image
9595

96-
Another way to use the Data Generator is to build the Docker Image:
96+
Another way to use the Data Generator is to build the Docker image `tsperf`.
9797

9898
+ navigate to root directory of this repository
9999
+ build docker image with `docker build -t tsperf -f Dockerfile .`
@@ -1089,7 +1089,7 @@ The resulting yml file could look like this:
10891089
version: "2.3"
10901090
services:
10911091
datagen:
1092-
image: tsperf
1092+
image: ghcr.io/crate/tsperf:latest
10931093
ports:
10941094
- 8000:8000
10951095
environment:

0 commit comments

Comments
 (0)