[bitnami/harbor-adapter-trivy] Release 2.8.2-debian-11-r5 (#39248)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2023-06-29 03:39:08 +02:00
committed by GitHub
parent 1bd97289e9
commit 2ae2ea9039
22 changed files with 63 additions and 7 deletions

View File

@@ -6,10 +6,10 @@ FROM docker.io/bitnami/minideb:bullseye
ARG TARGETARCH ARG TARGETARCH
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \ LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
org.opencontainers.image.created="2023-06-26T00:55:09Z" \ org.opencontainers.image.created="2023-06-29T01:21:29Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \ org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \ org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="2.8.2-debian-11-r4" \ org.opencontainers.image.ref.name="2.8.2-debian-11-r5" \
org.opencontainers.image.title="harbor-adapter-trivy" \ org.opencontainers.image.title="harbor-adapter-trivy" \
org.opencontainers.image.vendor="VMware, Inc." \ org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="2.8.2" org.opencontainers.image.version="2.8.2"

View File

@@ -1,3 +1,6 @@
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
version: '2' version: '2'
services: services:
harbor-adapter-trivy: harbor-adapter-trivy:

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# #
# Bitnami custom library # Bitnami custom library

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# #
# Library for managing files # Library for managing files

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# #
# Library for file system actions # Library for file system actions

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# #
# Library to use for scripts expected to be used as Kubernetes lifecycle hooks # Library to use for scripts expected to be used as Kubernetes lifecycle hooks

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# #
# Library for logging functions # Library for logging functions

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# #
# Library for network functions # Library for network functions

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# #
# Library for operating system actions # Library for operating system actions

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# #
# Bitnami persistence library # Bitnami persistence library
# Used for bringing persistence capabilities to applications that don't have clear separation of data and logic # Used for bringing persistence capabilities to applications that don't have clear separation of data and logic

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# #
# Library for managing services # Library for managing services
@@ -104,8 +106,6 @@ generate_cron_conf() {
local schedule="* * * * *" local schedule="* * * * *"
local clean="true" local clean="true"
local clean="true"
# Parse optional CLI flags # Parse optional CLI flags
shift 2 shift 2
while [[ "$#" -gt 0 ]]; do while [[ "$#" -gt 0 ]]; do
@@ -131,7 +131,12 @@ generate_cron_conf() {
mkdir -p /etc/cron.d mkdir -p /etc/cron.d
if "$clean"; then if "$clean"; then
echo "${schedule} ${run_as} ${cmd}" > /etc/cron.d/"$service_name" cat > "/etc/cron.d/${service_name}" <<EOF
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
${schedule} ${run_as} ${cmd}
EOF
else else
echo "${schedule} ${run_as} ${cmd}" >> /etc/cron.d/"$service_name" echo "${schedule} ${run_as} ${cmd}" >> /etc/cron.d/"$service_name"
fi fi
@@ -187,7 +192,10 @@ generate_monit_conf() {
is_boolean_yes "$disabled" && conf_suffix=".disabled" is_boolean_yes "$disabled" && conf_suffix=".disabled"
mkdir -p "$monit_conf_dir" mkdir -p "$monit_conf_dir"
cat >"${monit_conf_dir}/${service_name}.conf${conf_suffix:-}" <<EOF cat > "${monit_conf_dir}/${service_name}.conf${conf_suffix:-}" <<EOF
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
check process ${service_name} check process ${service_name}
with pidfile "${pid_file}" with pidfile "${pid_file}"
start program = "${start_command}" with timeout 90 seconds start program = "${start_command}" with timeout 90 seconds
@@ -246,7 +254,10 @@ generate_logrotate_conf() {
done done
mkdir -p "$logrotate_conf_dir" mkdir -p "$logrotate_conf_dir"
cat <<EOF | sed '/^\s*$/d' >"${logrotate_conf_dir}/${service_name}" cat <<EOF | sed '/^\s*$/d' > "${logrotate_conf_dir}/${service_name}"
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
${log_path} { ${log_path} {
${period} ${period}
rotate ${rotations} rotate ${rotations}
@@ -391,6 +402,9 @@ generate_systemd_conf() {
fi fi
# Generate the Systemd unit # Generate the Systemd unit
cat > "$service_file" <<EOF cat > "$service_file" <<EOF
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
[Unit] [Unit]
Description=Bitnami service for ${name} Description=Bitnami service for ${name}
# Starting/stopping the main bitnami service should cause the same effect for this service # Starting/stopping the main bitnami service should cause the same effect for this service

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# #
# Validation functions library # Validation functions library

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# #
# Library for managing versions strings # Library for managing versions strings

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# #
# Bitnami web server handler library # Bitnami web server handler library

View File

@@ -1,4 +1,6 @@
#!/bin/sh #!/bin/sh
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
set -eu set -eu
n=0 n=0

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# #
# Environment configuration for harbor-adapter-trivy # Environment configuration for harbor-adapter-trivy

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# shellcheck disable=SC1091 # shellcheck disable=SC1091

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# shellcheck disable=SC1091 # shellcheck disable=SC1091

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# shellcheck disable=SC1091 # shellcheck disable=SC1091

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# shellcheck disable=SC1090,SC1091 # shellcheck disable=SC1090,SC1091

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
# #
# Bitnami Harbor library # Bitnami Harbor library

View File

@@ -1,3 +1,6 @@
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
version: '2' version: '2'
services: services:
harbor-adapter-trivy: harbor-adapter-trivy: