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
70af7ba4
Unverified
Commit
70af7ba4
authored
Aug 26, 2019
by
Taylor Thomas
Committed by
GitHub
Aug 26, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6271 from 928234269/patch-1
fix typo
parents
256765aa
627283ac
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
status.proto
_proto/hapi/release/status.proto
+1
-1
charts.md
docs/charts.md
+1
-1
client.go
pkg/kube/client.go
+1
-1
status.pb.go
pkg/proto/hapi/release/status.pb.go
+1
-1
storage.go
pkg/storage/storage.go
+1
-1
No files found.
_proto/hapi/release/status.proto
View file @
70af7ba4
...
...
@@ -41,7 +41,7 @@ message Status {
PENDING_INSTALL
=
6
;
// Status_PENDING_UPGRADE indicates that an upgrade operation is underway.
PENDING_UPGRADE
=
7
;
// Status_PENDING_ROLLBACK indicates that a
n
rollback operation is underway.
// Status_PENDING_ROLLBACK indicates that a rollback operation is underway.
PENDING_ROLLBACK
=
8
;
}
...
...
docs/charts.md
View file @
70af7ba4
...
...
@@ -479,7 +479,7 @@ Furthermore, A is dependent on chart B that creates objects
- replicaset "B-ReplicaSet"
- service "B-Service"
After installation/upgrade of chart A a single Helm release is created/modified. The release will
After installation/upgrade of chart A
,
a single Helm release is created/modified. The release will
create/update all of the above Kubernetes objects in the following order:
- A-Namespace
...
...
pkg/kube/client.go
View file @
70af7ba4
...
...
@@ -658,7 +658,7 @@ func createPatch(target *resource.Info, current runtime.Object) ([]byte, types.P
// Get a versioned object
versionedObject
,
err
:=
asVersioned
(
target
)
// Unstructured objects, such as CRDs, may not have a
n
not registered error
// Unstructured objects, such as CRDs, may not have a not registered error
// returned from ConvertToVersion. Anything that's unstructured should
// use the jsonpatch.CreateMergePatch. Strategic Merge Patch is not supported
// on objects like CRDs.
...
...
pkg/proto/hapi/release/status.pb.go
View file @
70af7ba4
...
...
@@ -38,7 +38,7 @@ const (
Status_PENDING_INSTALL
Status_Code
=
6
// Status_PENDING_UPGRADE indicates that an upgrade operation is underway.
Status_PENDING_UPGRADE
Status_Code
=
7
// Status_PENDING_ROLLBACK indicates that a
n
rollback operation is underway.
// Status_PENDING_ROLLBACK indicates that a rollback operation is underway.
Status_PENDING_ROLLBACK
Status_Code
=
8
)
...
...
pkg/storage/storage.go
View file @
70af7ba4
...
...
@@ -50,7 +50,7 @@ func (s *Storage) Get(name string, version int32) (*rspb.Release, error) {
// Create creates a new storage entry holding the release. An
// error is returned if the storage driver failed to store the
// release, or a release with identical
an
key already exists.
// release, or a release with identical key already exists.
func
(
s
*
Storage
)
Create
(
rls
*
rspb
.
Release
)
error
{
s
.
Log
(
"creating release %q"
,
makeKey
(
rls
.
Name
,
rls
.
Version
))
if
s
.
MaxHistory
>
0
{
...
...
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