Compare commits

...

18 Commits

Author SHA1 Message Date
Madhur Ahuja
5ab75cb856 Merge branch 'main' into cassandra 2024-01-20 10:05:51 +05:30
Madhur Ahuja
4144c1391a feat: lxc install for cassandra 2024-01-20 10:05:28 +05:30
Madhur Ahuja
2cee237972 feat: lxc install for cassandra 2024-01-20 09:50:13 +05:30
Madhur Ahuja
fa8f568d9f feat: lxc install for cassandra 2024-01-20 09:42:26 +05:30
Madhur Ahuja
132b8d50fb feat: add cassandra lxc 2024-01-18 23:26:20 +05:30
Madhur Ahuja
ad008b8ceb feat: add cassandra lxc 2024-01-18 23:16:04 +05:30
Madhur Ahuja
51fe3c6030 feat: add cassandra lxc 2024-01-18 23:12:51 +05:30
Madhur Ahuja
715a2ae17f feat: add cassandra lxc 2024-01-18 22:56:32 +05:30
Madhur Ahuja
b4d8f18baa feat: add cassandra lxc 2024-01-18 22:49:41 +05:30
Madhur Ahuja
a91ba00e11 feat: add cassandra lxc 2024-01-18 22:44:57 +05:30
Madhur Ahuja
fa150a31b9 feat: add cassandra lxc 2024-01-18 22:11:44 +05:30
Madhur Ahuja
71da1d7343 feat: add cassandra lxc 2024-01-18 21:32:42 +05:30
Madhur Ahuja
e366aa5259 feat: add cassandra lxc 2024-01-18 21:31:07 +05:30
Madhur Ahuja
5944f6a056 feat: add cassandra lxc 2024-01-18 21:25:31 +05:30
Madhur Ahuja
66099b51e3 feat: add cassandra lxc 2024-01-18 21:16:36 +05:30
Madhur Ahuja
7489123129 feat: add cassandra lxc 2024-01-18 21:03:27 +05:30
Madhur
2da8bfd922 feat: add cassandra lxc 2024-01-16 22:29:57 +05:30
Madhur
25cd94a4c8 feat: add cassandra lxc 2024-01-16 21:52:21 +05:30
2 changed files with 1953 additions and 0 deletions

66
ct/cassandra.sh Normal file
View File

@@ -0,0 +1,66 @@
#!/usr/bin/env bash
source <(curl -s https://raw.githubusercontent.com/madhur/Proxmox/cassandra/misc/build.func)
# Copyright (c) 2021-2024 tteck
# Author: tteck (tteckster)
# License: MIT
# https://github.com/tteck/Proxmox/raw/main/LICENSE
function header_info {
clear
cat <<"EOF"
______ __
/ ____/___ _______________ _____ ____/ /________ _
/ / / __ `/ ___/ ___/ __ `/ __ \/ __ / ___/ __ `/
/ /___/ /_/ (__ |__ ) /_/ / / / / /_/ / / / /_/ /
\____/\__,_/____/____/\__,_/_/ /_/\__,_/_/ \__,_/
EOF
}
header_info
echo -e "Loading..."
APP="Cassandra"
var_disk="4"
var_cpu="1"
var_ram="2048"
var_os="debian"
var_version="12"
VERBOSE="yes"
variables
color
catch_errors
function default_settings() {
CT_TYPE="1"
PW=""
CT_ID=$NEXTID
HN=$NSAPP
DISK_SIZE="$var_disk"
CORE_COUNT="$var_cpu"
RAM_SIZE="$var_ram"
BRG="vmbr0"
NET="dhcp"
GATE=""
APT_CACHER=""
APT_CACHER_IP=""
DISABLEIP6="no"
MTU=""
SD=""
NS=""
MAC=""
VLAN=""
SSH="no"
VERB="no"
echo_default
}
function update_script() {
header_info
if [[ ! -f /etc/systemd/system/cassandra.service ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
msg_error "There is currently no update path available."
exit
}
start
build_container
description
msg_ok "Completed Successfully!\n"

1887
install/cassandra-install.sh Normal file

File diff suppressed because it is too large Load Diff