Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mumoshu committed Feb 6, 2018
1 parent 68f6363 commit 7459629
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/index.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
apiVersion: v1
entries:
namespace-defaults:
- apiVersion: v1
created: 2018-02-06T22:09:09.497036628+09:00
description: A Helm chart for Kubernetes
digest: 6a86dd187a8df31258fcda019d7e1b8af3095041e2de67984f71df17c920b1b7
name: namespace-defaults
urls:
- https://mumoshu.github.com/kubeherd/namespace-defaults-0.1.0.tgz
version: 0.1.0
generated: 2018-02-06T22:09:09.493808391+09:00
Binary file added docs/namespace-defaults-0.1.0.tgz
Binary file not shown.
20 changes: 20 additions & 0 deletions scripts/package-charts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env bash

mkdir -p build/charts

pushd build/charts

for c in ../../charts/*; do
helm package $c || true
done

popd

mkdir -p docs/

for c in build/charts/*.tgz; do
echo moving $c to docs/
mv $c docs/
done

helm repo index docs/ --url https://mumoshu.github.com/kubeherd

0 comments on commit 7459629

Please sign in to comment.