Skip to content

Commit 9b6ddcc

Browse files
authored
[INLONG-9653][Release] Change the tag of Docker images to 1.11.0 (#9680)
1 parent 8b72deb commit 9b6ddcc

File tree

10 files changed

+17
-17
lines changed

10 files changed

+17
-17
lines changed

conf/inlong.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ spring_datasource_password=inlong
2727

2828
############## Dashboard Configuration ##############
2929
# dashboard docker image
30-
dashboard_docker_image=inlong/dashboard:latest
30+
dashboard_docker_image=inlong/dashboard:1.11.0
3131
# dashboard service port
3232
dashboard_mapping_port=80
3333

docker/docker-compose/.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
#
1717
# you can choose the released version number, like 1.3.0
1818
# the latest tag corresponds to the master branch
19-
VERSION_TAG=latest
19+
VERSION_TAG=1.11.0

docker/kubernetes/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The configuration file is [values.yaml](values.yaml), and the following tables l
7474
| `timezone` | `Asia/Shanghai` | World time and date for cities in all time zones |
7575
| `images.pullPolicy` | `IfNotPresent` | Image pull policy. One of `Always`, `Never`, `IfNotPresent` |
7676
| `images.<component>.repository` | | Docker image repository for the component |
77-
| `images.<component>.tag` | `latest` | Docker image tag for the component |
77+
| `images.<component>.tag` | `1.11.0` | Docker image tag for the component |
7878
| `<component>.component` | | Component name |
7979
| `<component>.replicas` | `1` | Replicas is the desired number of replicas of a given Template |
8080
| `<component>.podManagementPolicy` | `OrderedReady` | PodManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down |

docker/kubernetes/values.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,25 +28,25 @@ components:
2828
images:
2929
agent:
3030
repository: inlong/agent
31-
tag: latest
31+
tag: 1.11.0
3232
dashboard:
3333
repository: inlong/dashboard
34-
tag: latest
34+
tag: 1.11.0
3535
dataproxy:
3636
repository: inlong/dataproxy
37-
tag: latest
37+
tag: 1.11.0
3838
tubemqManager:
3939
repository: inlong/tubemq-manager
40-
tag: latest
40+
tag: 1.11.0
4141
tubemqServer:
4242
repository: inlong/tubemq-all
43-
tag: latest
43+
tag: 1.11.0
4444
manager:
4545
repository: inlong/manager
46-
tag: latest
46+
tag: 1.11.0
4747
audit:
4848
repository: inlong/audit
49-
tag: latest
49+
tag: 1.11.0
5050
mysql:
5151
repository: mysql
5252
tag: 8.0.28

inlong-agent/agent-docker/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ InLong Agent is available for development and experience.
33

44
##### Pull Image
55
```
6-
docker pull inlong/agent:latest
6+
docker pull inlong/agent:1.11.0
77
```
88

99
##### Start Container

inlong-audit/audit-docker/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ InLong Audit is available for development and experience.
33

44
##### Pull Image
55
```
6-
docker pull inlong/audit:latest
6+
docker pull inlong/audit:1.11.0
77
```
88

99
##### Start Container

inlong-dataproxy/dataproxy-docker/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ InLong DataProxy is available for development and experience.
33

44
##### Pull Image
55
```
6-
docker pull inlong/dataproxy:latest
6+
docker pull inlong/dataproxy:1.11.0
77
```
88

99
##### Start Container

inlong-manager/manager-docker/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ InLong Manager is available for development and experience.
55
### Pull Image
66

77
```
8-
docker pull inlong/manager:latest
8+
docker pull inlong/manager:1.11.0
99
```
1010

1111
### Start Container

inlong-tubemq/tubemq-docker/tubemq-all/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ TubeMQ standalone is available for development and experience.
33

44
##### Pull Image
55
```
6-
docker pull inlong/tubemq-all:latest
6+
docker pull inlong/tubemq-all:1.11.0
77
```
88

99
##### Start Standalone Container
1010
```
11-
docker run -p 8080:8080 -p 8715:8715 -p 8123:8123 -p 2181:2181 --name tubemq -d inlong/tubemq-all:latest
11+
docker run -p 8080:8080 -p 8715:8715 -p 8123:8123 -p 2181:2181 --name tubemq -d inlong/tubemq-all:1.11.0
1212
```
1313
this command will start zookeeper/master/broker service in one container.
1414
#### Add Topic

inlong-tubemq/tubemq-docker/tubemq-manager/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ TubeMQ manager is available for development and experience.
33

44
##### Pull Image
55
```
6-
docker pull inlong/tubemq-manager:latest
6+
docker pull inlong/tubemq-manager:1.11.0
77
```
88

99
##### Start Container

0 commit comments

Comments
 (0)