|
1 | 1 | { |
2 | 2 | "Name": "official/usermgt", |
3 | | - "Version": "1.20.0-1", |
| 3 | + "Version": "1.20.0-2", |
4 | 4 | "DisplayName": "User Management", |
5 | 5 | "Description": "User and Group Management.", |
6 | 6 | "Category": "Administration Apps", |
|
49 | 49 | } |
50 | 50 | ], |
51 | 51 | "Configuration": [ |
| 52 | + { |
| 53 | + "Name": "container_config/cpu_core_limit", |
| 54 | + "Description": "Limits the container's CPU core usage. Use a positive floating value describing a fraction of 1 CPU core. When you define a value of '0.5', you are requesting half as much CPU time compared to if you asked for '1.0' CPU.", |
| 55 | + "Optional": true |
| 56 | + }, |
| 57 | + { |
| 58 | + "Name": "container_config/cpu_core_request", |
| 59 | + "Description": "Requests the container's minimal CPU core requirement. Use a positive floating value describing a fraction of 1 CPU core. When you define a value of '0.5', you are requesting half as much CPU time compared to if you asked for '1.0' CPU.", |
| 60 | + "Optional": true |
| 61 | + }, |
| 62 | + { |
| 63 | + "Name": "container_config/memory_request", |
| 64 | + "Description": "Requests the container's minimal memory requirement. Use a positive integer value followed by one of these units [b,k,m,g] (byte, kibibyte, mebibyte, gibibyte).", |
| 65 | + "Optional": true, |
| 66 | + "Validation": { |
| 67 | + "Type": "BINARY_MEASUREMENT" |
| 68 | + } |
| 69 | + }, |
| 70 | + { |
| 71 | + "Name": "container_config/storage_limit", |
| 72 | + "Description": "Limits the container's ephemeral storage usage. Use a positive integer value followed by one of these units [b,k,m,g] (byte, kibibyte, mebibyte, gibibyte).", |
| 73 | + "Optional": true, |
| 74 | + "Validation": { |
| 75 | + "Type": "BINARY_MEASUREMENT" |
| 76 | + } |
| 77 | + }, |
| 78 | + { |
| 79 | + "Name": "container_config/storage_request", |
| 80 | + "Description": "Requests the container's minimal ephemeral storage requirement. Use a positive integer value followed by one of these units [b,k,m,g] (byte, kibibyte, mebibyte, gibibyte).", |
| 81 | + "Optional": true, |
| 82 | + "Validation": { |
| 83 | + "Type": "BINARY_MEASUREMENT" |
| 84 | + } |
| 85 | + }, |
52 | 86 | { |
53 | 87 | "Name": "pwd_reset_selected_by_default", |
54 | 88 | "Description": "Specifies whether the checkbox for the password change at the next login attribute should be preselected by default ", |
|
65 | 99 | { |
66 | 100 | "Name": "mail/sender", |
67 | 101 | "Description": "Email address to use as sender of the User Management dogu", |
| 102 | + "Default": "no-reply@cloudogu.com", |
68 | 103 | "Optional": true |
69 | 104 | }, |
70 | 105 | { |
71 | 106 | "Name": "mail/import/subject", |
72 | 107 | "Description": "The subject of the mail, which is send when a user is imported via the csv import feature", |
| 108 | + "Default": "Ihr neuer Cloudogu Ecosystem Account", |
73 | 109 | "Optional": true |
74 | 110 | }, |
75 | 111 | { |
76 | | - "Name": "mail/import/content", |
| 112 | + "Name": "mail/import/message", |
77 | 113 | "Description": "The content of the mail, which is send when a User is imported via the csv import feature. Within the content the placeholders ${username} and ${password} need to be included.", |
| 114 | + "Default": "Willkommen im Cloudogu Ecosystem!\n\nDies ist Ihr Benutzeraccount:\n\nBenutzername: ${username}\nPasswort: ${password}\n\nBei der ersten Anmeldung müssen Sie das Passwort ändern.", |
78 | 115 | "Optional": true |
79 | 116 | }, |
80 | 117 | { |
81 | 118 | "Name": "mail/import/max_retries", |
82 | 119 | "Description": "The number of maximum retries to send a mail, before an error occurs", |
| 120 | + "Default": "10", |
83 | 121 | "Optional": true |
84 | 122 | }, |
85 | 123 | { |
86 | 124 | "Name": "mail/import/max_retry_delay", |
87 | 125 | "Description": "The maximum delay for sending an email as part of a retry. By using a backoff strategy, the waiting time increases for each failed send until max_retry_delay is reached before the mail is sent again.", |
| 126 | + "Default": "3600", |
88 | 127 | "Optional": true |
89 | 128 | }, |
90 | 129 | { |
91 | 130 | "Name": "mail/import/retry_interval", |
92 | 131 | "Description": "The interval in which failed mails will be checked to be sent again.", |
| 132 | + "Default": "30", |
93 | 133 | "Optional": true |
94 | 134 | }, |
95 | 135 | { |
|
0 commit comments