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
51c4953c
Commit
51c4953c
authored
Mar 30, 2016
by
Matt Butcher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(*): replace occurances of Deployment Manager
parent
d8687442
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
16 additions
and
15 deletions
+16
-15
README.md
README.md
+4
-4
doc.go
cmd/doc.go
+1
-1
repository.go
cmd/manager/repository/repository.go
+1
-1
get-install.sh
get-install.sh
+7
-7
doc.go
pkg/doc.go
+1
-1
version.go
pkg/version/version.go
+2
-1
No files found.
README.md
View file @
51c4953c
...
...
@@ -32,7 +32,7 @@ From a Linux or Mac OS X client:
$ git clone https://github.com/kubernetes/deployment-manager.git
$ cd deployment-manager
$ make build
$ bin/helm
dm
install
$ bin/helm
server
install
```
That's it. You can now use
`kubectl`
to see DM running in your cluster:
...
...
@@ -55,10 +55,10 @@ kubectl proxy --port=8001 --namespace=dm &
## Uninstalling Helm from Kubernetes
You can uninstall
Deployment Manager
using the same configuration:
You can uninstall
Helm
using the same configuration:
```
helm
dm
uninstall
helm
server
uninstall
```
## Installing Charts
...
...
@@ -69,7 +69,7 @@ To quickly deploy a chart, you can use the Helm command line tool:
$ helm deploy CHARTNAME
```
## Design of
Deployment Manager
## Design of
Helm
There is a more detailed
[
design document
](
docs/design/design.md
)
available.
...
...
cmd/doc.go
View file @
51c4953c
...
...
@@ -14,5 +14,5 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
// Package cmd contains the executables for
Deployment Manager
.
// Package cmd contains the executables for
Helm
.
package
cmd
cmd/manager/repository/repository.go
View file @
51c4953c
...
...
@@ -21,7 +21,7 @@ import (
"github.com/kubernetes/helm/pkg/common"
)
// Repository manages storage for all
Deployment Manager
entities, as well as
// Repository manages storage for all
Helm
entities, as well as
// the common operations to store, access and manage them.
type
Repository
interface
{
// Deployments.
...
...
get-install.sh
View file @
51c4953c
...
...
@@ -16,12 +16,12 @@
set
-euo
pipefail
DEFAULT_TAG
=
v1.2
DEFAULT_BINARY
=
${
GOPATH
}
/bin/
d
m
DEFAULT_BINARY
=
${
GOPATH
}
/bin/
hel
m
DEFAULT_PLATFORM
=
$(
uname
|
tr
'[:upper:]'
'[:lower:]'
)
DEFAULT_ARCH
=
$(
uname
-m
)
STORAGE_URL
=
http://get-dm.storage.googleapis.com
ZIP
=
d
m-
${
TAG
:-${
DEFAULT_TAG
}}
-
${
PLATFORM
:-${
DEFAULT_PLATFORM
}}
-
${
ARCH
:-${
DEFAULT_ARCH
}}
.zip
ZIP
=
hel
m-
${
TAG
:-${
DEFAULT_TAG
}}
-
${
PLATFORM
:-${
DEFAULT_PLATFORM
}}
-
${
ARCH
:-${
DEFAULT_ARCH
}}
.zip
echo
"Downloading
${
ZIP
}
..."
curl
-Ls
"
${
STORAGE_URL
}
/
${
ZIP
}
"
-O
...
...
@@ -29,20 +29,20 @@ curl -Ls "${STORAGE_URL}/${ZIP}" -O
unzip
-qo
${
ZIP
}
rm
${
ZIP
}
chmod
+x
d
m
chmod
+x
hel
m
cat
<<
EOF
d
m is now available in your current directory.
hel
m is now available in your current directory.
Before using it, please install the
Deployment Manager
service in your
Before using it, please install the
Helm
service in your
kubernetes cluster by running
$
kubectl create -f install.yam
l
$
helm server instal
l
To get started, run:
$
./dm
$
helm help
EOF
pkg/doc.go
View file @
51c4953c
// Package pkg contains all libraries for
Deployment Manager
// Package pkg contains all libraries for
Helm.
package
pkg
pkg/version/version.go
View file @
51c4953c
...
...
@@ -14,9 +14,10 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
// Package version represents the current version of the project.
package
version
// Version is the current version of the
Deployment Manager
.
// Version is the current version of the
Helm
.
// Update this whenever making a new release.
// The version is of the format Major.Minor.Patch
// Increment major number for new feature additions and behavioral changes.
...
...
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