mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +00:00
bumping frigate chart and image tag (#55)
* bumping frigate chart and image tag Signed-off-by: Jeff Billimek <jeff@billimek.com> * fixing repo name and chart diff script
This commit is contained in:
parent
999c2a1a93
commit
5f077e840b
@ -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:
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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` |
|
||||
|
@ -9,7 +9,7 @@ strategyType: Recreate
|
||||
|
||||
image:
|
||||
repository: blakeblackshear/frigate
|
||||
tag: 0.2.0-beta
|
||||
tag: 0.2.0
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
rtspPassword: password
|
||||
|
Loading…
Reference in New Issue
Block a user