chore(cli): removing deprecated checks
Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
parent
29d40839f8
commit
415971b022
1 changed files with 4 additions and 4 deletions
|
|
@ -157,22 +157,22 @@ function install_openreplay() {
|
|||
}
|
||||
|
||||
function main() {
|
||||
[[ x$SKIP_K8S_INSTALL == "x1" ]] && {
|
||||
[[ $SKIP_K8S_INSTALL == "1" ]] && {
|
||||
info "Skipping Kuberntes installation"
|
||||
} || {
|
||||
install_k8s
|
||||
}
|
||||
[[ x$SKIP_K8S_TOOLS == "x1" ]] && {
|
||||
[[ $SKIP_K8S_TOOLS == "1" ]] && {
|
||||
info "Skipping Kuberntes tools installation"
|
||||
} || {
|
||||
install_tools
|
||||
}
|
||||
[[ x$SKIP_ROTATE_SECRETS == "x1" ]] && {
|
||||
[[ $SKIP_ROTATE_SECRETS == "1" ]] && {
|
||||
info "Skipping random password generation"
|
||||
} || {
|
||||
create_passwords
|
||||
}
|
||||
[[ x$SKIP_OR_INSTALL == "x1" ]] && {
|
||||
[[ $SKIP_OR_INSTALL == "1" ]] && {
|
||||
info "Skipping OpenReplay installation"
|
||||
} || {
|
||||
set_permissions
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue