Skip to content

Commit 7521868

Browse files
committed
Merge remote-tracking branch 'origin/main' into ci-update-base-to-1.26.1
2 parents 95136c8 + 18dc630 commit 7521868

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

apps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ appsInfo:
9999
integration: Falco can be enabled in APL for runtime intrusion detection. Macros have been configured to exclude all known platform violations so platform admins are only notified when user workloads are not compliant to the security rules. Alerts are automatically send using Alertmanager and the Falco Dashboard is added to Grafana.
100100
gitea:
101101
title: Gitea Self-hosted GIT
102-
appVersion: 1.23.7
102+
appVersion: 1.23.8
103103
repo: https://github.com/go-gitea/gitea
104104
maintainers: Gitea
105105
relatedLinks:

values/gitea/gitea-raw.gotmpl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,12 @@ resources:
7373
metadata:
7474
name: gitea-backup-operator
7575
rules:
76+
- apiGroups: ["apps"]
77+
resources: ["deployments"]
78+
verbs: ["get"]
7679
- apiGroups: [""]
7780
resources: ["pods"]
78-
verbs: ["get", "watch", "list"]
81+
verbs: ["get", "list"]
7982
- apiGroups: [""]
8083
resources: ["pods/exec"]
8184
verbs: ["create"]

values/gitea/gitea.gotmpl

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,12 @@ podDns:
2828

2929
resources: {{- $g.resources.gitea | toYaml | nindent 2 }}
3030

31-
securityContext:
32-
allowPrivilegeEscalation: false
33-
capabilities:
34-
drop:
35-
- ALL
36-
privileged: false
37-
readOnlyRootFilesystem: true
38-
runAsGroup: 1000
39-
runAsNonRoot: true
40-
runAsUser: 1000
41-
4231
image:
4332
{{- with $v.otomi | get "globalPullSecret" nil }}
4433
imagePullSecrets:
4534
- name: otomi-pullsecret-global
4635
{{- end }}
47-
{{- with $g | get "image.gitea.tag" "1.23.7" }}
36+
{{- with $g | get "image.gitea.tag" "1.23.8" }}
4837
tag: {{ . }}
4938
{{- end }}
5039
pullPolicy: {{ $g | get "image.gitea.pullPolicy" "IfNotPresent" }}
@@ -212,11 +201,19 @@ extraVolumes:
212201

213202
podSecurityContext:
214203
fsGroup: 1000
215-
216-
containerSecurityContext:
217204
runAsNonRoot: true
218205
runAsUser: 1000
219206
runAsGroup: 1000
207+
seccompProfile:
208+
type: RuntimeDefault
209+
210+
containerSecurityContext:
211+
capabilities:
212+
drop:
213+
- ALL
214+
allowPrivilegeEscalation: false
215+
privileged: false
216+
readOnlyRootFilesystem: true
220217

221218
{{- with .Values.otomi | get "globalPullSecret" nil }}
222219
global:

0 commit comments

Comments
 (0)