-
Notifications
You must be signed in to change notification settings - Fork 31
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 #116 from kmala/storage
feat(charts): Add helm charts for slugbuilder
- Loading branch information
Showing
3 changed files
with
19 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: slugbuilder | ||
home: https://github.com/deis/slugbuilder | ||
version: <Will be populated by the ci before publishing the chart> | ||
description: Buildpack application builder for Deis Workflow. | ||
maintainers: | ||
- name: Deis Team | ||
email: engineering@deis.com |
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,9 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: slugbuilder-config | ||
labels: | ||
heritage: deis | ||
data: | ||
image: "quay.io/{{.Values.org}}/slugbuilder:{{.Values.docker_tag}}" | ||
pullPolicy: {{ .Values.pull_policy }} |
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,3 @@ | ||
org: "deisci" | ||
pull_policy: "Always" | ||
docker_tag: canary |