Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
8494d133
Unverified
Commit
8494d133
authored
Apr 12, 2019
by
Martin Hickey
Committed by
GitHub
Apr 12, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5594 from SataQiu/fix-20190412
cleanup: using const block
parents
0664ef5c
43c43784
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
options.go
cmd/helm/installer/options.go
+6
-6
No files found.
cmd/helm/installer/options.go
View file @
8494d133
...
@@ -24,7 +24,12 @@ import (
...
@@ -24,7 +24,12 @@ import (
"k8s.io/helm/pkg/version"
"k8s.io/helm/pkg/version"
)
)
const
defaultImage
=
"gcr.io/kubernetes-helm/tiller"
const
(
defaultImage
=
"gcr.io/kubernetes-helm/tiller"
fmtJSON
OutputFormat
=
"json"
fmtYAML
OutputFormat
=
"yaml"
)
// Options control how to install Tiller into a cluster, upgrade, and uninstall Tiller from a cluster.
// Options control how to install Tiller into a cluster, upgrade, and uninstall Tiller from a cluster.
type
Options
struct
{
type
Options
struct
{
...
@@ -154,11 +159,6 @@ func (f *OutputFormat) Type() string {
...
@@ -154,11 +159,6 @@ func (f *OutputFormat) Type() string {
return
"OutputFormat"
return
"OutputFormat"
}
}
const
(
fmtJSON
OutputFormat
=
"json"
fmtYAML
OutputFormat
=
"yaml"
)
// Set validates and sets the value of the OutputFormat
// Set validates and sets the value of the OutputFormat
func
(
f
*
OutputFormat
)
Set
(
s
string
)
error
{
func
(
f
*
OutputFormat
)
Set
(
s
string
)
error
{
for
_
,
of
:=
range
[]
OutputFormat
{
fmtJSON
,
fmtYAML
}
{
for
_
,
of
:=
range
[]
OutputFormat
{
fmtJSON
,
fmtYAML
}
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment