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
d4e7845e
Commit
d4e7845e
authored
Oct 06, 2016
by
Matt Butcher
Committed by
GitHub
Oct 06, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1287 from technosophos/fix/1192-remove-gopkg-yaml
fix(*): remove references to gopkg.in/yaml.v2
parents
bbd446e6
fd0303c8
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
glide.lock
glide.lock
+2
-2
glide.yaml
glide.yaml
+1
-1
template.go
pkg/lint/rules/template.go
+1
-1
index.go
pkg/repo/index.go
+4
-4
No files found.
glide.lock
View file @
d4e7845e
hash:
041486e116f9792e4533a4a67b191ab139d29ea4449d4b6eb6e2d96b620b3cac
hash:
59cc65f24ef42bcc96a5e5f660dd79cff89aa53040a561c47b629f1d55397424
updated: 2016-10-0
3T20:28:56.472755464
-06:00
updated: 2016-10-0
5T17:24:13.347058671
-06:00
imports:
imports:
- name: bitbucket.org/ww/goautoneg
- name: bitbucket.org/ww/goautoneg
version: 75cd24fc2f2c2a2088577d12123ddee5f54e0675
version: 75cd24fc2f2c2a2088577d12123ddee5f54e0675
...
...
glide.yaml
View file @
d4e7845e
...
@@ -9,7 +9,7 @@ import:
...
@@ -9,7 +9,7 @@ import:
version
:
367864438f1b1a3c7db4da06a2f55b144e6784e0
version
:
367864438f1b1a3c7db4da06a2f55b144e6784e0
-
package
:
github.com/Masterminds/sprig
-
package
:
github.com/Masterminds/sprig
version
:
^2.6
version
:
^2.6
-
package
:
g
opkg.in/yaml.v2
-
package
:
g
ithub.com/ghodss/yaml
-
package
:
github.com/Masterminds/semver
-
package
:
github.com/Masterminds/semver
version
:
1.1.0
version
:
1.1.0
-
package
:
github.com/technosophos/moniker
-
package
:
github.com/technosophos/moniker
...
...
pkg/lint/rules/template.go
View file @
d4e7845e
...
@@ -27,7 +27,7 @@ import (
...
@@ -27,7 +27,7 @@ import (
"text/template"
"text/template"
"github.com/Masterminds/sprig"
"github.com/Masterminds/sprig"
"g
opkg.in/yaml.v2
"
"g
ithub.com/ghodss/yaml
"
"k8s.io/helm/pkg/chartutil"
"k8s.io/helm/pkg/chartutil"
"k8s.io/helm/pkg/engine"
"k8s.io/helm/pkg/engine"
"k8s.io/helm/pkg/lint/support"
"k8s.io/helm/pkg/lint/support"
...
...
pkg/repo/index.go
View file @
d4e7845e
...
@@ -166,10 +166,10 @@ func (i IndexFile) WriteFile(dest string, mode os.FileMode) error {
...
@@ -166,10 +166,10 @@ func (i IndexFile) WriteFile(dest string, mode os.FileMode) error {
// ChartVersion represents a chart entry in the IndexFile
// ChartVersion represents a chart entry in the IndexFile
type
ChartVersion
struct
{
type
ChartVersion
struct
{
*
chart
.
Metadata
*
chart
.
Metadata
URLs
[]
string
`
yaml:"url"
json:"urls"`
URLs
[]
string
`json:"urls"`
Created
time
.
Time
`
yaml:"created,omitempty"
json:"created,omitempty"`
Created
time
.
Time
`json:"created,omitempty"`
Removed
bool
`
yaml:"removed,omitempty"
json:"removed,omitempty"`
Removed
bool
`json:"removed,omitempty"`
Digest
string
`
yaml:"digest,omitempty"
json:"digest,omitempty"`
Digest
string
`json:"digest,omitempty"`
}
}
// IndexDirectory reads a (flat) directory and generates an index.
// IndexDirectory reads a (flat) directory and generates an index.
...
...
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