Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | podman: add new option --cgroups=no-conmon | Giuseppe Scrivano | 2020-01-16 |
| | | | | | | | | it allows to disable cgroups creation only for the conmon process. A new cgroup is created for the container payload. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com> | ||
* | make lint: enable gocritic | Valentin Rothberg | 2020-01-13 |
| | | | | | | | `gocritic` is a powerful linter that helps in preventing certain kinds of errors as well as enforcing a coding style. Signed-off-by: Valentin Rothberg <rothberg@redhat.com> | ||
* | fix lint - pkg/spec | Valentin Rothberg | 2020-01-08 |
| | | | | Signed-off-by: Valentin Rothberg <rothberg@redhat.com> | ||
* | Split up create config handling of namespaces and security | Peter Hunt | 2019-11-07 |
As it stands, createconfig is a huge struct. This works fine when the only caller is when we create a container with a fully created config. However, if we wish to share code for security and namespace configuration, a single large struct becomes unweildy, as well as difficult to configure with the single createConfigToOCISpec function. This PR breaks up namespace and security configuration into their own structs, with the eventual goal of allowing the namespace/security fields to be configured by the pod create cli, and allow the infra container to share this with the pod's containers. Signed-off-by: Peter Hunt <pehunt@redhat.com> |