Skip to content

nathanmyles/minikube-local-infrastructure

Repository files navigation

minikube-local-infrastructure

Base infrastructure project for kubernetes. Can be used for local development when working in a kubernetes environment. Allows you to stand up infrastructure components, so you can deploy your services into the cluster for testing locally.

Support Services

Prerequisites

Workflow

  • Start minikube make start

  • Start services: make up

  • Restart all services: make restart

  • Restart all services and delete all data: make restart-clean-data

  • Stop services: make down

  • Stop minikube make stop

More commands in the Makefile

Export minikube docker environment

Use this command: eval $(minikube -p minikube docker-env)

This will allow minikube to have access to the images you build by using it's docker instance. You need to run it in each shell you are building containers in.

Pull images from a private repo

Use this command: make enable-private-repo

Minikube supports pulling images from several container registries. If you are pulling from an unsupported registry, then you can use the make enable-private-repo command to allow minikube to pull images from it. This will registry a kubernetes secret that you can pull in your manifests to allow access to your private registry.

Example of using the secret in a manifest:

spec:
  template:
    spec:
      imagePullSecrets:
        - name: ${secret_name}

About

Local infrastructure for developing microservices with minikube

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published