Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow to set uid and gid instead of owner and group. #637

Merged
merged 2 commits into from
Oct 23, 2024

Commits on Oct 23, 2024

  1. Allow to set uid and gid instead of owner and group. No checks will b…

    …e performed when uid and gid are set.
    
    ```
    sops.secrets = {
      sslCertificate = {
        sopsFile = ./secrets.yaml;
        owner = "";
        group = "";
        uid = config.containers."nginx".config.users.users."nginx".uid;
        gid = config.containers."nginx".config.users.groups."nginx".gid;
      };
      sslCertificateKey = {
        sopsFile = ./secrets.yaml;
        owner = "";
        group = "";
        uid = config.containers."nginx".config.users.users."nginx".uid;
        gid = config.containers."nginx".config.users.groups."nginx".gid;
      };
    };
    ```
    
    Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
    munnik and Mic92 committed Oct 23, 2024
    Configuration menu
    Copy the full SHA
    5c8e8eb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    018c72f View commit details
    Browse the repository at this point in the history