mirror of
https://github.com/helm/helm.git
synced 2026-04-21 06:06:56 -04:00
chartutil was originally created to operate on protobufs which are no longer part of Helm. The util package makes more sense to be part of the chart package. This change is part of the HIP 20 to create v3 charts and explicitly call out v2 charts. The changes for this are in smaller bite size changes. Signed-off-by: Matt Farina <matt.farina@suse.com>
14 lines
493 B
Bash
Executable file
14 lines
493 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
|
|
tar -zcvf frobnitz_backslash/charts/mariner-4.3.2.tgz mariner
|
|
|
|
# Pack the frobnitz chart.
|
|
echo "Packing frobnitz"
|
|
tar --exclude=ignore/* -zcvf frobnitz-1.2.3.tgz frobnitz
|
|
tar --exclude=ignore/* -zcvf frobnitz_backslash-1.2.3.tgz frobnitz_backslash
|