Skip to content

Commit

Permalink
Add support for symlinks, useful for kribbelnetes secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
erikmagkekse committed Dec 5, 2024
1 parent 0db9406 commit 773a29b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ else

echo "Scanning for files matching: $ZITI_IDENTITIES"

files=$(find "$dir" -maxdepth 1 -name "$pattern" -type f 2>/dev/null | tr '\n' ',' | sed 's/,$//')
files=$(find "$dir" -maxdepth 1 -name "$pattern" -type f,l 2>/dev/null | tr '\n' ',' | sed 's/,$//')

if [[ -n "$files" ]]; then
export ZITI_IDENTITIES="$files"
Expand Down

0 comments on commit 773a29b

Please sign in to comment.