
* feat: argo-cd can deploy Redis HA
Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
* fix: add unarchived subchart redis-ha
Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
* fix: Redis HA upgraded since 4.3.4 contains a bug on the chart
Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
* docs: how to configure Redis and Redis HA
* fix: add missing chart folder
Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
* fix: Helm bug with subcharts and alias
* fix: Chart version
* fix: Remove archived subcharts
Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
* fix: lint script
Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
* Revert "fix: lint script"
This reverts commit f4b81cbb6f
.
* fix: lint and publish scripts
Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
* fix: align test-image versions
Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
* fix: remove sudo from scripts
Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
* fix: add required repositories to helm
Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
* fix: simplify expression
Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
* fix: bump up chart version
Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
Co-authored-by: Spencer Gilbert <Spencer.Gilbert@gmail.com>
38 lines
No EOL
1.2 KiB
YAML
38 lines
No EOL
1.2 KiB
YAML
version: 2.1
|
|
jobs:
|
|
lint:
|
|
docker:
|
|
- image: gcr.io/kubernetes-charts-ci/test-image:v3.1.0
|
|
steps:
|
|
- checkout
|
|
- run: ct lint --config .circleci/chart-testing.yaml --lint-conf .circleci/lintconf.yaml
|
|
# Technically this only needs to be run on master, but it's good to have it run on every PR
|
|
# so that it is regularly tested.
|
|
publish:
|
|
docker:
|
|
# We just need an image with `helm` on it. Handily we know of one already.
|
|
- image: gcr.io/kubernetes-charts-ci/test-image:v3.1.0
|
|
steps:
|
|
# install the additional keys needed to push to Github. Alex Collins owns these keys.
|
|
- add_ssh_keys
|
|
- run: git config --global user.email "nobody@circleci.com"
|
|
- run: git config --global user.name "Circle CI Build"
|
|
- checkout
|
|
- run: helm init --client-only
|
|
# Only actually publish charts on master.
|
|
- run: |
|
|
set -x
|
|
if [ "$CIRCLE_BRANCH" = "master" ]; then
|
|
export GIT_PUSH=true
|
|
else
|
|
export GIT_PUSH=false
|
|
fi
|
|
sh ./scripts/publish.sh
|
|
workflows:
|
|
version: 2
|
|
workflow:
|
|
jobs:
|
|
- lint
|
|
- publish:
|
|
requires:
|
|
- lint |