Skip to content
Snippets Groups Projects
Commit 97d8b8cf authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

Merge !1023: pytests: fix tls session resumption tests

parents 8222a34b 32e7e6d4
No related branches found
No related tags found
1 merge request!1023pytests: fix tls session resumption tests
Pipeline #65908 passed
# Knot Resolver
[![Build Status](https://gitlab.nic.cz/knot/knot-resolver/badges/nightly/pipeline.svg?x)](https://gitlab.nic.cz/knot/knot-resolver/commits/nightly)
[![Coverage Status](https://gitlab.nic.cz/knot/knot-resolver/badges/nightly/coverage.svg?x)](https://knot.pages.labs.nic.cz/knot-resolver/)
[![Coverage Status](https://gitlab.nic.cz/knot/knot-resolver/badges/nightly/coverage.svg?x)](https://knot.pages.nic.cz/knot-resolver/)
[![Documentation Status](https://readthedocs.org/projects/knot-resolver/badge/?version=latest)](https://readthedocs.org/projects/knot-resolver/?badge=latest)
Knot Resolver is a caching full resolver implementation written in C and [LuaJIT][luajit], both a resolver library and a daemon. The core architecture is tiny and efficient, and provides a foundation and
......
......@@ -5,22 +5,22 @@ Docker Build
```
$ export KNOT_BRANCH=2.9
$ docker build --no-cache -t registry.labs.nic.cz/knot/knot-resolver/ci/debian-buster:knot-$KNOT_BRANCH --build-arg KNOT_BRANCH=$KNOT_BRANCH debian-buster
$ docker build --no-cache -t registry.nic.cz/knot/knot-resolver/ci/debian-buster:knot-$KNOT_BRANCH --build-arg KNOT_BRANCH=$KNOT_BRANCH debian-buster
$ docker login registry.labs.nic.cz
$ docker push registry.labs.nic.cz/knot/knot-resolver/ci/debian-buster:knot-$KNOT_BRANCH
$ docker login registry.nic.cz
$ docker push registry.nic.cz/knot/knot-resolver/ci/debian-buster:knot-$KNOT_BRANCH
```
* turris
```
$ docker build --no-cache -t registry.labs.nic.cz/knot/knot-resolver/ci/turris:omnia turris
$ docker push registry.labs.nic.cz/knot/knot-resolver/ci/turris:omnia
$ docker build --no-cache -t registry.nic.cz/knot/knot-resolver/ci/turris:omnia turris
$ docker push registry.nic.cz/knot/knot-resolver/ci/turris:omnia
```
Alternatively, provide `SDK_REPO` build arg (dir name from https://repo.turris.cz/ )
```
$ docker build --no-cache --build-arg SDK_REPO=omnia-nightly -t registry.labs.nic.cz/knot/knot-resolver/ci/turris:omnia-nightly turris
$ docker push registry.labs.nic.cz/knot/knot-resolver/ci/turris:omnia-nightly
$ docker build --no-cache --build-arg SDK_REPO=omnia-nightly -t registry.nic.cz/knot/knot-resolver/ci/turris:omnia-nightly turris
$ docker push registry.nic.cz/knot/knot-resolver/ci/turris:omnia-nightly
```
......@@ -21,6 +21,7 @@ net.ipv6=true
{% if kresd.tls_key_path and kresd.tls_cert_path %}
net.tls("{{ kresd.tls_cert_path }}", "{{ kresd.tls_key_path }}")
net.tls_sticket_secret('0123456789ABCDEF0123456789ABCDEF')
{% endif %}
hints['localhost.'] = '127.0.0.1'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment