mirror of
https://github.com/helm/helm.git
synced 2026-02-18 10:20:11 -05:00
This adds a few extra settings to the default .helmignore file. In doing this, I found a bug that some directory patterns are not evaluated correctly. Fixed that and added tests. Closes #989 Closes #1027
12 lines
354 B
Bash
Executable file
12 lines
354 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Pack the albatross chart into the mariner chart.
|
|
echo "Packing albatross into mariner"
|
|
tar -zcvf mariner/charts/albatross-0.1.0.tgz albatross
|
|
|
|
echo "Packing mariner into frobnitz"
|
|
tar -zcvf frobnitz/charts/mariner-4.3.2.tgz mariner
|
|
|
|
# Pack the frobnitz chart.
|
|
echo "Packing frobnitz"
|
|
tar --exclude=ignore/* -zcvf frobnitz-1.2.3.tgz frobnitz
|