mirror of
https://github.com/helm/helm.git
synced 2026-02-20 16:35:55 -05:00
This flattens the getter package tree, adds tests, and changes a little bit of the terminology to follow Go idioms. This also makes much of the getter API private to begin with. This will give us more flexibility in the future.
15 lines
350 B
YAML
15 lines
350 B
YAML
name: "testgetter"
|
|
version: "0.1.0"
|
|
usage: "Fetch a package from a test:// source"
|
|
description: |-
|
|
Print the environment that the plugin was given, then exit.
|
|
|
|
This registers the test:// protocol.
|
|
|
|
command: "$HELM_PLUGIN_DIR/get.sh"
|
|
ignoreFlags: true
|
|
downloaders:
|
|
#- command: "$HELM_PLUGIN_DIR/get.sh"
|
|
- command: "echo"
|
|
protocols:
|
|
- "test"
|