mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2025-02-22 16:24:23 +08:00
Add elastic elasticsearch and kibana
This commit is contained in:
parent
3e44987ee5
commit
08a3e63d46
157
apps/elastic/8.12.0-single/docker-compose-template.yml
Normal file
157
apps/elastic/8.12.0-single/docker-compose-template.yml
Normal file
@ -0,0 +1,157 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
elastic:
|
||||
container_name: kibana-${CONTAINER_NAME}
|
||||
depends_on:
|
||||
es-single-es01:
|
||||
condition: service_healthy
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: ${CPUS}
|
||||
memory: ${MEMORY_LIMIT}
|
||||
environment:
|
||||
- SERVERNAME=kibana
|
||||
- ELASTICSEARCH_HOSTS=https://es-single-es01:9200
|
||||
- ELASTICSEARCH_USERNAME=kibana_system
|
||||
- ELASTICSEARCH_PASSWORD=${KIBANA_PASSWORD}
|
||||
- ELASTICSEARCH_SSL_CERTIFICATEAUTHORITIES=config/certs/ca/ca.crt
|
||||
healthcheck:
|
||||
interval: 10s
|
||||
retries: 120
|
||||
test:
|
||||
- CMD-SHELL
|
||||
- curl -s -I http://localhost:5601 | grep -q 'HTTP/1.1 302 Found'
|
||||
timeout: 10s
|
||||
image: docker.elastic.co/kibana/kibana:8.12.0
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-file: "3"
|
||||
max-size: 10m
|
||||
mem_limit: ${MEM_LIMIT}
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${HOST_IP}:${PANEL_APP_PORT_HTTP}:5601
|
||||
restart: always
|
||||
volumes:
|
||||
- ${ES_ROOT_PATH}/certs:/usr/share/kibana/config/certs
|
||||
- ${ES_ROOT_PATH}/kibana/data:/usr/share/kibana/data
|
||||
- ${ES_ROOT_PATH}/kibana/config/kibana.yml:/usr/share/kibana/config/kibana.yml
|
||||
es-single-es01:
|
||||
container_name: es-single-es01
|
||||
depends_on:
|
||||
es-single-init:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
- discovery.type=single-node
|
||||
- node.name=es-single-es01
|
||||
- ELASTIC_PASSWORD=${ELASTIC_PASSWORD}
|
||||
- bootstrap.memory_lock=true
|
||||
- xpack.security.enabled=${ES_XPACK_SECURITY_ENABLED}
|
||||
- xpack.security.http.ssl.enabled=${ES_XPACK_SECURITY_ENABLED}
|
||||
- xpack.security.http.ssl.key=certs/es-single-es01/es-single-es01.key
|
||||
- xpack.security.http.ssl.certificate=certs/es-single-es01/es-single-es01.crt
|
||||
- xpack.security.http.ssl.certificate_authorities=certs/ca/ca.crt
|
||||
- xpack.security.transport.ssl.enabled=${ES_XPACK_SECURITY_ENABLED}
|
||||
- xpack.security.transport.ssl.key=certs/es-single-es01/es-single-es01.key
|
||||
- xpack.security.transport.ssl.certificate=certs/es-single-es01/es-single-es01.crt
|
||||
- xpack.security.transport.ssl.certificate_authorities=certs/ca/ca.crt
|
||||
- xpack.security.transport.ssl.verification_mode=certificate
|
||||
- xpack.license.self_generated.type=basic
|
||||
- ES_JAVA_OPTS=-Xms${ES_JAVA_OPTS_XMS} -Xmx${ES_JAVA_OPTS_XMX}
|
||||
healthcheck:
|
||||
interval: 10s
|
||||
retries: 120
|
||||
test:
|
||||
- CMD-SHELL
|
||||
- curl -s --cacert config/certs/ca/ca.crt https://localhost:9200 | grep -q 'missing authentication credentials'
|
||||
timeout: 10s
|
||||
image: docker.elastic.co/elasticsearch/elasticsearch:8.12.0
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-file: "3"
|
||||
max-size: 10m
|
||||
mem_limit: ${MEM_LIMIT}
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTPS}:9200
|
||||
- ${ES_COMMUNICATION_PORT}:9300
|
||||
restart: always
|
||||
ulimits:
|
||||
memlock:
|
||||
hard: -1
|
||||
soft: -1
|
||||
nofile:
|
||||
hard: 65536
|
||||
soft: 65536
|
||||
volumes:
|
||||
- ${ES_ROOT_PATH}/certs:/usr/share/elasticsearch/config/certs
|
||||
- ${ES_ROOT_PATH}/es01/data:/usr/share/elasticsearch/data
|
||||
- ${ES_ROOT_PATH}/es01/logs:/usr/share/elasticsearch/logs
|
||||
- ${ES_ROOT_PATH}/es01/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
|
||||
- ${ES_ROOT_PATH}/es01/plugins:/usr/share/elasticsearch/plugins
|
||||
es-single-init:
|
||||
command: |
|
||||
bash -c '
|
||||
if [ x${ELASTIC_PASSWORD} == x ]; then
|
||||
echo "Set the ELASTIC_PASSWORD environment variable in the .env file";
|
||||
exit 1;
|
||||
elif [ x${KIBANA_PASSWORD} == x ]; then
|
||||
echo "Set the KIBANA_PASSWORD environment variable in the .env file";
|
||||
exit 1;
|
||||
fi;
|
||||
if [ ! -f config/certs/ca.zip ]; then
|
||||
echo "Creating CA";
|
||||
bin/elasticsearch-certutil ca --silent --pem -out config/certs/ca.zip;
|
||||
unzip config/certs/ca.zip -d config/certs;
|
||||
fi;
|
||||
if [ ! -f config/certs/certs.zip ]; then
|
||||
echo "Creating certs";
|
||||
echo -ne \
|
||||
"instances:\n"\
|
||||
" - name: es-single-es01\n"\
|
||||
" dns:\n"\
|
||||
" - es-single-es01\n"\
|
||||
" - localhost\n"\
|
||||
" ip:\n"\
|
||||
" - 127.0.0.1\n"\
|
||||
> config/certs/instances.yml;
|
||||
bin/elasticsearch-certutil cert --silent --pem -out config/certs/certs.zip --in config/certs/instances.yml --ca-cert config/certs/ca/ca.crt --ca-key config/certs/ca/ca.key;
|
||||
unzip config/certs/certs.zip -d config/certs;
|
||||
fi;
|
||||
echo "Setting file permissions"
|
||||
chown -R root:root config/certs;
|
||||
find . -type d -exec chmod 750 \{\} \;;
|
||||
find . -type f -exec chmod 640 \{\} \;;
|
||||
echo "Waiting for Elasticsearch availability";
|
||||
until curl -s --cacert config/certs/ca/ca.crt https://es-single-es01:9200 | grep -q "missing authentication credentials"; do sleep 30; done;
|
||||
echo "Setting kibana_system password";
|
||||
until curl -s -X POST --cacert config/certs/ca/ca.crt -u "elastic:${ELASTIC_PASSWORD}" -H "Content-Type: application/json" https://es-single-es01:9200/_security/user/kibana_system/_password -d "{\"password\":\"${KIBANA_PASSWORD}\"}" | grep -q "^{}"; do sleep 10; done;
|
||||
echo "All done!";
|
||||
'
|
||||
container_name: elastic-init
|
||||
healthcheck:
|
||||
interval: 1s
|
||||
retries: 120
|
||||
test:
|
||||
- CMD-SHELL
|
||||
- '[ -f config/certs/es-single-es01/es-single-es01.crt ]'
|
||||
timeout: 5s
|
||||
image: docker.elastic.co/elasticsearch/elasticsearch:8.12.0
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-file: "3"
|
||||
max-size: 10m
|
||||
networks:
|
||||
- 1panel-network
|
||||
user: "0"
|
||||
volumes:
|
||||
- ${ES_ROOT_PATH}/certs:/usr/share/elasticsearch/config/certs
|
||||
version: "2.2"
|
@ -5,18 +5,14 @@ networks:
|
||||
external: true
|
||||
|
||||
services:
|
||||
es-single-01:
|
||||
container_name: es-single-01
|
||||
restart: always
|
||||
es-single-init:
|
||||
container_name: elastic-init
|
||||
image: docker.elastic.co/elasticsearch/elasticsearch:8.12.0
|
||||
networks:
|
||||
- 1panel-network
|
||||
image: docker.elastic.co/elasticsearch/elasticsearch:8.12.0
|
||||
volumes:
|
||||
- ${ES_ROOT_PATH}/certs:/usr/share/elasticsearch/config/certs
|
||||
- ${ES_ROOT_PATH}/es01/data:/usr/share/elasticsearch/data
|
||||
- ${ES_ROOT_PATH}/es01/logs:/usr/share/elasticsearch/logs
|
||||
- ${ES_ROOT_PATH}/es01/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
|
||||
- ${ES_ROOT_PATH}/es01/plugins:/usr/share/elasticsearch/plugins
|
||||
user: "0"
|
||||
command: >
|
||||
bash -c '
|
||||
if [ x${ELASTIC_PASSWORD} == x ]; then
|
||||
@ -35,9 +31,9 @@ services:
|
||||
echo "Creating certs";
|
||||
echo -ne \
|
||||
"instances:\n"\
|
||||
" - name: es01\n"\
|
||||
" - name: es-single-es01\n"\
|
||||
" dns:\n"\
|
||||
" - es01\n"\
|
||||
" - es-single-es01\n"\
|
||||
" - localhost\n"\
|
||||
" ip:\n"\
|
||||
" - 127.0.0.1\n"\
|
||||
@ -47,24 +43,57 @@ services:
|
||||
fi;
|
||||
echo "Setting file permissions"
|
||||
chown -R root:root config/certs;
|
||||
exec /usr/local/bin/docker-entrypoint.sh elasticsearch
|
||||
find . -type d -exec chmod 750 \{\} \;;
|
||||
find . -type f -exec chmod 640 \{\} \;;
|
||||
echo "Waiting for Elasticsearch availability";
|
||||
until curl -s --cacert config/certs/ca/ca.crt https://es-single-es01:9200 | grep -q "missing authentication credentials"; do sleep 30; done;
|
||||
echo "Setting kibana_system password";
|
||||
until curl -s -X POST --cacert config/certs/ca/ca.crt -u "elastic:${ELASTIC_PASSWORD}" -H "Content-Type: application/json" https://es-single-es01:9200/_security/user/kibana_system/_password -d "{\"password\":\"${KIBANA_PASSWORD}\"}" | grep -q "^{}"; do sleep 10; done;
|
||||
echo "All done!";
|
||||
'
|
||||
healthcheck:
|
||||
test: [ "CMD-SHELL", "[ -f config/certs/es-single-es01/es-single-es01.crt ]" ]
|
||||
interval: 1s
|
||||
timeout: 5s
|
||||
retries: 120
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-file: "3"
|
||||
|
||||
|
||||
es-single-es01:
|
||||
depends_on:
|
||||
es-single-init:
|
||||
condition: service_healthy
|
||||
container_name: es-single-es01
|
||||
restart: always
|
||||
image: docker.elastic.co/elasticsearch/elasticsearch:8.12.0
|
||||
volumes:
|
||||
- ${ES_ROOT_PATH}/certs:/usr/share/elasticsearch/config/certs
|
||||
- ${ES_ROOT_PATH}/es01/data:/usr/share/elasticsearch/data
|
||||
- ${ES_ROOT_PATH}/es01/logs:/usr/share/elasticsearch/logs
|
||||
- ${ES_ROOT_PATH}/es01/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
|
||||
- ${ES_ROOT_PATH}/es01/plugins:/usr/share/elasticsearch/plugins
|
||||
ports:
|
||||
- ${ES_HOST}:9200
|
||||
- ${PANEL_APP_PORT_HTTPS}:9200
|
||||
- ${ES_COMMUNICATION_PORT}:9300
|
||||
networks:
|
||||
- 1panel-network
|
||||
environment:
|
||||
- discovery.type=single-node
|
||||
- node.name=es01
|
||||
- node.name=es-single-es01
|
||||
- ELASTIC_PASSWORD=${ELASTIC_PASSWORD}
|
||||
- bootstrap.memory_lock=true
|
||||
- xpack.security.enabled=${ES_XPACK_SECURITY_ENABLED}
|
||||
- xpack.security.http.ssl.enabled=${ES_XPACK_SECURITY_ENABLED}
|
||||
- xpack.security.http.ssl.key=certs/es01/es01.key
|
||||
- xpack.security.http.ssl.certificate=certs/es01/es01.crt
|
||||
- xpack.security.http.ssl.key=certs/es-single-es01/es-single-es01.key
|
||||
- xpack.security.http.ssl.certificate=certs/es-single-es01/es-single-es01.crt
|
||||
- xpack.security.http.ssl.certificate_authorities=certs/ca/ca.crt
|
||||
- xpack.security.transport.ssl.enabled=${ES_XPACK_SECURITY_ENABLED}
|
||||
- xpack.security.transport.ssl.key=certs/es01/es01.key
|
||||
- xpack.security.transport.ssl.certificate=certs/es01/es01.crt
|
||||
- xpack.security.transport.ssl.key=certs/es-single-es01/es-single-es01.key
|
||||
- xpack.security.transport.ssl.certificate=certs/es-single-es01/es-single-es01.crt
|
||||
- xpack.security.transport.ssl.certificate_authorities=certs/ca/ca.crt
|
||||
- xpack.security.transport.ssl.verification_mode=certificate
|
||||
- xpack.license.self_generated.type=basic
|
||||
@ -94,37 +123,22 @@ services:
|
||||
|
||||
es-single-kibana:
|
||||
depends_on:
|
||||
es-single-01:
|
||||
es-single-es01:
|
||||
condition: service_healthy
|
||||
container_name: kibana-${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
image: docker.elastic.co/kibana/kibana:8.12.0
|
||||
volumes:
|
||||
- ${ES_ROOT_PATH}/certs:/usr/share/kibana/config/certs
|
||||
- ${ES_ROOT_PATH}/kibana/data:/usr/share/kibana/data
|
||||
- ${ES_ROOT_PATH}/kibana/config/kibana.yml:/usr/share/kibana/config/kibana.yml
|
||||
command: >
|
||||
bash -c '
|
||||
if [ x${ELASTIC_PASSWORD} == x ]; then
|
||||
echo "Set the ELASTIC_PASSWORD environment variable in the .env file";
|
||||
exit 1;
|
||||
elif [ x${KIBANA_PASSWORD} == x ]; then
|
||||
echo "Set the KIBANA_PASSWORD environment variable in the .env file";
|
||||
exit 1;
|
||||
fi;
|
||||
echo "Waiting for Elasticsearch availability";
|
||||
echo "Setting kibana_system password";
|
||||
until curl -s -X POST --cacert config/certs/ca/ca.crt -u "elastic:${ELASTIC_PASSWORD}" -H "Content-Type: application/json" https://es01:9200/_security/user/kibana_system/_password -d "{\"password\":\"${KIBANA_PASSWORD}\"}" | grep -q "^{}"; do sleep 10; done;
|
||||
echo "All done!";
|
||||
exec /usr/local/bin/docker-entrypoint.sh kibana
|
||||
'
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:5601
|
||||
networks:
|
||||
- 1panel-network
|
||||
environment:
|
||||
- SERVERNAME=kibana
|
||||
- ELASTICSEARCH_HOSTS=https://es01:9200
|
||||
- ELASTICSEARCH_HOSTS=https://es-single-es01:9200
|
||||
- ELASTICSEARCH_USERNAME=kibana_system
|
||||
- ELASTICSEARCH_PASSWORD=${KIBANA_PASSWORD}
|
||||
- ELASTICSEARCH_SSL_CERTIFICATEAUTHORITIES=config/certs/ca/ca.crt
|
||||
|
@ -5,9 +5,6 @@ if [ -f .env ]; then
|
||||
# 导入 .env 文件中的变量
|
||||
source .env
|
||||
|
||||
# 替换 docker-compose.yml 中的网络变量
|
||||
sed -i "s/\${DOCKER_NET}/$CLUSTER_NETWORK/" docker-compose.yml
|
||||
|
||||
# 创建目录
|
||||
mkdir -p "$ES_ROOT_PATH"
|
||||
|
||||
@ -30,7 +27,7 @@ if [ -f .env ]; then
|
||||
cp elasticsearch.yml "$ES_ROOT_PATH/es01/config/elasticsearch.yml"
|
||||
|
||||
# 生成 kibana.yml 文件
|
||||
kibana_config="server.host: \"0.0.0.0\"\nserver.shutdownTimeout: \"5s\"\nelasticsearch.hosts: [ \"http://localhost:$PANEL_APP_PORT_HTTPS\" ]\nmonitoring.ui.container.elasticsearch.enabled: true"
|
||||
kibana_config="server.host: \"0.0.0.0\"\nserver.shutdownTimeout: \"5s\"\nelasticsearch.hosts: [ \"https://es01:9200\" ]\nmonitoring.ui.container.elasticsearch.enabled: true"
|
||||
echo -e "$kibana_config" > kibana.yml
|
||||
cp kibana.yml "$ES_ROOT_PATH/kibana/config/kibana.yml"
|
||||
|
||||
@ -40,15 +37,6 @@ if [ -f .env ]; then
|
||||
# 设置权限
|
||||
chmod -R 777 "$ES_ROOT_PATH"
|
||||
|
||||
# 创建网络
|
||||
docker network create "$CLUSTER_NETWORK"
|
||||
# 检查创建是否成功
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Network $CLUSTER_NETWORK created successfully."
|
||||
else
|
||||
echo "Failed to create network $CLUSTER_NETWORK."
|
||||
fi
|
||||
|
||||
echo "Directories and permissions set successfully."
|
||||
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user