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
51f5ae98
Unverified
Commit
51f5ae98
authored
Oct 03, 2019
by
Matthew Fisher
Committed by
GitHub
Oct 03, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6577 from bacongobbler/fixup-6334
upgrade Go to 1.13.1
parents
d8d56fe1
935ee90d
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
5 deletions
+6
-5
config.yml
.circleci/config.yml
+1
-1
Makefile
Makefile
+1
-1
capabilities_versions_generated.go
pkg/chartutil/capabilities_versions_generated.go
+1
-0
capabilities_default_versions_generate.go
...tutil/generator/capabilities_default_versions_generate.go
+1
-1
validate-license.sh
scripts/validate-license.sh
+2
-2
No files found.
.circleci/config.yml
View file @
51f5ae98
...
@@ -4,7 +4,7 @@ jobs:
...
@@ -4,7 +4,7 @@ jobs:
working_directory
:
/go/src/k8s.io/helm
working_directory
:
/go/src/k8s.io/helm
parallelism
:
3
parallelism
:
3
docker
:
docker
:
-
image
:
golang:1.1
2.5
-
image
:
golang:1.1
3.1
environment
:
environment
:
PROJECT_NAME
:
"
kubernetes-helm"
PROJECT_NAME
:
"
kubernetes-helm"
steps
:
steps
:
...
...
Makefile
View file @
51f5ae98
DOCKER_REGISTRY
?=
gcr.io
DOCKER_REGISTRY
?=
gcr.io
IMAGE_PREFIX
?=
kubernetes-helm
IMAGE_PREFIX
?=
kubernetes-helm
DEV_IMAGE
?=
golang:1.1
2.5
DEV_IMAGE
?=
golang:1.1
3.1
SHORT_NAME
?=
tiller
SHORT_NAME
?=
tiller
SHORT_NAME_RUDDER
?=
rudder
SHORT_NAME_RUDDER
?=
rudder
TARGETS
?=
darwin/amd64 linux/amd64 linux/386 linux/arm linux/arm64 linux/ppc64le linux/s390x windows/amd64
TARGETS
?=
darwin/amd64 linux/amd64 linux/386 linux/arm linux/arm64 linux/ppc64le linux/s390x windows/amd64
...
...
pkg/chartutil/capabilities_versions_generated.go
View file @
51f5ae98
...
@@ -13,6 +13,7 @@ See the License for the specific language governing permissions and
...
@@ -13,6 +13,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
// Code generated by capabilities_default_versions_generate.go; DO NOT EDIT.
// Code generated by capabilities_default_versions_generate.go; DO NOT EDIT.
package
chartutil
package
chartutil
func
defaultVersions
()
[]
string
{
func
defaultVersions
()
[]
string
{
...
...
pkg/chartutil/generator/capabilities_default_versions_generate.go
View file @
51f5ae98
...
@@ -60,7 +60,7 @@ func createOutput(v []string) []byte {
...
@@ -60,7 +60,7 @@ func createOutput(v []string) []byte {
var
out
bytes
.
Buffer
var
out
bytes
.
Buffer
fmt
.
Fprintln
(
&
out
,
licenseHeader
)
fmt
.
Fprintln
(
&
out
,
licenseHeader
)
fmt
.
Fprint
ln
(
&
out
,
"// Code generated by capabilities_default_versions_generate.go; DO NOT EDIT.
"
)
fmt
.
Fprint
(
&
out
,
"// Code generated by capabilities_default_versions_generate.go; DO NOT EDIT.
\n\n
"
)
fmt
.
Fprint
(
&
out
,
"package chartutil
\n\n
"
)
fmt
.
Fprint
(
&
out
,
"package chartutil
\n\n
"
)
fmt
.
Fprintln
(
&
out
,
"func defaultVersions() []string {"
)
fmt
.
Fprintln
(
&
out
,
"func defaultVersions() []string {"
)
fmt
.
Fprintln
(
&
out
,
"
\t
return []string{"
)
fmt
.
Fprintln
(
&
out
,
"
\t
return []string{"
)
...
...
scripts/validate-license.sh
View file @
51f5ae98
...
@@ -27,7 +27,7 @@ find_files() {
...
@@ -27,7 +27,7 @@ find_files() {
\(
-name
'*.go'
-o
-name
'*.sh'
-o
-name
'Dockerfile'
\)
\(
-name
'*.go'
-o
-name
'*.sh'
-o
-name
'Dockerfile'
\)
}
}
failed_license_header
=(
$(
find_files | xargs
grep
-L
'Licensed under the Apache License, Version 2.0 (the "License");'
)
)
failed_license_header
=(
$(
grep
-L
'Licensed under the Apache License, Version 2.0 (the "License");'
$(
find_files
))
)
||
:
if
((
${#
failed_license_header
[@]
}
>
0
))
;
then
if
((
${#
failed_license_header
[@]
}
>
0
))
;
then
echo
"Some source files are missing license headers."
echo
"Some source files are missing license headers."
for
f
in
"
${
failed_license_header
[@]
}
"
;
do
for
f
in
"
${
failed_license_header
[@]
}
"
;
do
...
@@ -36,7 +36,7 @@ if (( ${#failed_license_header[@]} > 0 )); then
...
@@ -36,7 +36,7 @@ if (( ${#failed_license_header[@]} > 0 )); then
exit
1
exit
1
fi
fi
failed_copyright_header
=(
$(
find_files | xargs
grep
-L
'Copyright The Helm Authors.'
)
)
failed_copyright_header
=(
$(
grep
-L
'Copyright The Helm Authors.'
$(
find_files
))
)
||
:
if
((
${#
failed_copyright_header
[@]
}
>
0
))
;
then
if
((
${#
failed_copyright_header
[@]
}
>
0
))
;
then
echo
"Some source files are missing the copyright header."
echo
"Some source files are missing the copyright header."
for
f
in
"
${
failed_copyright_header
[@]
}
"
;
do
for
f
in
"
${
failed_copyright_header
[@]
}
"
;
do
...
...
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