-
Notifications
You must be signed in to change notification settings - Fork 705
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
Refactor manual-install Compose.yml: Simplify Environment Variables #5459
Conversation
- Removed explicit values for environment variables in `docker-compose.yml`. - Utilized default values for better flexibility and maintainability. - Updated network configuration to use the default bridge driver. Note: Using `network: default` is sufficient within Docker Compose; there's no need to create a separate `nextcloud-network` for all hosts. 🚀 Signed-off-by: lll <[email protected]>
Co-authored-by: Jean-Yves <[email protected]> Signed-off-by: lll <[email protected]>
Co-authored-by: Jean-Yves <[email protected]> Signed-off-by: lll <[email protected]>
`update-yaml.sh`の処理の追加を - .services[].networks の削除 - =%%を削除する特殊な処理 これにより、 すべてのサービスをdefaultのネットワークに接続させることができ、 変数の簡略化が見込めます Signed-off-by: lll <[email protected]>
Signed-off-by: lll <[email protected]> Co-Authored-By: Jean-Yves <[email protected]>
nextcloud-aio-helm-chart/templates/nextcloud-aio-nextcloud-deployment.yaml
Outdated
Show resolved
Hide resolved
Signed-off-by: lll <[email protected]>
@flll the script update-helm.sh is currently producing this output: https://github.com/nextcloud/all-in-one/pull/5458/files. It does not look right and needs to be adjusted. |
I'm sorry, I made a mistake in my operations. |
All good, no problem! :) I've restored the change. Now you can go can follow the instructions from #5393 (comment) |
nextcloud-aio-helm-chart/templates/nextcloud-aio-nextcloud-deployment.yaml
Outdated
Show resolved
Hide resolved
There is this PR now where you can check the changes that you are doing to this this pr (5459) |
- [update-yaml.sh] Change sed command option from -e to -E - [update-helm.sh] Add check for docker image tag as first argument, exit 2 if missing - [update-helm.sh] Modify snap command to run with sudo - [update-helm.sh] Add new sed commands: - [sed] Convert `- AB_CD_EFG` to `- AB_CD_EFG=${AB_CD_EFG}` - [sed] Apply conversion only to uppercase variables - [sed] Exclude NET_RAW, SYS_NICE, NET_ADMIN, and MKNOD capabilities from conversion
This reverts commit 57d03d8.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks a lot! 🤗
Local copy of #5393