From 5f077e840b954a4fe7dec0a6ed5c8623c5e74e8f Mon Sep 17 00:00:00 2001 From: Jeff Billimek Date: Sun, 4 Aug 2019 21:23:14 -0400 Subject: [PATCH] bumping frigate chart and image tag (#55) * bumping frigate chart and image tag Signed-off-by: Jeff Billimek * fixing repo name and chart diff script --- .circleci/config.yml | 2 +- .circleci/release.sh | 12 ++++++------ frigate/Chart.yaml | 4 ++-- frigate/README.md | 2 +- frigate/values.yaml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index be9ba25c..593e4d26 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: - run: name: lint command: | - git remote add upstream https://github.com/paulczar/percona-helm-charts + git remote add upstream https://github.com/billimek/billimek-charts git fetch upstream master ct lint --config .circleci/ct.yaml install-charts: diff --git a/.circleci/release.sh b/.circleci/release.sh index fb40bc57..26733a6b 100755 --- a/.circleci/release.sh +++ b/.circleci/release.sh @@ -40,12 +40,12 @@ main() { echo "Identifying changed charts since tag '$latest_tag'..." local changed_charts=() - readarray -t changed_charts <<< "$(git diff --find-renames --name-only "$latest_tag_rev" -- charts | cut -d '/' -f 2 | uniq)" + readarray -t changed_charts <<< "$(git diff --find-renames --name-only "$latest_tag_rev" -- . | cut -d '/' -f 1 | uniq)" if [[ -n "${changed_charts[*]}" ]]; then for chart in "${changed_charts[@]}"; do echo "Packaging chart '$chart'..." - package_chart "charts/$chart" + package_chart "$chart" done release_charts @@ -80,7 +80,7 @@ update_index() { git config user.email "$GIT_EMAIL" git config user.name "$GIT_USERNAME" - for file in charts/*/*.md; do + for file in */*.md; do if [[ -e $file ]]; then mkdir -p ".deploy/docs/$(dirname "$file")" cp --force "$file" ".deploy/docs/$(dirname "$file")" @@ -90,9 +90,9 @@ update_index() { git checkout gh-pages cp --force .deploy/index.yaml index.yaml - if [[ -e ".deploy/docs/charts" ]]; then - mkdir -p charts - cp --force --recursive .deploy/docs/charts/* charts/ + if [[ -e ".deploy/docs" ]]; then + # mkdir -p charts + cp --force --recursive .deploy/docs/* . fi git checkout master -- README.md diff --git a/frigate/Chart.yaml b/frigate/Chart.yaml index 4f2eba6f..e63f923c 100644 --- a/frigate/Chart.yaml +++ b/frigate/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 -appVersion: "0.2.0-beta" +appVersion: "0.2.0" description: Realtime object detection on RTSP cameras with the Google Coral name: frigate -version: 0.1.5 +version: 0.1.6 keywords: - tensorflow - coral diff --git a/frigate/README.md b/frigate/README.md index 1ec5cb5e..531f4abe 100644 --- a/frigate/README.md +++ b/frigate/README.md @@ -52,7 +52,7 @@ The following tables lists the configurable parameters of the Sentry chart and t | Parameter | Description | Default | |----------------------------|-------------------------------------|---------------------------------------------------------| | `image.repository` | Image repository | `blakeblackshear/frigate` | -| `image.tag` | Image tag. Possible values listed [here](https://hub.docker.com/r/blakeblackshear/frigate/tags/).| `0.2.0-beta`| +| `image.tag` | Image tag. Possible values listed [here](https://hub.docker.com/r/blakeblackshear/frigate/tags/).| `0.2.0`| | `image.pullPolicy` | Image pull policy | `IfNotPresent` | | `strategyType` | Specifies the strategy used to replace old Pods by new ones | `Recreate` | | `timezone` | Timezone the frigate instance should run as, e.g. 'America/New_York' | `UTC` | diff --git a/frigate/values.yaml b/frigate/values.yaml index 517abeeb..b7c1eaf5 100644 --- a/frigate/values.yaml +++ b/frigate/values.yaml @@ -9,7 +9,7 @@ strategyType: Recreate image: repository: blakeblackshear/frigate - tag: 0.2.0-beta + tag: 0.2.0 pullPolicy: IfNotPresent rtspPassword: password