tangled
alpha
login
or
join now
evan.jarrett.net
/
loom
10
fork
atom
Kubernetes Operator for Tangled Spindles
10
fork
atom
overview
issues
pulls
pipelines
fix init container
evan.jarrett.net
3 months ago
da57e777
687af069
verified
This commit was signed with the committer's
known signature
.
evan.jarrett.net
SSH Key Fingerprint:
SHA256:bznk0uVPp7XFOl67P0uTM1pCjf2A4ojeP/lsUE7uauQ=
2/2
workflow-amd64.yaml
success
4m 6s
workflow-arm64.yaml
success
15m 30s
+2
-1
1 changed file
expand all
collapse all
unified
split
internal
jobbuilder
job_template.go
+2
-1
internal/jobbuilder/job_template.go
reviewed
···
230
230
AllowPrivilegeEscalation: &[]bool{false}[0],
231
231
// Note: This init container runs as root to create the passwd/group files
232
232
// All subsequent containers run as UID 1000 (non-root)
233
233
-
RunAsUser: &[]int64{0}[0],
233
233
+
RunAsNonRoot: &[]bool{false}[0],
234
234
+
RunAsUser: &[]int64{0}[0],
234
235
Capabilities: &corev1.Capabilities{
235
236
Drop: []corev1.Capability{"ALL"},
236
237
},