acorn-io / runtime

A simple application deployment framework built on Kubernetes
https://docs.acorn.io/
Apache License 2.0
1.13k stars 100 forks source link

add: user directive in Acornfile (e.g. `user: "1000:1000"`) (#718) #2334

Closed iwilltry42 closed 10 months ago

iwilltry42 commented 10 months ago

This translates to containerSecurityContext.RunAsUser|RunAsGroup

Ref #718

Example:

containers: foo: {
  image: "some/image:v1"
  user: "1000:1000"
}

Checklist