UNCLASSIFIED

Commit 822c3ffb authored by Austin Denton's avatar Austin Denton
Browse files

Update to r55

parent c2d75420
Pipeline #214831 passed with stages
in 29 minutes and 18 seconds
...@@ -2,7 +2,7 @@ ARG BASE_REGISTRY=registry1.dsop.io ...@@ -2,7 +2,7 @@ ARG BASE_REGISTRY=registry1.dsop.io
ARG BASE_IMAGE=ironbank/redhat/ubi/ubi8 ARG BASE_IMAGE=ironbank/redhat/ubi/ubi8
ARG BASE_TAG=8.3 ARG BASE_TAG=8.3
FROM bitnami/airflow-scheduler:2.0.1-debian-10-r53 as base FROM bitnami/airflow-scheduler:2.0.1-debian-10-r55 as base
FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
ARG BITNAMI_HOME=/opt/bitnami ARG BITNAMI_HOME=/opt/bitnami
ARG BITNAMI_DIR=/bitnami ARG BITNAMI_DIR=/bitnami
......
...@@ -36,8 +36,8 @@ labels: ...@@ -36,8 +36,8 @@ labels:
# List of resources to make available to the offline build context # List of resources to make available to the offline build context
resources: resources:
- tag: bitnami/airflow-scheduler:2.0.1-debian-10-r53 - tag: bitnami/airflow-scheduler:2.0.1-debian-10-r55
url: docker://docker.io/bitnami/airflow-scheduler@sha256:6bc874b99ebbc514606f3929bd34bdb438ab0b66ace5c9745464d5aa8346ad0c url: docker://docker.io/bitnami/airflow-scheduler@sha256:b9e5a2196d9f303bdb3d674a703fc106d37beeb0eb7d5b541deaf27c7b3428e6
- filename: thrift-0.14.1.tar.gz - filename: thrift-0.14.1.tar.gz
url: https://mirror.jframeworks.com/apache/thrift/0.14.1/thrift-0.14.1.tar.gz url: https://mirror.jframeworks.com/apache/thrift/0.14.1/thrift-0.14.1.tar.gz
validation: validation:
......
...@@ -106,5 +106,7 @@ indent() { ...@@ -106,5 +106,7 @@ indent() {
for ((i = 0; i < num; i++)); do for ((i = 0; i < num; i++)); do
indent_unit="${indent_unit}${char}" indent_unit="${indent_unit}${char}"
done done
echo "${string//^/${indent_unit}}" # shellcheck disable=SC2001
# Complex regex, see https://github.com/koalaman/shellcheck/wiki/SC2001#exceptions
echo "$string" | sed "s/^/${indent_unit}/"
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment