Skip to content

Commit 87ffbbf

Browse files
authored
[memcached] make memcached run on openshift (CloudPirates-io#194)
make memcached run on openshift
1 parent cc4d3c3 commit 87ffbbf

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

charts/memcached/Chart.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
2-
- name: common
3-
repository: oci://registry-1.docker.io/cloudpirates
4-
version: 1.0.0
5-
digest: sha256:4dc4489391e65614af4cd64d56a213e353a7a70b231faf64c584779774304d96
6-
generated: "2025-08-22T09:30:25.620882+02:00"
2+
- name: common
3+
repository: oci://registry-1.docker.io/cloudpirates
4+
version: 1.1.1
5+
digest: sha256:8da3c04e2c4a1ebfff4f21936399938e0f3fcf9fbd2f7135e7e907ce725b8f00
6+
generated: "2025-09-30T21:16:48.901325+02:00"

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.1.3
6+
version: 0.2.0
77
appVersion: "1.6.39"
88

99
keywords:

charts/memcached/templates/deployment.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,10 @@ spec:
2323
{{ . | nindent 6 }}
2424
{{- end }}
2525
serviceAccountName: {{ include "memcached.serviceAccountName" . }}
26-
securityContext:
27-
{{- toYaml .Values.podSecurityContext | nindent 8 }}
26+
securityContext: {{ include "common.renderPodSecurityContext" . | nindent 8 }}
2827
containers:
2928
- name: {{ .Chart.Name }}
30-
securityContext: {{- toYaml .Values.containerSecurityContext | nindent 12 }}
29+
securityContext: {{ include "common.renderContainerSecurityContext" . | nindent 12 }}
3130
image: {{ include "memcached.image" . | quote }}
3231
imagePullPolicy: {{ include "common.imagePullPolicy" (dict "image" .Values.image) }}
3332
args:

0 commit comments

Comments
 (0)