Difference between revisions of "MLRun Kubernetes installation"

From wikieduonline
Jump to navigation Jump to search
(Created page with " kubectl create namespace mlrun helm repo add v3io-stable https://v3io.github.io/helm-charts/stable")
 
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
  kubectl create namespace mlrun
 
  kubectl create namespace mlrun
 
  [[helm repo add]] v3io-stable https://v3io.github.io/helm-charts/stable
 
  [[helm repo add]] v3io-stable https://v3io.github.io/helm-charts/stable
 +
 +
[[Create secret]]
 +
kubectl --namespace mlrun [[create secret docker-registry]] registry-credentials \
 +
    --docker-server <your-registry-server> \
 +
    --docker-username <your-username> \
 +
    --docker-password <your-password> \
 +
    --docker-email <your-email>
 +
 +
helm --namespace mlrun \
 +
    install mlrun-kit \
 +
    --wait \
 +
    [[--set]] global.registry.url=<registry-url> \
 +
    --set global.registry.secretName=registry-credentials \
 +
    v3io-stable/mlrun-kit
 +
 +
== Related ==
 +
* [[Kubeflow]]
 +
 +
== See also ==
 +
* {{MLRun}}
 +
 +
[[Category:MLRun]]

Latest revision as of 06:07, 10 August 2022

kubectl create namespace mlrun
helm repo add v3io-stable https://v3io.github.io/helm-charts/stable

Create secret

kubectl --namespace mlrun create secret docker-registry registry-credentials \
   --docker-server <your-registry-server> \
   --docker-username <your-username> \
   --docker-password <your-password> \
   --docker-email <your-email>
helm --namespace mlrun \
   install mlrun-kit \
   --wait \
   --set global.registry.url=<registry-url> \
   --set global.registry.secretName=registry-credentials \
   v3io-stable/mlrun-kit

Related[edit]

See also[edit]

Advertising: