Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi Team. Why Am Getting This Error K8S Helm

Hi team. why am getting this error k8s helm

jithu@edgebricks:~/Downloads$ cat <<EOF | kind create cluster --config=config2.txt
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha3
nodes:
- role: control-plane
  extraPortMappings:
  - containerPort: 30008
    hostPort: 30008
    listenAddress: "10.9.1.185"
    protocol: TCP
  - containerPort: 30080
    hostPort: 30080
    listenAddress: "10.9.1.185"
    protocol: TCP
  - containerPort: 30081
    hostPort: 30081
    listenAddress: "10.9.1.185"
    protocol: TCP
extraMounts:
- hostPath: /tmp/clearml-kind/
  containerPath: /var/local-path-provisioner
EOF

helm install clearml allegroai/clearml
ERROR: failed to create cluster: unknown apiVersion: v1
Error: INSTALLATION FAILED: failed to download "allegroai/clearml"
  
  
Posted 10 months ago
Votes Newest

Answers 3


helm repo add allegroai 
  
  
Posted 10 months ago

@<1523704207914307584:profile|ObedientToad56> already i added

  
  
Posted 10 months ago

This is because you need to add the helm repo first.

  
  
Posted 10 months ago
511 Views
3 Answers
10 months ago
10 months ago
Tags