Skip to content

Commit 424adeb

Browse files
authored
Merge pull request #1 from qvantel/maintenance-update
Updated dependencies
2 parents a50dbb0 + 5d21ebd commit 424adeb

31 files changed

+483
-450
lines changed

.dockerignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ __pycache__/
33
kafkaexp
44
.dockerignore
55
.gitignore
6-
Jenkinsfile
76
*.md
87
.git
98
.idea

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
FROM python:3.9.1-alpine3.12
1+
FROM python:3.9.2-alpine3.13
22

33
RUN mkdir -p /opt/docker
44

55
ADD requirements.txt /opt/docker
66

77
WORKDIR /opt/docker
88

9-
RUN apk add --no-cache gcc musl-dev libffi-dev make && \
9+
RUN apk add --no-cache gcc g++ musl-dev libffi-dev make && \
1010
pip install -r requirements.txt && \
11-
apk --purge del gcc musl-dev libffi-dev make
11+
apk --purge del gcc g++ musl-dev libffi-dev make
1212

1313
ADD . /opt/docker
1414

15-
ENV VERSION=0.9.2
15+
ENV VERSION=0.9.3
1616

1717
EXPOSE 5000
1818

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020, Qvantel
1+
Copyright (c) 2018-2021, Qvantel
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Kafka Explorer
22

3-
[![Build status](https://img.shields.io/docker/build/qvantel/kafka-explorer.svg)](https://hub.docker.com/r/qvantel/kafka-explorer/builds)
3+
[![Build status](https://img.shields.io/docker/cloud/build/qvantel/kafka-explorer.svg)](https://hub.docker.com/r/qvantel/kafka-explorer/builds)
44
[![Docker pulls](https://img.shields.io/docker/pulls/qvantel/kafka-explorer.svg)](https://hub.docker.com/r/qvantel/kafka-explorer)
5+
[![Release](https://img.shields.io/github/v/release/qvantel/kafka-explorer.svg)](https://github.com/qvantel/kafka-explorer/releases/latest)
56

67
Welcome to the Kafka Explorer repo! This tool is a web app for searching Kafka topics. It's been tested with Kafka
78
0.10.x, 1.1.x and 2.1.x but should have no problems with anything from 0.11.0.0 to 2.x and
@@ -17,7 +18,7 @@ For a simple deployment, the following command can be used (filling in the broke
1718
docker run -d -m 256m --log-driver json-file --log-opt max-size="1m" \
1819
-p 5000:5000 \
1920
-e "KAFKA_BOOTSTRAP_BROKERS=<list of bootstrap brokers>" \
20-
--name kafka-explorer qvantel/kafka-explorer:0.9.2
21+
--name kafka-explorer qvantel/kafka-explorer:0.9.3
2122
```
2223

2324
Enabling one-way auth TLS (without server validation):
@@ -29,7 +30,7 @@ docker run -d -m 256m --log-driver json-file --log-opt max-size="1m" \
2930
-e "SECURITY_PROTOCOL=SSL" \
3031
-e "SSL_CHECK_HOSTNAME=false" \
3132
-e "SSL_CIPHERS=<list of ssl ciphers>" \
32-
--name kafka-explorer qvantel/kafka-explorer:0.9.2
33+
--name kafka-explorer qvantel/kafka-explorer:0.9.3
3334
```
3435

3536
Enabling two-way auth TLS:
@@ -46,7 +47,7 @@ docker run -d -m 256m --log-driver json-file --log-opt max-size="1m" \
4647
-e "SSL_CAFILE=<container path to pem ca>" \
4748
-e "SSL_CERTFILE=<container path to pem cert>" \
4849
-e "SSL_KEYFILE=<container path to client key>" \
49-
--name kafka-explorer qvantel/kafka-explorer:0.9.2
50+
--name kafka-explorer qvantel/kafka-explorer:0.9.3
5051
```
5152

5253
The following environment variables are available:

app/static/lib/FileSaver.min.js

Lines changed: 0 additions & 2 deletions
This file was deleted.

app/static/lib/angular-animate_1.7.8.min.js renamed to app/static/lib/angular-animate_1.8.2.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/static/lib/angular-aria_1.7.8.min.js renamed to app/static/lib/angular-aria_1.8.2.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/static/lib/angular-material-datetimepicker.min.js

Lines changed: 0 additions & 2 deletions
This file was deleted.

app/static/lib/angular-material-datetimepicker_1.19.7.min.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/static/lib/angular-material_1.1.20.min.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

app/static/lib/angular-material_1.2.2.min.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/static/lib/angular-messages_1.7.8.min.js renamed to app/static/lib/angular-messages_1.8.2.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)