Skip to content

Commit 27d0ff5

Browse files
renovate[bot]zOnlyKroksgithub-actions[bot]
authored andcommitted
[memcached] chore(deps): update docker.io/memcached:1.6.39 Docker digest to 157c563 (CloudPirates-io#185)
* [memcached] chore(deps): update docker.io/memcached:1.6.39 Docker digest to 157c563 * Bump chart version * Update CHANGELOG.md Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> --------- Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Finn Rades <[email protected]> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent dc18001 commit 27d0ff5

File tree

6 files changed

+78
-7
lines changed

6 files changed

+78
-7
lines changed

.github/workflows/pull-request.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,9 @@ jobs:
186186
187187
cd $chart_directory
188188
189-
CHART_VERSION='0.1.0-${{ github.run_number }}'
190-
APP_VERSION='unstable-${GITHUB_SHA::7}'
189+
SHORT_SHA=$(echo "${{ github.sha }}" | cut -c1-7)
190+
CHART_VERSION="0.1.0-${{ github.run_number }}"
191+
APP_VERSION="unstable-${SHORT_SHA}"
191192
192193
helm dep update .
193194
helm lint --strict .

charts/memcached/CHANGELOG.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3-
## 0.1.3 (2025-09-24)
3+
## 0.2.1 (2025-10-02)
44

5-
* [postgres] fix: Change default name for CUSTOM_PASSWORD ([#144](https://github.com/CloudPirates-io/helm-charts/pull/144))
5+
* [memcached] chore(deps): update docker.io/memcached:1.6.39 Docker digest to 157c563 ([#185](https://github.com/CloudPirates-io/helm-charts/pull/185))
6+
7+
## 0.2.0 (2025-10-01)
8+
9+
* cast verbosity to int before passing to repeat ([518b602](https://github.com/CloudPirates-io/helm-charts/commit/518b602))
10+
* chore(deps): update docker.io/memcached:1.6.39 Docker digest to 68c1185 ([3c6ec49](https://github.com/CloudPirates-io/helm-charts/commit/3c6ec49))
11+
* make memcached run on openshift (#194) ([87ffbbf](https://github.com/CloudPirates-io/helm-charts/commit/87ffbbf)), closes [#194](https://github.com/CloudPirates-io/helm-charts/issues/194)
12+
* Bump chart version ([1661d8d](https://github.com/CloudPirates-io/helm-charts/commit/1661d8d))
13+
* bump version ([884f4ab](https://github.com/CloudPirates-io/helm-charts/commit/884f4ab))
14+
* mariadb now respects full custom container security context settings ([770ea69](https://github.com/CloudPirates-io/helm-charts/commit/770ea69))
15+
* Update CHANGELOG.md ([7a828fa](https://github.com/CloudPirates-io/helm-charts/commit/7a828fa))
16+
* Update CHANGELOG.md ([f9df296](https://github.com/CloudPirates-io/helm-charts/commit/f9df296))
17+
* Update CHANGELOG.md ([0c85529](https://github.com/CloudPirates-io/helm-charts/commit/0c85529))
18+
* Update CHANGELOG.md ([0e5b657](https://github.com/CloudPirates-io/helm-charts/commit/0e5b657))
19+
* Update CHANGELOG.md ([dcabcee](https://github.com/CloudPirates-io/helm-charts/commit/dcabcee))
20+
* Update CHANGELOG.md ([812bd46](https://github.com/CloudPirates-io/helm-charts/commit/812bd46))
21+
* Update docker.io/memcached:1.6.39 Docker digest to 4404f32 ([454eea5](https://github.com/CloudPirates-io/helm-charts/commit/454eea5))
22+
23+
## 0.1.0 (2025-09-02)
24+
25+
* add extraObject array to all charts ([34772b7](https://github.com/CloudPirates-io/helm-charts/commit/34772b7))
26+
* Add initial Changelogs to all Charts ([68f10ca](https://github.com/CloudPirates-io/helm-charts/commit/68f10ca))
27+
* bump all chart versions for new extraObjects feature ([aaa57f9](https://github.com/CloudPirates-io/helm-charts/commit/aaa57f9))
28+
29+
## <small>0.0.1 (2025-08-26)</small>
30+
31+
* [memcached]: Initial Memcached Implementation (#17) ([790bcbd](https://github.com/CloudPirates-io/helm-charts/commit/790bcbd)), closes [#17](https://github.com/CloudPirates-io/helm-charts/issues/17)

charts/memcached/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: memcached
33
description: Memcached is an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering.
44
type: application
55

6-
version: 0.2.0
6+
version: 0.2.1
77
appVersion: "1.6.39"
88

99
keywords:

charts/memcached/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ image:
2222
## @param image.repository Memcached image repository
2323
repository: memcached
2424
## @param image.tag Memcached image tag
25-
tag: "1.6.39@sha256:68c1185d50600b472705b5a700037f4b8bab28f04a188bdf3a79d38e24dbfb95"
25+
tag: "1.6.39@sha256:157c563eef6954ac0bc583c36def96d8ed2d3b3c5b37214f27d210ac53942386"
2626
## @param image.pullPolicy Memcached image pull policy
2727
pullPolicy: Always
2828

charts/minio/templates/configmap.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ metadata:
55
name: {{ include "minio.fullname" . }}
66
namespace: {{ .Release.Namespace }}
77
labels:
8-
app: test
98
{{- include "minio.labels" . | nindent 4 }}
109
{{- if .Values.commonAnnotations }}
1110
annotations:

contrib.sh

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
#!/bin/bash
2+
3+
ACTION=$1
4+
BRANCH_NAME=$2
5+
6+
if [ -z "$BRANCH_NAME" ]; then
7+
echo "Usage: $0 <branch-name> [start|finish|update]"
8+
echo " start: Start new contribution"
9+
echo " finish: Restore private workflows"
10+
exit 1
11+
fi
12+
13+
case $ACTION in
14+
"start")
15+
echo "🔄 Synchronisation with upstream..."
16+
git checkout main
17+
18+
git fetch upstream
19+
git diff upstream/main -- .github/workflows/ > private-workflows.patch
20+
21+
echo "🗑️ Deleting private workflows before contrib..."
22+
git apply -R private-workflows.patch
23+
echo "✅ Private workflows deleted"
24+
25+
echo "🌿 Creating branch $BRANCH_NAME..."
26+
git checkout -b "$BRANCH_NAME"
27+
28+
echo "✅ Ready for contrib !"
29+
;;
30+
31+
"finish")
32+
echo "🔄 Return to main..."
33+
git checkout main
34+
35+
echo "🔧 Restore private workflows..."
36+
git apply private-workflows.patch
37+
38+
echo "✅ Ready !"
39+
;;
40+
41+
*)
42+
echo "Action inconnue: $ACTION"
43+
echo "Utilisez: start or finish"
44+
;;
45+
esac

0 commit comments

Comments
 (0)