Replace kssenii/nginx-test:1.1 by clickhouse/nginx-dav

This commit is contained in:
Mikhail f. Shiryaev 2023-07-05 15:36:27 +02:00
parent 8c0113e02b
commit c6e9f621f1
8 changed files with 47 additions and 7 deletions

View File

@ -161,5 +161,9 @@
"docker/test/sqllogic": { "docker/test/sqllogic": {
"name": "clickhouse/sqllogic-test", "name": "clickhouse/sqllogic-test",
"dependent": [] "dependent": []
},
"docker/test/integration/nginx_dav": {
"name": "clickhouse/nginx-dav",
"dependent": []
} }
} }

View File

@ -0,0 +1,6 @@
FROM nginx:alpine-slim
COPY default.conf /etc/nginx/conf.d/
RUN mkdir /usr/share/nginx/files/ \
&& chown nginx: /usr/share/nginx/files/ -R

View File

@ -0,0 +1,25 @@
server {
listen 80;
#root /usr/share/nginx/test.com;
index index.html index.htm;
server_name test.com localhost;
location / {
expires max;
root /usr/share/nginx/files;
client_max_body_size 20m;
client_body_temp_path /usr/share/nginx/tmp;
dav_methods PUT; # Allowed methods, only PUT is necessary
create_full_put_path on; # nginx automatically creates nested directories
dav_access user:rw group:r all:r; # access permissions for files
limit_except GET {
allow all;
}
}
error_page 405 =200 $uri;
}

View File

@ -5,7 +5,7 @@ services:
# Files will be put into /usr/share/nginx/files. # Files will be put into /usr/share/nginx/files.
nginx: nginx:
image: kssenii/nginx-test:1.1 image: clickhouse/nginx-dav:${DOCKER_NGINX_DAV_TAG:-latest}
restart: always restart: always
ports: ports:
- 80:80 - 80:80

View File

@ -73,6 +73,7 @@ export DOCKER_MYSQL_PHP_CLIENT_TAG=${DOCKER_MYSQL_PHP_CLIENT_TAG:=latest}
export DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=${DOCKER_POSTGRESQL_JAVA_CLIENT_TAG:=latest} export DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=${DOCKER_POSTGRESQL_JAVA_CLIENT_TAG:=latest}
export DOCKER_KERBEROS_KDC_TAG=${DOCKER_KERBEROS_KDC_TAG:=latest} export DOCKER_KERBEROS_KDC_TAG=${DOCKER_KERBEROS_KDC_TAG:=latest}
export DOCKER_KERBERIZED_HADOOP_TAG=${DOCKER_KERBERIZED_HADOOP_TAG:=latest} export DOCKER_KERBERIZED_HADOOP_TAG=${DOCKER_KERBERIZED_HADOOP_TAG:=latest}
export DOCKER_NGINX_DAV_TAG=${DOCKER_NGINX_DAV_TAG:=latest}
cd /ClickHouse/tests/integration cd /ClickHouse/tests/integration
exec "$@" exec "$@"

View File

@ -37,19 +37,20 @@ from upload_result_helper import upload_results
# When update, update # When update, update
# integration/ci-runner.py:ClickhouseIntegrationTestsRunner.get_images_names too # tests/integration/ci-runner.py:ClickhouseIntegrationTestsRunner.get_images_names too
IMAGES = [ IMAGES = [
"clickhouse/dotnet-client",
"clickhouse/integration-helper",
"clickhouse/integration-test",
"clickhouse/integration-tests-runner", "clickhouse/integration-tests-runner",
"clickhouse/kerberized-hadoop",
"clickhouse/kerberos-kdc",
"clickhouse/mysql-golang-client", "clickhouse/mysql-golang-client",
"clickhouse/mysql-java-client", "clickhouse/mysql-java-client",
"clickhouse/mysql-js-client", "clickhouse/mysql-js-client",
"clickhouse/mysql-php-client", "clickhouse/mysql-php-client",
"clickhouse/nginx-dav",
"clickhouse/postgresql-java-client", "clickhouse/postgresql-java-client",
"clickhouse/integration-test",
"clickhouse/kerberos-kdc",
"clickhouse/kerberized-hadoop",
"clickhouse/integration-helper",
"clickhouse/dotnet-client",
] ]

View File

@ -313,6 +313,7 @@ class ClickhouseIntegrationTestsRunner:
"clickhouse/mysql-java-client", "clickhouse/mysql-java-client",
"clickhouse/mysql-js-client", "clickhouse/mysql-js-client",
"clickhouse/mysql-php-client", "clickhouse/mysql-php-client",
"clickhouse/nginx-dav",
"clickhouse/postgresql-java-client", "clickhouse/postgresql-java-client",
] ]

View File

@ -351,6 +351,8 @@ if __name__ == "__main__":
env_tags += "-e {}={} ".format("DOCKER_KERBERIZED_HADOOP_TAG", tag) env_tags += "-e {}={} ".format("DOCKER_KERBERIZED_HADOOP_TAG", tag)
elif image == "clickhouse/kerberos-kdc": elif image == "clickhouse/kerberos-kdc":
env_tags += "-e {}={} ".format("DOCKER_KERBEROS_KDC_TAG", tag) env_tags += "-e {}={} ".format("DOCKER_KERBEROS_KDC_TAG", tag)
elif image == "clickhouse/nginx-dav":
env_tags += "-e {}={} ".format("DOCKER_NGINX_DAV_TAG", tag)
else: else:
logging.info("Unknown image %s" % (image)) logging.info("Unknown image %s" % (image))