Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 4.0.0-m1 release #1488

Merged
merged 1 commit into from
Nov 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion adapter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<images>
<image>
<alias>mg-adapter</alias>
<name>wso2am/mg-adapter:${project.version}</name>
<name>wso2/mg-adapter:${project.version}</name>
<build>
<contextDir>${project.basedir}/src/main/resources</contextDir>
<assembly>
Expand Down
2 changes: 1 addition & 1 deletion developer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ maven plugin would fail to create the new docker images)
java-11 as the source)

- Navigate to distribution/target/.
Then extract the zip file called wso2am-micro-gw-4.0.0-SNAPSHOT.zip
Then extract the zip file called wso2am-micro-gw-4.0.0-m1.zip

- Then execute `docker-compose up` to run the setup. This will start an envoy container,
filter-core container and piot container. The mounted configurations can be found from
Expand Down
2 changes: 1 addition & 1 deletion enforcer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
<images>
<image>
<alias>mg-enforcer</alias>
<name>wso2am/mg-enforcer:${project.version}</name>
<name>wso2/mg-enforcer:${project.version}</name>
<build>
<contextDir>${project.basedir}/src/main/resources</contextDir>
<args>
Expand Down
10 changes: 5 additions & 5 deletions remove-containers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
# -----------------------------------------------------------------------

# Just to assist developers by removing all the containers.
micro_gw_version=4.0.0-SNAPSHOT
micro_gw_version=4.0.0-m1

docker kill $(docker ps -a | grep wso2am/mg-enforcer:$micro_gw_version | awk '{print $1}')
docker rm $(docker ps -a | grep wso2am/mg-enforcer:$micro_gw_version | awk '{print $1}')
docker kill $(docker ps -a | grep wso2/mg-enforcer:$micro_gw_version | awk '{print $1}')
docker rm $(docker ps -a | grep wso2/mg-enforcer:$micro_gw_version | awk '{print $1}')

docker kill $(docker ps -a | grep wso2am/mg-adapter:$micro_gw_version | awk '{print $1}')
docker rm $(docker ps -a | grep wso2am/mg-adapter:$micro_gw_version | awk '{print $1}')
docker kill $(docker ps -a | grep wso2/mg-adapter:$micro_gw_version | awk '{print $1}')
docker rm $(docker ps -a | grep wso2/mg-adapter:$micro_gw_version | awk '{print $1}')
6 changes: 3 additions & 3 deletions resources/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
version: "3.7"
services:
router:
image: wso2am/mg-router:4.0.0-SNAPSHOT
image: wso2/mg-router:4.0.0-m1
ports:
- "9095:9095"
- "9000:9000"
links:
- adapter
- enforcer
adapter:
image: wso2am/mg-adapter:4.0.0-SNAPSHOT
image: wso2/mg-adapter:4.0.0-m1
volumes:
- ./resources/adapter/security:/home/wso2/security
- ./resources/conf:/home/wso2/conf
ports:
- "18000:18000"
- "9843:9843"
enforcer:
image: wso2am/mg-enforcer:4.0.0-SNAPSHOT
image: wso2/mg-enforcer:4.0.0-m1
volumes:
- ./resources/enforcer/security:/home/wso2/mg/security
- ./resources/conf:/home/wso2/conf
Expand Down
2 changes: 1 addition & 1 deletion router/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<images>
<image>
<alias>mg-router</alias>
<name>wso2am/mg-router:${project.version}</name>
<name>wso2/mg-router:${project.version}</name>
<build>
<contextDir>${project.basedir}/src/main/resources</contextDir>
<assembly>
Expand Down