Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
1105 Внедрение механизмов обеспечения безопасности цепочки поставки программных проектов
Legacy
scanned-projects
helm
Commits
73b28bab
Unverified
Commit
73b28bab
authored
4 years ago
by
Matt Butcher
Browse files
Options
Download
Patches
Plain Diff
fix formatting error (#8758)
Signed-off-by:
Matt Butcher
<
matt.butcher@microsoft.com
>
parent
077ffec4
release-2.16
v2.16.12
v2.16.11
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pkg/helm/fake.go
+2
-1
pkg/helm/fake.go
with
2 additions
and
1 deletion
+2
-1
pkg/helm/fake.go
+
2
−
1
View file @
73b28bab
...
...
@@ -19,6 +19,7 @@ package helm // import "k8s.io/helm/pkg/helm"
import
(
"bytes"
"errors"
"fmt"
"math/rand"
"strings"
"sync"
...
...
@@ -332,7 +333,7 @@ func ReleaseMock(opts *MockReleaseOptions) *release.Release {
name
:=
opts
.
Name
if
name
==
""
{
name
=
"testrelease-
"
+
string
(
rand
.
Intn
(
100
))
name
=
fmt
.
Sprintf
(
"testrelease-
%d"
,
rand
.
Intn
(
100
))
}
var
version
int32
=
1
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets