forked from helm/helm
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(helm): implement new index format
This implements a new index file format for repository indices. It also implements a new format for requirements.yaml. Breaking change: This will break all previous versions of Helm, and will impact helm search, repo, serve, and fetch functions. Closes helm#1197
- Loading branch information
1 parent
6860c47
commit ecfa84e
Showing
42 changed files
with
1,265 additions
and
624 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
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
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
84 changes: 46 additions & 38 deletions
84
cmd/helm/downloader/testdata/helmhome/repository/cache/kubernetes-charts-index.yaml
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,38 +1,46 @@ | ||
alpine-0.1.0: | ||
name: alpine | ||
url: http://storage.googleapis.com/kubernetes-charts/alpine-0.1.0.tgz | ||
created: 2016-09-06 21:58:44.211261566 +0000 UTC | ||
checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d | ||
chartfile: | ||
name: alpine | ||
home: https://k8s.io/helm | ||
sources: | ||
- https://github.com/kubernetes/helm | ||
version: 0.1.0 | ||
description: Deploy a basic Alpine Linux pod | ||
keywords: [] | ||
maintainers: [] | ||
engine: "" | ||
icon: "" | ||
mariadb-0.3.0: | ||
name: mariadb | ||
url: http://storage.googleapis.com/kubernetes-charts/mariadb-0.3.0.tgz | ||
created: 2016-09-06 21:58:44.211870222 +0000 UTC | ||
checksum: 65229f6de44a2be9f215d11dbff311673fc8ba56 | ||
chartfile: | ||
name: mariadb | ||
home: https://mariadb.org | ||
sources: | ||
- https://github.com/bitnami/bitnami-docker-mariadb | ||
version: 0.3.0 | ||
description: Chart for MariaDB | ||
keywords: | ||
- mariadb | ||
- mysql | ||
- database | ||
- sql | ||
maintainers: | ||
- name: Bitnami | ||
email: containers@bitnami.com | ||
engine: gotpl | ||
icon: "" | ||
apiVersion: v1 | ||
entries: | ||
alpine: | ||
- name: alpine | ||
url: http://storage.googleapis.com/kubernetes-charts/alpine-0.1.0.tgz | ||
checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d | ||
home: https://k8s.io/helm | ||
sources: | ||
- https://github.com/kubernetes/helm | ||
version: 0.1.0 | ||
description: Deploy a basic Alpine Linux pod | ||
keywords: [] | ||
maintainers: [] | ||
engine: "" | ||
icon: "" | ||
- name: alpine | ||
url: http://storage.googleapis.com/kubernetes-charts/alpine-0.2.0.tgz | ||
checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d | ||
home: https://k8s.io/helm | ||
sources: | ||
- https://github.com/kubernetes/helm | ||
version: 0.2.0 | ||
description: Deploy a basic Alpine Linux pod | ||
keywords: [] | ||
maintainers: [] | ||
engine: "" | ||
icon: "" | ||
mariadb: | ||
- name: mariadb | ||
url: http://storage.googleapis.com/kubernetes-charts/mariadb-0.3.0.tgz | ||
checksum: 65229f6de44a2be9f215d11dbff311673fc8ba56 | ||
home: https://mariadb.org | ||
sources: | ||
- https://github.com/bitnami/bitnami-docker-mariadb | ||
version: 0.3.0 | ||
description: Chart for MariaDB | ||
keywords: | ||
- mariadb | ||
- mysql | ||
- database | ||
- sql | ||
maintainers: | ||
- name: Bitnami | ||
email: containers@bitnami.com | ||
engine: gotpl | ||
icon: "" |
5 changes: 4 additions & 1 deletion
5
cmd/helm/downloader/testdata/helmhome/repository/repositories.yaml
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 +1,4 @@ | ||
testing: "http://example.com" | ||
apiVersion: v1 | ||
repositories: | ||
- name: testing | ||
url: "http://example.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
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
Oops, something went wrong.