Kubernetes Install issue
See original GitHub issueHi,
I’m trying to install nboost in Kubernetes cluster using below command,
helm install nboost --set replicaCount=3 --set service.type=ClusterIP --set args.uhost=elasticsearch-elasticsearch-coordinating-only nboost/nboost
Its crashing,
[nltk_data] Downloading package stopwords to /root/nltk_data...
[nltk_data] Unzipping corpora/stopwords.zip.
[nltk_data] Downloading package punkt to /root/nltk_data...
[nltk_data] Unzipping tokenizers/punkt.zip.
usage: nboost [-h] [--debug DEBUG] [--no_rerank NO_RERANK] [--search_route SEARCH_ROUTE]
[--query_path QUERY_PATH] [--topk_path TOPK_PATH] [--default_topk DEFAULT_TOPK]
[--cvalues_path CVALUES_PATH] [--cids_path CIDS_PATH] [--choices_path CHOICES_PATH]
[--query_prep QUERY_PREP] [--verbose VERBOSE] [--host HOST] [--port PORT]
[--uhost UHOST] [--uport UPORT] [--ussl USSL] [--delim DELIM] [--lr LR]
[--max_seq_len MAX_SEQ_LEN] [--bufsize BUFSIZE] [--batch_size BATCH_SIZE]
[--topn TOPN] [--workers WORKERS] [--data_dir DATA_DIR] [--model MODEL]
[--model_dir MODEL_DIR] [--qa QA] [--prerank PRERANK] [--qa_model QA_MODEL]
[--qa_model_dir QA_MODEL_DIR] [--filter_results FILTER_RESULTS]
nboost: error: unrecognized arguments: --config=elasticsearch --multiplier=5 --rerank=true --search_path=/.*/_search
Can you please help.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:7 (1 by maintainers)
Top Results From Across the Web
Troubleshooting kubeadm | Kubernetes
As with any program, you might run into an error installing or running kubeadm. This page lists some common failure scenarios and have ......
Read more >Troubleshooting installation issues on Kubernetes - IBM
Use this information to troubleshoot installation issues with the IBM App Connect Operator on Kubernetes.
Read more >Troubleshooting installation issues | Kubernetes
This recipe showed you how to quickly troubleshoot common Kubernetes cluster issues. In step 1, when the kubectl cluster-info command was executed with...
Read more >Troubleshooting Your Kubernetes Cluster - Vertica
Helm Install Failure ... The error indicates that you have not met the TLS prerequisite for the admission controller webhook. To resolve this...
Read more >How to Install Kubernetes on Ubuntu 18.04 - phoenixNAP
Step 1: Install Docker · 1. Update the package list with the command: sudo apt-get update.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Just ran into this too. you can set
config: null
multiplier: null
rerank: null
search_path: null
in helm values.yaml or use--set args.config=null --set args.multiplier=null --set args.rerank=null --set args.search_path=null
on the command line for helm installMost likely the same bug as #61