-
Notifications
You must be signed in to change notification settings - Fork 519
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from deis/mvp
Behold the iterations!
- Loading branch information
Showing
43 changed files
with
646 additions
and
492 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
_site/ | ||
.sass-cache/ | ||
node_modules/ | ||
javascripts/*.min.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module.exports = function(grunt) { | ||
// Project configuration. | ||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON('package.json'), | ||
uglify: { | ||
options: { | ||
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n' | ||
}, | ||
build: { | ||
src: ['javascripts/*.js','!javascripts/*.min.js'], | ||
dest: 'javascripts/helm.min.js' | ||
} | ||
} | ||
}); | ||
// Load the plugin that provides the "uglify" task. | ||
grunt.loadNpmTasks('grunt-contrib-uglify'); | ||
// Default task(s). | ||
grunt.registerTask('default', ['uglify']); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Site settings | ||
title: "Coming Soon: Helm" | ||
title: "Helm: The Kubernetes Package Manager" | ||
email: "" | ||
description: > # this means to ignore newlines until "baseurl:" | ||
Helm: The Kubernetes Package Manager | ||
baseurl: "" # the subpath of your site, e.g. /blog/ | ||
url: "http://helm.sh" # the base hostname & protocol for your site | ||
url: "https://helm.sh" # the base hostname & protocol for your site | ||
twitter_username: opendeis | ||
github_username: deis | ||
|
||
# Build settings | ||
markdown: kramdown | ||
exclude: [vendor, script] | ||
exclude: [vendor, script, node_modules] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<div class="tweet" data-click-category="tweet1"> | ||
<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr">The Deis team is working on a packager manager for <a href="https://twitter.com/hashtag/kubernetes?src=hash">#kubernetes</a>. Think homebrew but for distributed applications. <a href="https://t.co/9uLp7ManZS">https://t.co/9uLp7ManZS</a></p>— Kelsey Hightower (@kelseyhightower) <a href="https://twitter.com/kelseyhightower/status/659153885362323456">October 27, 2015</a></blockquote> | ||
</div> | ||
<div class="tweet" data-click-category="tweet2"> | ||
<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr">Really like the thinking behind Deis Helm: <a href="https://t.co/coQGTcqYCk">https://t.co/coQGTcqYCk</a>. Applying "packaging" to config like this is a unique approach.</p>— Joe Beda (@jbeda) <a href="https://twitter.com/jbeda/status/659155495802900480">October 27, 2015</a></blockquote> | ||
</div> | ||
<div class="tweet" data-click-category="tweet3"> | ||
<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr">I tweeted about a centralized repo for distributed apps, looks like <a href="https://twitter.com/opendeis">@opendeis</a> is already working on such thing! 👍 <a href="https://t.co/DJygCygkN1">https://t.co/DJygCygkN1</a></p>— Antoine Cotten (@AntoineCotten) <a href="https://twitter.com/AntoineCotten/status/659628683448213504">October 29, 2015</a></blockquote> | ||
</div> | ||
<div class="tweet" data-click-category="tweet4"> | ||
<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr"><a href="https://twitter.com/chuhnk">@chuhnk</a> <a href="https://twitter.com/asynchio">@asynchio</a> we have a package manager now (<a href="https://t.co/cBf88hqPhn">https://t.co/cBf88hqPhn</a>) so the sky is the limit...</p>— Hack gone Ops (@milosgajdos) <a href="https://twitter.com/milosgajdos/status/659705690701873152">October 29, 2015</a></blockquote> | ||
</div> | ||
<div class="tweet" data-click-category="tweet5"> | ||
<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr">Helm is a stupid-good idea: <a href="https://t.co/3fyDg4a7MS">https://t.co/3fyDg4a7MS</a> This kind of thing should make the benefits of Kubernetes/Mesos obvious to everyone.</p>— Eric Florenzano (@ericflo) <a href="https://twitter.com/ericflo/status/659187273313816576">October 28, 2015</a></blockquote> | ||
</div> | ||
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script> | ||
|
||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.