Skip to content

Commit 05827ae

Browse files
authored
remove pulsar-standalone image (#11657)
### Motivation Currently, the pulsar-dashboard has been removed in #11284, as the pulsar-standalone image is required pulsar-dashboard and provide dashboard service in one container, which leads to building failure in pulsar-standalone image. in #11623, as @merlimat suggests, this PR removes the pulsar-standalone image from master. I did a quick search in the codebase to find if there is any doc related to pulsar-standalone image but seems no doc related to pulsar-standalone image anymore. so this PR will not include any doc changes. ### Modifications - remove pulsar-standalone image
1 parent e36233e commit 05827ae

File tree

5 files changed

+0
-200
lines changed

5 files changed

+0
-200
lines changed

docker/build.sh

-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,4 @@
2121
ROOT_DIR=$(git rev-parse --show-toplevel)
2222
cd $ROOT_DIR/docker
2323

24-
mvn -f ../dashboard/pom.xml package -Pdocker,-main
2524
mvn package -Pdocker,-main

docker/pom.xml

-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
<module>pulsar</module>
6161
<module>grafana</module>
6262
<module>pulsar-all</module>
63-
<module>pulsar-standalone</module>
6463
</modules>
6564
</profile>
6665
</profiles>

docker/publish.sh

-4
Original file line numberDiff line numberDiff line change
@@ -65,21 +65,17 @@ set -e
6565
docker tag pulsar:latest ${docker_registry_org}/pulsar:latest
6666
docker tag pulsar-all:latest ${docker_registry_org}/pulsar-all:latest
6767
docker tag pulsar-grafana:latest ${docker_registry_org}/pulsar-grafana:latest
68-
docker tag pulsar-standalone:latest ${docker_registry_org}/pulsar-standalone:latest
6968

7069
docker tag pulsar:latest ${docker_registry_org}/pulsar:$MVN_VERSION
7170
docker tag pulsar-all:latest ${docker_registry_org}/pulsar-all:$MVN_VERSION
7271
docker tag pulsar-grafana:latest ${docker_registry_org}/pulsar-grafana:$MVN_VERSION
73-
docker tag pulsar-standalone:latest ${docker_registry_org}/pulsar-standalone:$MVN_VERSION
7472

7573
# Push all images and tags
7674
docker push ${docker_registry_org}/pulsar:latest
7775
docker push ${docker_registry_org}/pulsar-all:latest
7876
docker push ${docker_registry_org}/pulsar-grafana:latest
79-
docker push ${docker_registry_org}/pulsar-standalone:latest
8077
docker push ${docker_registry_org}/pulsar:$MVN_VERSION
8178
docker push ${docker_registry_org}/pulsar-all:$MVN_VERSION
8279
docker push ${docker_registry_org}/pulsar-grafana:$MVN_VERSION
83-
docker push ${docker_registry_org}/pulsar-standalone:$MVN_VERSION
8480

8581
echo "Finished pushing images to ${docker_registry_org}"

docker/pulsar-standalone/Dockerfile

-94
This file was deleted.

docker/pulsar-standalone/pom.xml

-100
This file was deleted.

0 commit comments

Comments
 (0)