From 5db850115159ef247a2dbeb65b7de3a583a14617 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 22:21:41 +0000 Subject: [PATCH 1/3] Update redis Docker tag to v7.2.5 --- charts/redis/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/redis/values.yaml b/charts/redis/values.yaml index 7f567c29..87239ea7 100644 --- a/charts/redis/values.yaml +++ b/charts/redis/values.yaml @@ -11,7 +11,7 @@ image: repository: "redis" # -- Redis image tag to use - tag: "7.2.4" + tag: "7.2.5" # -- Pull policy for the Redis image pullPolicy: "IfNotPresent" From 21530655e5c8698736ef9875281846481633b7ed Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Mon, 20 May 2024 15:58:19 -0700 Subject: [PATCH 2/3] Update Redis chart version --- charts/redis/Chart.yaml | 2 +- charts/redis/README.md | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/charts/redis/Chart.yaml b/charts/redis/Chart.yaml index bba6c452..4cc200f5 100644 --- a/charts/redis/Chart.yaml +++ b/charts/redis/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: redis -version: 1.0.11 +version: 1.0.12 description: Simple single-server Redis deployment with configurable storage sources: - https://github.com/lsst-sqre/charts/tree/main/charts/redis diff --git a/charts/redis/README.md b/charts/redis/README.md index 4732f70e..e0f3ef1b 100644 --- a/charts/redis/README.md +++ b/charts/redis/README.md @@ -1,6 +1,6 @@ # redis -![Version: 1.0.11](https://img.shields.io/badge/Version-1.0.10-informational?style=flat-square) +![Version: 1.0.12](https://img.shields.io/badge/Version-1.0.12-informational?style=flat-square) Simple single-server Redis deployment with configurable storage @@ -24,7 +24,7 @@ Simple single-server Redis deployment with configurable storage | fullnameOverride | string | `""` | Override the full name for resources (includes the release name) | | image.pullPolicy | string | `"IfNotPresent"` | Pull policy for the Redis image | | image.repository | string | `"redis"` | Redis image to use | -| image.tag | string | `"7.2.4"` | Redis image tag to use | +| image.tag | string | `"7.2.5"` | Redis image tag to use | | nameOverride | string | `""` | Override the base name for resources | | nodeSelector | object | `{}` | Node selector rules for the Redis pod | | persistence.accessMode | string | `"ReadWriteOnce"` | Access mode of storage to request | @@ -36,3 +36,5 @@ Simple single-server Redis deployment with configurable storage | resources | object | `{}` | Resource limits and requests for the Redis pod | | tolerations | list | `[]` | Tolerations for the Redis pod | +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.13.0](https://github.com/norwoodj/helm-docs/releases/v1.13.0) From 26a6661d3838a802c04cd683665743162a1a0662 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Mon, 20 May 2024 15:58:41 -0700 Subject: [PATCH 3/3] Update Python version for testing 3.12 --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 81bcd0a7..43f7f536 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,7 +18,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.12" - name: Install test dependencies run: pip install -r tests/requirements.txt @@ -38,7 +38,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.12" - name: Set up chart-testing uses: helm/chart-testing-action@v2.6.1