fix up repo stuff

pull/10408/head
Sharif Elgamal 2021-02-17 10:32:48 -08:00
parent 9aee2bd46a
commit fd897f4f23
2 changed files with 4 additions and 2 deletions

View File

@ -27,11 +27,13 @@ const (
Version = "v0.0.17-1613582775-10408"
// SHA of the kic base image
baseImageSHA = "1537fe47d39640aa11d6c819fe39cbba6e250872c8fe2bd7701c5171a32fbc4e"
// The name of the GCR kicbase repository
gcrRepo = "gcr.io/k8s-minikube/kicbase-builds"
)
var (
// BaseImage is the base image is used to spin up kic containers. it uses same base-image as kind.
BaseImage = fmt.Sprintf("gcr.io/k8s-minikube/kicbase:%s@sha256:%s", Version, baseImageSHA)
BaseImage = fmt.Sprintf("%s:%s@sha256:%s", gcrRepo, Version, baseImageSHA)
// FallbackImages are backup base images in case gcr isn't available
FallbackImages = []string{

View File

@ -26,7 +26,7 @@ minikube start [flags]
--apiserver-names strings A set of apiserver names which are used in the generated certificate for kubernetes. This can be used if you want to make the apiserver available from outside the machine
--apiserver-port int The apiserver listening port (default 8443)
--auto-update-drivers If set, automatically updates drivers to the latest version. Defaults to true. (default true)
--base-image string The base image to use for docker/podman drivers. Intended for local development. (default "gcr.io/k8s-minikube/kicbase:v0.0.17-1613582775-10408@sha256:1537fe47d39640aa11d6c819fe39cbba6e250872c8fe2bd7701c5171a32fbc4e")
--base-image string The base image to use for docker/podman drivers. Intended for local development. (default "gcr.io/k8s-minikube/kicbase-builds:v0.0.17-1613582775-10408@sha256:1537fe47d39640aa11d6c819fe39cbba6e250872c8fe2bd7701c5171a32fbc4e")
--cache-images If true, cache docker images for the current bootstrapper and load them into the machine. Always false with --driver=none. (default true)
--cni string CNI plug-in to use. Valid options: auto, bridge, calico, cilium, flannel, kindnet, or path to a CNI manifest (default: auto)
--container-runtime string The container runtime to be used (docker, cri-o, containerd). (default "docker")