mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-02 23:39:03 +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:
|
- run:
|
||||||
name: lint
|
name: lint
|
||||||
command: |
|
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
|
git fetch upstream master
|
||||||
ct lint --config .circleci/ct.yaml
|
ct lint --config .circleci/ct.yaml
|
||||||
install-charts:
|
install-charts:
|
||||||
|
@ -40,12 +40,12 @@ main() {
|
|||||||
echo "Identifying changed charts since tag '$latest_tag'..."
|
echo "Identifying changed charts since tag '$latest_tag'..."
|
||||||
|
|
||||||
local changed_charts=()
|
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
|
if [[ -n "${changed_charts[*]}" ]]; then
|
||||||
for chart in "${changed_charts[@]}"; do
|
for chart in "${changed_charts[@]}"; do
|
||||||
echo "Packaging chart '$chart'..."
|
echo "Packaging chart '$chart'..."
|
||||||
package_chart "charts/$chart"
|
package_chart "$chart"
|
||||||
done
|
done
|
||||||
|
|
||||||
release_charts
|
release_charts
|
||||||
@ -80,7 +80,7 @@ update_index() {
|
|||||||
git config user.email "$GIT_EMAIL"
|
git config user.email "$GIT_EMAIL"
|
||||||
git config user.name "$GIT_USERNAME"
|
git config user.name "$GIT_USERNAME"
|
||||||
|
|
||||||
for file in charts/*/*.md; do
|
for file in */*.md; do
|
||||||
if [[ -e $file ]]; then
|
if [[ -e $file ]]; then
|
||||||
mkdir -p ".deploy/docs/$(dirname "$file")"
|
mkdir -p ".deploy/docs/$(dirname "$file")"
|
||||||
cp --force "$file" ".deploy/docs/$(dirname "$file")"
|
cp --force "$file" ".deploy/docs/$(dirname "$file")"
|
||||||
@ -90,9 +90,9 @@ update_index() {
|
|||||||
git checkout gh-pages
|
git checkout gh-pages
|
||||||
cp --force .deploy/index.yaml index.yaml
|
cp --force .deploy/index.yaml index.yaml
|
||||||
|
|
||||||
if [[ -e ".deploy/docs/charts" ]]; then
|
if [[ -e ".deploy/docs" ]]; then
|
||||||
mkdir -p charts
|
# mkdir -p charts
|
||||||
cp --force --recursive .deploy/docs/charts/* charts/
|
cp --force --recursive .deploy/docs/* .
|
||||||
fi
|
fi
|
||||||
|
|
||||||
git checkout master -- README.md
|
git checkout master -- README.md
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
appVersion: "0.2.0-beta"
|
appVersion: "0.2.0"
|
||||||
description: Realtime object detection on RTSP cameras with the Google Coral
|
description: Realtime object detection on RTSP cameras with the Google Coral
|
||||||
name: frigate
|
name: frigate
|
||||||
version: 0.1.5
|
version: 0.1.6
|
||||||
keywords:
|
keywords:
|
||||||
- tensorflow
|
- tensorflow
|
||||||
- coral
|
- coral
|
||||||
|
@ -52,7 +52,7 @@ The following tables lists the configurable parameters of the Sentry chart and t
|
|||||||
| Parameter | Description | Default |
|
| Parameter | Description | Default |
|
||||||
|----------------------------|-------------------------------------|---------------------------------------------------------|
|
|----------------------------|-------------------------------------|---------------------------------------------------------|
|
||||||
| `image.repository` | Image repository | `blakeblackshear/frigate` |
|
| `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` |
|
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
|
||||||
| `strategyType` | Specifies the strategy used to replace old Pods by new ones | `Recreate` |
|
| `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` |
|
| `timezone` | Timezone the frigate instance should run as, e.g. 'America/New_York' | `UTC` |
|
||||||
|
@ -9,7 +9,7 @@ strategyType: Recreate
|
|||||||
|
|
||||||
image:
|
image:
|
||||||
repository: blakeblackshear/frigate
|
repository: blakeblackshear/frigate
|
||||||
tag: 0.2.0-beta
|
tag: 0.2.0
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
rtspPassword: password
|
rtspPassword: password
|
||||||
|
Loading…
Reference in New Issue
Block a user