-
Notifications
You must be signed in to change notification settings - Fork 9
dbeaver/dbeaver-devops#1604 Added a warning in the case when the user… #163
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
base: devel
Are you sure you want to change the base?
Conversation
… updates 24.3- to 25.1+ with an explanation what happens and a recommendation to upgrade to 23.4 first and then upgrade to the desired version 25.1+. Added insruction how to configure docker bind mounts
…2.0+, supplemented version update procedure
…igration from bind mount to docker mount
…aces in services
…dcoded in services
AWS/ecs-fargate/main.tf
Outdated
| name = "${var.deployment_id}-init-rm-permissions" | ||
| image = "busybox:latest" | ||
| essential = false | ||
| command = ["sh", "-c", "mkdir -p /workspace/.metadata && chown -R 8978:8978 /workspace && chmod -R 755 /workspace"] |
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.
append failed state logging:
command && command || echo "failed: cant chown
use list style for commands
[
"1",
"2",
...
]
AWS/ecs-fargate/main.tf
Outdated
| name = "${var.deployment_id}-init-dc-permissions" | ||
| image = "busybox:latest" | ||
| essential = false | ||
| command = ["sh", "-c", "mkdir -p /workspace/.metadata /conf/keys && chown -R 8978:8978 /workspace /certificates /conf/keys && chmod -R 755 /workspace /certificates /conf/keys"] |
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.
append failed state logging:
command && command || echo "failed: cant chown
use list style for commands
[
"1",
"2",
...
]
… updates 24.3- to 25.1+ with an explanation what happens and a recommendation to upgrade to 23.4 first and then upgrade to the desired version 25.1+. Added insruction how to configure docker bind mounts