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
b799d7bd
Unverified
Commit
b799d7bd
authored
Jan 12, 2018
by
Matthew Fisher
Committed by
GitHub
Jan 12, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3336 from andreychernih/developers-tiller-doc
Added notes on how to fix pulling errors
parents
e9203b82
fb143226
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
developers.md
docs/developers.md
+14
-2
No files found.
docs/developers.md
View file @
b799d7bd
...
...
@@ -87,7 +87,19 @@ GCR registry.
For development, we highly recommend using the
[
Kubernetes Minikube
](
https://github.com/kubernetes/minikube
)
developer-oriented distribution. Once this is installed, you can use
`helm init`
to install into the cluster.
`helm init`
to install into the cluster. Note that version of tiller you're using for
development may not be available in Google Cloud Container Registry. If you're getting
image pull errors, you can override the version of Tiller. Example:
```
console
helm init --tiller-image=gcr.io/kubernetes-helm/tiller:2.7.2
```
Or use the latest version:
```
console
helm init --canary-image
```
For developing on Tiller, it is sometimes more expedient to run Tiller locally
instead of packaging it into an image and running it in-cluster. You can do
...
...
@@ -129,7 +141,7 @@ The code for the Helm project is organized as follows:
-
The individual programs are located in
`cmd/`
. Code inside of
`cmd/`
is not designed for library re-use.
-
Shared libraries are stored in
`pkg/`
.
-
The raw ProtoBuf files are stored in
`_proto/hapi`
(where
`hapi`
stands for
-
The raw ProtoBuf files are stored in
`_proto/hapi`
(where
`hapi`
stands for
the Helm Application Programming Interface).
-
The Go files generated from the
`proto`
definitions are stored in
`pkg/proto`
.
-
The
`scripts/`
directory contains a number of utility scripts. Most of these
...
...
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