2.0.1-debian-10-r18 release

This commit is contained in:
Bitnami Bot
2020-02-25 19:59:23 +00:00
parent dc9c473f11
commit 70a99b84b4
3 changed files with 61 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ RUN /build/install-gosu.sh
COPY rootfs /
RUN /postunpack.sh
ENV BITNAMI_APP_NAME="kong" \
BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r17" \
BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r18" \
PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH"
EXPOSE 8000 8001 8443 8444

View File

@@ -2,6 +2,9 @@
#
# Library for network functions
# Load Generic Libraries
. /liblog.sh
# Functions
########################
@@ -42,3 +45,59 @@ is_hostname_resolved() {
false
fi
}
########################
# Parse URL
# Globals:
# None
# Arguments:
# $1 - uri - String
# $2 - component to obtain. Valid options (scheme, authority, userinfo, host, port, path, query or fragment) - String
# Returns:
# String
parse_uri() {
local uri="${1:?uri is missing}"
local component="${2:?component is missing}"
# Solution based on https://tools.ietf.org/html/rfc3986#appendix-B with
# additional sub-expressions to split authority into userinfo, host and port
# Credits to Patryk Obara (see https://stackoverflow.com/a/45977232/6694969)
local -r URI_REGEX='^(([^:/?#]+):)?(//((([^:/?#]+)@)?([^:/?#]+)(:([0-9]+))?))?(/([^?#]*))(\?([^#]*))?(#(.*))?'
# || | ||| | | | | | | | | |
# |2 scheme | ||6 userinfo 7 host | 9 port | 11 rpath | 13 query | 15 fragment
# 1 scheme: | |5 userinfo@ 8 :... 10 path 12 ?... 14 #...
# | 4 authority
# 3 //...
local index=0
case "$component" in
scheme)
index=2
;;
authority)
index=4
;;
userinfo)
index=6
;;
host)
index=7
;;
port)
index=9
;;
path)
index=10
;;
query)
index=13
;;
fragment)
index=14
;;
*)
stderr_print "unrecognized component $1"
return 1
;;
esac
[[ "$uri" =~ $URI_REGEX ]] && echo "${BASH_REMATCH[${index}]}"
}

View File

@@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
* [`2-ol-7`, `2.0.1-ol-7-r17` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r17/2/ol-7/Dockerfile)
* [`2-debian-10`, `2.0.1-debian-10-r17`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r17/2/debian-10/Dockerfile)
* [`2-debian-10`, `2.0.1-debian-10-r18`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r18/2/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong).