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 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) 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"