mirror of https://github.com/helm/helm
This adds 'helm get hooks' and updates 'helm get' to return hook information.pull/939/head
parent
cd230ab10e
commit
1cd9f5d541
@ -0,0 +1,72 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2016 The Kubernetes Authors All rights reserved.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
|
||||||
|
"github.com/spf13/cobra"
|
||||||
|
|
||||||
|
"k8s.io/helm/pkg/helm"
|
||||||
|
)
|
||||||
|
|
||||||
|
const getHooksHelp = `
|
||||||
|
This command downloads hooks for a given release.
|
||||||
|
|
||||||
|
Hooks are formatted in YAML and separated by the YAML '---\n' separator.
|
||||||
|
`
|
||||||
|
|
||||||
|
type getHooksCmd struct {
|
||||||
|
release string
|
||||||
|
out io.Writer
|
||||||
|
client helm.Interface
|
||||||
|
}
|
||||||
|
|
||||||
|
func newGetHooksCmd(client helm.Interface, out io.Writer) *cobra.Command {
|
||||||
|
ghc := &getHooksCmd{
|
||||||
|
out: out,
|
||||||
|
client: client,
|
||||||
|
}
|
||||||
|
cmd := &cobra.Command{
|
||||||
|
Use: "hooks [flags] RELEASE_NAME",
|
||||||
|
Short: "download all hooks for a named release",
|
||||||
|
Long: getHooksHelp,
|
||||||
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
|
if len(args) == 0 {
|
||||||
|
return errReleaseRequired
|
||||||
|
}
|
||||||
|
ghc.release = args[0]
|
||||||
|
ghc.client = ensureHelmClient(ghc.client)
|
||||||
|
return ghc.run()
|
||||||
|
},
|
||||||
|
}
|
||||||
|
return cmd
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *getHooksCmd) run() error {
|
||||||
|
res, err := g.client.ReleaseContent(g.release)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintln(g.out, g.release)
|
||||||
|
return prettyError(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, hook := range res.Release.Hooks {
|
||||||
|
fmt.Fprintf(g.out, "---\n# %s\n%s", hook.Name, hook.Manifest)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
@ -0,0 +1,43 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2016 The Kubernetes Authors All rights reserved.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/spf13/cobra"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestGetHooks(t *testing.T) {
|
||||||
|
tests := []releaseCase{
|
||||||
|
{
|
||||||
|
name: "get hooks with release",
|
||||||
|
args: []string{"aeneas"},
|
||||||
|
expected: mockHookTemplate,
|
||||||
|
resp: releaseMock("aeneas"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "get hooks without args",
|
||||||
|
args: []string{},
|
||||||
|
err: true,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
runReleaseCases(t, tests, func(c *fakeReleaseClient, out io.Writer) *cobra.Command {
|
||||||
|
return newGetHooksCmd(c, out)
|
||||||
|
})
|
||||||
|
}
|
@ -0,0 +1,43 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2016 The Kubernetes Authors All rights reserved.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/spf13/cobra"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestGetManifest(t *testing.T) {
|
||||||
|
tests := []releaseCase{
|
||||||
|
{
|
||||||
|
name: "get manifest with release",
|
||||||
|
args: []string{"juno"},
|
||||||
|
expected: mockManifest,
|
||||||
|
resp: releaseMock("juno"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "get manifest without args",
|
||||||
|
args: []string{},
|
||||||
|
err: true,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
runReleaseCases(t, tests, func(c *fakeReleaseClient, out io.Writer) *cobra.Command {
|
||||||
|
return newGetManifestCmd(c, out)
|
||||||
|
})
|
||||||
|
}
|
Loading…
Reference in new issue