-
Notifications
You must be signed in to change notification settings - Fork 228
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
use clickhouse-server container image instead of clickhouse-client #1082
Conversation
CaptTofu
commented
Jan 30, 2025
- clickhouse-client container for the cron job wouldn't run in aws-dev-eu, which uses arm64, switched to clickhouse-server container and it works
- Added more information and elaboration for the backup process using the operator
Re-created this PR because when I rebased my fork with master, somehow it pulled in recent changes which showed up in the original PR. |
d85fbce
to
26376c4
Compare
26376c4
to
7b49058
Compare
Pull Request Test Coverage Report for Build 13054457545Details
💛 - Coveralls |
@@ -319,7 +323,7 @@ spec: | |||
restartPolicy: Never | |||
containers: | |||
- name: run-backup-cron | |||
image: clickhouse/clickhouse-client:latest | |||
image: clickhouse/clickhouse-server:latest |
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.
old clickhouse-client
should works with new clickhouse-server
which kind of issue you got here?
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.
ok. got it
https://hub.docker.com/r/clickhouse/clickhouse-client/tags
doesn't support arm64
let's add comment here
thanks for contribution |
Signed-off-by: Slach <[email protected]>