Skip to content

Commit 2491a5a

Browse files
Fix the YAML format error in latest image (#452)
1 parent 54e529a commit 2491a5a

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/ci-pr-validation.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ jobs:
4747
timeout-minutes: 60
4848
strategy:
4949
matrix:
50-
os: [ubuntu-20.04, macos-12]
50+
# TODO: support build on macos-12
51+
os: [ubuntu-20.04]
5152

5253
steps:
5354
- name: checkout

tests/blue-green/docker-compose.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ services:
3333
environment:
3434
- PULSAR_MEM=-Xms128m -Xmx128m -XX:MaxDirectMemorySize=56m
3535
command: >
36-
bin/pulsar initialize-cluster-metadata \
37-
--cluster cluster-a \
38-
--zookeeper zookeeper:2181 \
39-
--configuration-store zookeeper:2181 \
40-
--web-service-url http://broker-1:8080 \
41-
--broker-service-url pulsar://broker-1:6650
36+
bin/pulsar initialize-cluster-metadata
37+
--cluster cluster-a
38+
--zookeeper zookeeper:2181
39+
--configuration-store zookeeper:2181
40+
--web-service-url http://broker-1:8080
41+
--broker-service-url pulsar://broker-1:6650
4242
depends_on:
4343
zookeeper:
4444
condition: service_healthy
@@ -149,4 +149,4 @@ services:
149149
condition: service_healthy
150150
bookie:
151151
condition: service_started
152-
command: bash -c "bin/apply-config-from-env.py conf/broker.conf && exec bin/pulsar broker"
152+
command: bash -c "bin/apply-config-from-env.py conf/broker.conf && exec bin/pulsar broker"

tests/extensibleLM/docker-compose.yml

+6-7
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,11 @@ services:
3333
environment:
3434
- PULSAR_MEM=-Xms128m -Xmx128m -XX:MaxDirectMemorySize=56m
3535
command: >
36-
bin/pulsar initialize-cluster-metadata \
37-
--cluster cluster-a \
38-
--zookeeper zookeeper:2181 \
39-
--configuration-store zookeeper:2181 \
40-
--web-service-url http://broker-1:8080 \
41-
--broker-service-url pulsar://broker-1:6650
36+
bin/pulsar initialize-cluster-metadata --cluster cluster-a
37+
--zookeeper zookeeper:2181
38+
--configuration-store zookeeper:2181
39+
--web-service-url http://broker-1:8080
40+
--broker-service-url pulsar://broker-1:6650
4241
depends_on:
4342
zookeeper:
4443
condition: service_healthy
@@ -151,4 +150,4 @@ services:
151150
condition: service_healthy
152151
bookie:
153152
condition: service_started
154-
command: bash -c "bin/apply-config-from-env.py conf/broker.conf && exec bin/pulsar broker"
153+
command: bash -c "bin/apply-config-from-env.py conf/broker.conf && exec bin/pulsar broker"

0 commit comments

Comments
 (0)