Skip to content

Commit e8d4b06

Browse files
authored
Move seed chart (#21)
* move seed chart * update travis * update travis
1 parent dfc40f1 commit e8d4b06

File tree

11 files changed

+5
-5
lines changed

11 files changed

+5
-5
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ before_install:
44
- curl -L https://git.io/get_helm.sh | bash
55

66
script:
7-
# TODO iterate over each folder that has Chart.yaml
8-
- helm lint seed/ applications/
7+
# verify all charts
8+
- find . -maxdepth 3 -type f -name 'Chart.yaml' -exec dirname {} \; | xargs helm lint

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ ifndef HELM
88
$(error "helm" not found)
99
endif
1010

11+
# publish to https://edgelevel.github.io/gitops-k8s
1112
.PHONY: publish-seed
1213
publish-seed: requirements
1314
./scripts/publish-seed.sh

charts/ambassador-mapping/Chart.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
apiVersion: v1
2-
appVersion: "1.0"
32
name: ambassador-mapping
43
version: 0.1.0
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

scripts/bootstrap.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cd ${CURRENT_PATH}
1111
##############################
1212

1313
ROOT_PATH="${CURRENT_PATH}/.."
14-
SEED_PATH="${ROOT_PATH}/seed/"
14+
SEED_PATH="${ROOT_PATH}/charts/seed/"
1515

1616
cd ${SEED_PATH}
1717

scripts/publish-seed.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cd ${CURRENT_PATH}
1111
##############################
1212

1313
ROOT_PATH="${CURRENT_PATH}/.."
14-
SEED_PATH="${ROOT_PATH}/seed/"
14+
SEED_PATH="${ROOT_PATH}/charts/seed/"
1515
TMP_REPOSITORY="tmp-gh-pages"
1616

1717
cd ${SEED_PATH}

0 commit comments

Comments
 (0)