File tree 3 files changed +6
-2
lines changed 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 32
32
include :
33
33
- compose_version : ' 1.28.0'
34
34
compose_path : ' /usr/local/bin'
35
+ - compose_version : ' 1.29.2'
36
+ compose_path : ' /usr/local/bin'
35
37
- compose_version : ' v2.0.1'
36
38
compose_path : ' /usr/local/lib/docker/cli-plugins'
39
+ - compose_version : ' v2.2.3'
40
+ compose_path : ' /usr/local/lib/docker/cli-plugins'
37
41
steps :
38
42
- name : Checkout
39
43
uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ echo "${_group}Creating additional Kafka topics ..."
2
2
3
3
# NOTE: This step relies on `kafka` being available from the previous `snuba-api bootstrap` step
4
4
# XXX(BYK): We cannot use auto.create.topics as Confluence and Apache hates it now (and makes it very hard to enable)
5
- EXISTING_KAFKA_TOPICS=$( $dcr kafka kafka-topics --list --bootstrap-server kafka:9092 2> /dev/null)
5
+ EXISTING_KAFKA_TOPICS=$( $dcr --no-TTY kafka kafka-topics --list --bootstrap-server kafka:9092 2> /dev/null)
6
6
NEEDED_KAFKA_TOPICS=" ingest-attachments ingest-transactions ingest-events"
7
7
for topic in $NEEDED_KAFKA_TOPICS ; do
8
8
if ! echo " $EXISTING_KAFKA_TOPICS " | grep -wq $topic ; then
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ if [[ ! -f "$RELAY_CREDENTIALS_JSON" ]]; then
14
14
# creating an empty credentials file before relay runs.
15
15
16
16
$dcr \
17
- --no-deps \
17
+ --no-deps --no-TTY \
18
18
--volume " $( pwd) /$RELAY_CONFIG_YML :/tmp/config.yml" \
19
19
relay --config /tmp credentials generate --stdout \
20
20
> " $RELAY_CREDENTIALS_JSON "
You can’t perform that action at this time.
0 commit comments