|
@@ -9,6 +9,7 @@ Not yet released.
|
|
|
|
|
|
### 🚀 New features
|
|
### 🚀 New features
|
|
- [Cronjobs can now be enabled/disabled and run on demand](#cron-disable)
|
|
- [Cronjobs can now be enabled/disabled and run on demand](#cron-disable)
|
|
|
|
+- [System Contianers that allow OpenPanel users to run Docker and K8S](#system-containers)
|
|
- [Admin users can now be edited: rename, change password, suspend/unsuspend from OpenAdmin interface](#edit-admin-users)
|
|
- [Admin users can now be edited: rename, change password, suspend/unsuspend from OpenAdmin interface](#edit-admin-users)
|
|
- [OpenAdmin search for users, websites and options](#admin-search)
|
|
- [OpenAdmin search for users, websites and options](#admin-search)
|
|
- [Forbidden usernames list](#forbidden-username)
|
|
- [Forbidden usernames list](#forbidden-username)
|
|
@@ -168,3 +169,27 @@ This ensures that only the services that are actually used are running.
|
|
With these changes, **we managed to lower the memory usage of new user accounts from 680MB to only 10MB**.
|
|
With these changes, **we managed to lower the memory usage of new user accounts from 680MB to only 10MB**.
|
|
|
|
|
|
-----
|
|
-----
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+### System Containers
|
|
|
|
+
|
|
|
|
+Administrators now have the option to enable root access for OpenPanel users within their containers. This feature, initially disabled due to security concerns, has been re-enabled following recent enhancements to the stack, ensuring secure execution of root users within the containers.
|
|
|
|
+
|
|
|
|
+OpenPanel users can now securely operate Docker or Kubernetes within their OpenPanel accounts, enabling nested virtualization.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+Scheme:
|
|
|
|
+```bash
|
|
|
|
+OpenAdmin
|
|
|
|
+└── OpenPanel
|
|
|
|
+ ├── User #1
|
|
|
|
+ │ ├── Docker #1
|
|
|
|
+ │ ├── Docker #2
|
|
|
|
+ │ └── Docker #3
|
|
|
|
+ ├── User #2
|
|
|
|
+ │ ├── Docker #1
|
|
|
|
+ │ └── Docker #2
|
|
|
|
+ └── User #3
|
|
|
|
+ └── K8S
|
|
|
|
+
|
|
|
|
+```
|