We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0987de commit db4a41dCopy full SHA for db4a41d
deploy/tasks/buildah-oci-ta.yaml
@@ -588,6 +588,12 @@ spec:
588
done < <(find $ADDITIONAL_SECRET_TMP -maxdepth 1 -type f -exec basename {} \;)
589
fi
590
591
+ if [ -f "$ca_bundle" ]; then
592
+ cp -r --preserve=mode /mnt/trusted-ca /tmp/trusted-ca
593
+ VOLUME_MOUNTS+=(--volume /tmp/trusted-ca:/etc/pki/ca-trust/source/anchors)
594
+ echo "Adding the trusted-ca to the build"
595
+ fi
596
+
597
# Prevent ShellCheck from giving a warning because 'image' is defined and 'IMAGE' is not.
598
declare IMAGE
599
0 commit comments