...

Text file src/helm.sh/helm/v3/pkg/chart/loader/testdata/genfrob.sh

Documentation: helm.sh/helm/v3/pkg/chart/loader/testdata

     1#!/bin/sh
     2
     3# Pack the albatross chart into the mariner chart.
     4echo "Packing albatross into mariner"
     5tar -zcvf mariner/charts/albatross-0.1.0.tgz albatross
     6
     7echo "Packing mariner into frobnitz"
     8tar -zcvf frobnitz/charts/mariner-4.3.2.tgz mariner
     9tar -zcvf frobnitz_backslash/charts/mariner-4.3.2.tgz mariner
    10
    11# Pack the frobnitz chart.
    12echo "Packing frobnitz"
    13tar --exclude=ignore/* -zcvf frobnitz-1.2.3.tgz frobnitz
    14tar --exclude=ignore/* -zcvf frobnitz_backslash-1.2.3.tgz frobnitz_backslash

View as plain text