Skip to content

Commit 56a6bb1

Browse files
committed
up
1 parent bf35cb6 commit 56a6bb1

3 files changed

Lines changed: 13 additions & 7 deletions

File tree

.claude/settings.local.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
"WebFetch(domain:*)",
77
"WebFetch(domain:github.com)",
88
"WebFetch(domain:posthog.com)",
9-
"WebFetch(domain:raw.githubusercontent.com)"
9+
"WebFetch(domain:raw.githubusercontent.com)",
10+
"WebFetch(domain:ghcr.io)",
11+
"WebFetch(domain:api.github.com)",
12+
"WebFetch(domain:hub.docker.com)"
1013
],
1114
"deny": [
1215
"Bash(git reset --hard:*)",

my-apps/development/gitea/values.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,14 @@ image:
2020
podSecurityContext:
2121
fsGroup: 1000
2222

23-
# The init container runs chmod on /data/git/.ssh which requires root to fix
24-
# ownership on restored PVCs from backup. The rootless image still drops to
25-
# UID 1000 internally for the main gitea process.
23+
# The init container runs chmod on /data/git/.ssh. Restored PVCs from backup
24+
# may have root-owned files. DAC_OVERRIDE bypasses ownership checks for chmod.
2625
containerSecurityContext:
27-
runAsUser: 0
26+
capabilities:
27+
add:
28+
- CHOWN
29+
- FOWNER
30+
- DAC_OVERRIDE
2831

2932
gitea:
3033
config:

my-apps/development/posthog/core/web.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
feature.node.kubernetes.io/cpu-cpuid.AVX2: "true"
2525
containers:
2626
- name: web
27-
image: posthog/posthog:35c95290a3e4da0dd38c7d4c756d4f9fc96f821c
27+
image: posthog/posthog:0c1bf64077d318019343b6894674713115f5effa
2828
command:
2929
- /bin/sh
3030
- -c
@@ -106,7 +106,7 @@ spec:
106106
cpu: 1200m
107107
memory: 4Gi
108108
limits:
109-
memory: 8Gi
109+
memory: 12Gi
110110
---
111111
apiVersion: v1
112112
kind: Service

0 commit comments

Comments
 (0)