2.3.1-debian-10-r0 release
This commit is contained in:
parent
769003b822
commit
2c4d4f8fd4
|
|
@ -10,7 +10,7 @@ COPY prebuildfs /
|
|||
RUN install_packages acl ca-certificates curl gzip libc6 libgeoip1 libpcre3 libssl1.1 procps tar zlib1g
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "nginx" "1.18.0-8" --checksum 347c97dbe4993bf2f1eddf1d87e53e32a9f311c2fd78a0661e4e74c2006b7926
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "render-template" "1.0.0-3" --checksum 8179ad1371c9a7d897fe3b1bf53bbe763f94edafef19acad2498dd48b3674efe
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kubeapps" "2.3.0-0" --checksum 78442082fa8bc10e249de8cb0e12ba1eb35a7719df112689505ad4be2472685e
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kubeapps" "2.3.1-0" --checksum ff6a56c2e0e847498a57abfd372d4b2471443a12b4ed3e72d3b40fb2fa6a839e
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50
|
||||
RUN ln -sf /dev/stdout /opt/bitnami/nginx/logs/access.log
|
||||
RUN ln -sf /dev/stderr /opt/bitnami/nginx/logs/error.log
|
||||
|
|
@ -22,7 +22,7 @@ RUN rm -rf /app && \
|
|||
RUN chmod -R g+rwX /opt/bitnami/nginx/conf
|
||||
RUN /opt/bitnami/scripts/nginx/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="kubeapps-dashboard" \
|
||||
BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r9" \
|
||||
BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r0" \
|
||||
NGINX_ENABLE_CUSTOM_PORTS="no" \
|
||||
NGINX_HTTPS_PORT_NUMBER="" \
|
||||
NGINX_HTTP_PORT_NUMBER="" \
|
||||
|
|
|
|||
|
|
@ -8,10 +8,10 @@
|
|||
},
|
||||
"kubeapps": {
|
||||
"arch": "amd64",
|
||||
"digest": "78442082fa8bc10e249de8cb0e12ba1eb35a7719df112689505ad4be2472685e",
|
||||
"digest": "ff6a56c2e0e847498a57abfd372d4b2471443a12b4ed3e72d3b40fb2fa6a839e",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "2.3.0-0"
|
||||
"version": "2.3.1-0"
|
||||
},
|
||||
"nginx": {
|
||||
"arch": "amd64",
|
||||
|
|
|
|||
|
|
@ -106,9 +106,9 @@ is_file_writable() {
|
|||
relativize() {
|
||||
local -r path="${1:?missing path}"
|
||||
local -r base="${2:?missing base}"
|
||||
pushd "$base" >/dev/null
|
||||
pushd "$base" >/dev/null || exit
|
||||
realpath -q --no-symlinks --relative-base="$base" "$path" | sed -e 's|^/$|.|' -e 's|^/||'
|
||||
popd >/dev/null
|
||||
popd >/dev/null || exit
|
||||
}
|
||||
|
||||
########################
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ persist_app() {
|
|||
warn "No files are configured to be persisted"
|
||||
return
|
||||
fi
|
||||
pushd "$install_dir" >/dev/null
|
||||
pushd "$install_dir" >/dev/null || exit
|
||||
local file_to_persist_relative file_to_persist_destination file_to_persist_destination_folder
|
||||
local -r tmp_file="/tmp/perms.acl"
|
||||
for file_to_persist in "${files_to_persist[@]}"; do
|
||||
|
|
@ -53,16 +53,16 @@ persist_app() {
|
|||
ensure_dir_exists "$file_to_persist_destination_folder"
|
||||
cp -Lr --preserve=links "$file_to_persist_relative" "$file_to_persist_destination_folder"
|
||||
# Restore permissions
|
||||
pushd "$persist_dir" >/dev/null
|
||||
pushd "$persist_dir" >/dev/null || exit
|
||||
if am_i_root; then
|
||||
setfacl --restore="$tmp_file"
|
||||
else
|
||||
# When running as non-root, don't change ownership
|
||||
setfacl --restore=<(grep -E -v '^# (owner|group):' "$tmp_file")
|
||||
fi
|
||||
popd >/dev/null
|
||||
popd >/dev/null || exit
|
||||
done
|
||||
popd >/dev/null
|
||||
popd >/dev/null || exit
|
||||
rm -f "$tmp_file"
|
||||
# Install the persisted files into the installation directory, via symlinks
|
||||
restore_persisted_app "$@"
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ Non-root container images add an extra layer of security and are generally recom
|
|||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kubeapps-dashboard/blob/2.3.0-debian-10-r9/2/debian-10/Dockerfile)
|
||||
* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kubeapps-dashboard/blob/2.3.1-debian-10-r0/2/debian-10/Dockerfile)
|
||||
|
||||
# Configuration
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue