HashiCorp
hashicorp.com › en › resources › getting-started-with-minikube-in-vagrant
Getting Started with Minikube in Vagrant
In this talk, developers will learn how to utilize Minikube in the development process and in an isolated environment built with Vagrant. They will also learn the setup process for deploying their services into their Minikube.
GitHub
github.com › mintel › vagrant-minikube
GitHub - mintel/vagrant-minikube: Minikube in Vagrant
Mostly used for demo's, tutorials and workshops. If you are using minikube for day to day tasks, install it using your package manager instead (and avoid the extra overhead of Vagrant).
Starred by 40 users
Forked by 36 users
Videos
Iofog
iofog.org › docs › 2 › getting-started › quick-start-minikube.html
Quick Start On Minikube and Vagrant | Getting Started | Eclipse ioFog
VAGRANT_BOX = 'ubuntu/bionic64' VM_NAME = 'iofog-demo' VM_USER = 'vagrant' REG_USER='John' Vagrant.configure("2") do |config| config.vm.box = VAGRANT_BOX config.vm.hostname = VM_NAME config.vm.provider "virtualbox" do |v| v.name = VM_NAME v.memory=2048 end config.vm.network "private_network", type: "dhcp" # Port forwarding for Agent config.vm.network "forwarded_port", guest: 54321, host: 54321, autocorrect: true # For each microservice port that you will want to access from your localhost, you need to add a port forwarding rule # I.E: ioFog tutorial deploys a web UI microservice on port 10102 # config.vm.network "forwarded_port", guest: 10102, host: 10102, autocorrect: true end
YouTube
youtube.com › hashicorp
Getting Started with Minikube in Vagrant - YouTube
In this talk, developers will learn how to utilize Minikube in the development process and in an isolated environment built with Vagrant. They will also lea...
Published March 8, 2023 Views 903
@avthart
avthart.com › posts › create-your-own-minikube-using-vagrant-and-kubeadm
Create your own 'Minikube' using Vagrant and Kubeadm • avthart
December 27, 2018 - It is very easy to start with Minikube for playing locally with Kubernetes and learning the basics. I’ve also followed Kubernetes The Hard Way by Keysel Hightower - this guide is optimized for learning, which means taking the long route to ensure you understand each task required to bootstrap a Kubernetes cluster. Also check my exam tips on getting certified. In this post, I will guide you (“the easy way”) setting up your own local kubernetes environment using Vagrant ...
GitHub
github.com › mintel › vagrant-minikube › blob › master › Vagrantfile
vagrant-minikube/Vagrantfile at master · mintel/vagrant-minikube
DSTDIR = ENV['DSTDIR'] || "/home/vagrant/data" · # Management · GROWPART = ENV['GROWPART'] || "true" · # Minikube Variables · KUBERNETES_VERSION = ENV['KUBERNETES_VERSION'] || "1.16.3" · # Common installation script · $installer = <<SCRIPT · #!/bin/bash ·
Author mintel
Zlopez
zlopez.github.io › Running-Minikube-in-Vagrant
Running Minikube in Vagrant
The reload is done by vagrant reload. ... There are few dependencies that needs to be installed for Minikube. Docker is needed for Minikube to run inside it and kubernetes-client package provides kubectl command which allows you to interact with Minikube cluster.
Iofog
iofog.org › docs › 1.3.0 › getting-started › minikube.html
Minikube and Vagrant, the Kubernetes local stack | Getting Started | Eclipse ioFog
--- apiVersion: iofog.org/v1 kind: Agent metadata: name: local-agent spec: host: 172.28.128.11 ssh: user: vagrant keyFile: /Users/pixcell/Work/Edgeworx/iofogctl/.vagrant/machines/default/virtualbox/private_key ... Congratulations, you are all set to deploy applications on your local minikube and vagrant setup !
Fabric8
fabric8.io › guide › getStarted › vagrant-kubernetes.html
Vagrant | Fabric8 Documentation
For the best local developer experience on Kubernetes and OpenShift fabric8 recommends minikube and minishift ... This is the fastest way to get going with Fabric8 and Kubernetes on your laptop. ... $ git clone https://github.com/fabric8io/fabric8-installer.git $ cd fabric8-installer/vagrant/kub...
GitHub
github.com › flysteur-dev › minikube-vagrant
GitHub - flysteur-dev/minikube-vagrant: Minikube cluster with multiple nodes in a vagrant box accessible from the host
vagrant ssh kubectl apply -f https://raw.githubusercontent.com/flysteur-dev/minikube-vagrant/master/examples/ingress.yaml
Author flysteur-dev
GitHub
github.com › kkasai › vagrant-minikube
GitHub - kkasai/vagrant-minikube · GitHub
vagrant up vagrant ssh export MINIKUBE_WANTUPDATENOTIFICATION=false export MINIKUBE_WANTREPORTERRORPROMPT=false export MINIKUBE_HOME=$HOME export CHANGE_MINIKUBE_NONE_USER=true mkdir -p $HOME/.kube touch $HOME/.kube/config export KUBECONFIG=$HOME/.kube/config sudo -E /usr/local/bin/minikube start --vm-driver=none --extra-config=kubeadm.ignore-preflight-errors=NumCPU
Starred by 3 users
Forked by 2 users
HashiCorp
portal.cloud.hashicorp.com › vagrant › discover › mrvantage › centos7-minikube
centos7-minikube
We cannot provide a description for this page right now