Skip to content

Commit

Permalink
[INLONG-9410][Release] Change the tag of Docker images to 1.10.0 (#9429)
Browse files Browse the repository at this point in the history
  • Loading branch information
vernedeng committed Dec 6, 2023
1 parent 304a587 commit 9fb080c
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion conf/inlong.conf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spring_datasource_password=inlong

############## Dashboard Configuration ##############
# dashboard docker image
dashboard_docker_image=inlong/dashboard:latest
dashboard_docker_image=inlong/dashboard:1.10.0
# dashboard service port
dashboard_mapping_port=80

Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose/.env
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
#
# you can choose the released version number, like 1.3.0
# the latest tag corresponds to the master branch
VERSION_TAG=latest
VERSION_TAG=1.10.0
2 changes: 1 addition & 1 deletion docker/kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ The configuration file is [values.yaml](values.yaml), and the following tables l
| `timezone` | `Asia/Shanghai` | World time and date for cities in all time zones |
| `images.pullPolicy` | `IfNotPresent` | Image pull policy. One of `Always`, `Never`, `IfNotPresent` |
| `images.<component>.repository` | | Docker image repository for the component |
| `images.<component>.tag` | `latest` | Docker image tag for the component |
| `images.<component>.tag` | `1.10.0` | Docker image tag for the component |
| `<component>.component` | | Component name |
| `<component>.replicas` | `1` | Replicas is the desired number of replicas of a given Template |
| `<component>.podManagementPolicy` | `OrderedReady` | PodManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down |
Expand Down
14 changes: 7 additions & 7 deletions docker/kubernetes/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,25 +28,25 @@ components:
images:
agent:
repository: inlong/agent
tag: latest
tag: 1.10.0
dashboard:
repository: inlong/dashboard
tag: latest
tag: 1.10.0
dataproxy:
repository: inlong/dataproxy
tag: latest
tag: 1.10.0
tubemqManager:
repository: inlong/tubemq-manager
tag: latest
tag: 1.10.0
tubemqServer:
repository: inlong/tubemq-all
tag: latest
tag: 1.10.0
manager:
repository: inlong/manager
tag: latest
tag: 1.10.0
audit:
repository: inlong/audit
tag: latest
tag: 1.10.0
mysql:
repository: mysql
tag: 8.0.28
Expand Down
2 changes: 1 addition & 1 deletion inlong-agent/agent-docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ InLong Agent is available for development and experience.

##### Pull Image
```
docker pull inlong/agent:latest
docker pull inlong/agent:1.10.0
```

##### Start Container
Expand Down
2 changes: 1 addition & 1 deletion inlong-audit/audit-docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ InLong Audit is available for development and experience.

##### Pull Image
```
docker pull inlong/audit:latest
docker pull inlong/audit:1.10.0
```

##### Start Container
Expand Down
2 changes: 1 addition & 1 deletion inlong-dataproxy/dataproxy-docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ InLong DataProxy is available for development and experience.

##### Pull Image
```
docker pull inlong/dataproxy:latest
docker pull inlong/dataproxy:1.10.0
```

##### Start Container
Expand Down
4 changes: 2 additions & 2 deletions inlong-manager/manager-docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ InLong Manager is available for development and experience.
### Pull Image

```
docker pull inlong/manager:latest
docker pull inlong/manager:1.10.0
```

### Start Container
Expand All @@ -16,5 +16,5 @@ docker run -d --name manager -p 8083:8083 \
-e JDBC_URL=127.0.0.1:3306 \
-e USERNAME=root \
-e PASSWORD=inlong \
inlong/manager:latest
inlong/manager:1.10.0
```
4 changes: 2 additions & 2 deletions inlong-tubemq/tubemq-docker/tubemq-all/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ TubeMQ standalone is available for development and experience.

##### Pull Image
```
docker pull inlong/tubemq-all:latest
docker pull inlong/tubemq-all:1.10.0
```

##### Start Standalone Container
```
docker run -p 8080:8080 -p 8715:8715 -p 8123:8123 -p 2181:2181 --name tubemq -d inlong/tubemq-all:latest
docker run -p 8080:8080 -p 8715:8715 -p 8123:8123 -p 2181:2181 --name tubemq -d inlong/tubemq-all:1.10.0
```
this command will start zookeeper/master/broker service in one container.
#### Add Topic
Expand Down
2 changes: 1 addition & 1 deletion inlong-tubemq/tubemq-docker/tubemq-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ TubeMQ manager is available for development and experience.

##### Pull Image
```
docker pull inlong/tubemq-manager:latest
docker pull inlong/tubemq-manager:1.10.0
```

##### Start Container
Expand Down

0 comments on commit 9fb080c

Please sign in to comment.