Apply suggestions from code review
Co-authored-by: Steven Powell <44844360+spowelljr@users.noreply.github.com>pull/15452/head
parent
e1f77e8f40
commit
df8154a5e5
|
@ -309,15 +309,23 @@ docker-cli install instructions: https://minikube.sigs.k8s.io/docs/tutorials/doc
|
|||
}
|
||||
cr := co.Config.KubernetesConfig.ContainerRuntime
|
||||
// nerdctld supports amd64 and arm64
|
||||
if !dockerEnvSupported(cr, driverName) {
|
||||
exit.Message(reason.Usage, `The docker-env command is only compatible with the "docker" or "containerd" runtime on amd64/arm64 architectures, but this cluster is configured to use the "{{.runtime}}" runtime on {{.arch}}.`,
|
||||
out.V{"runtime": cr, "arch": runtime.GOARCH})
|
||||
if err := dockerEnvSupported(cr, driverName); err != nil {
|
||||
exit.Message(reason.Usage, err.Error())
|
||||
}
|
||||
|
||||
// for the sake of docker-env command, download and start nerdctl and nerdctld
|
||||
// for the sake of docker-env command, start nerdctl and nerdctld
|
||||
if cr == constants.Containerd {
|
||||
out.WarningT("Using the docker-env command with the containerd runtime is a highly experimental feature, please provide feedback or contribute to make it better")
|
||||
startNerdctld()
|
||||
|
||||
// docker-env on containerd depends on nerdctld (https://github.com/afbjorklund/nerdctld) as "docker" daeomn
|
||||
// and nerdctld daemon must be used with ssh connection (it is set in kicbase image's Dockerfile)
|
||||
// so directly set --ssh-host --ssh-add to true, even user didn't specify them
|
||||
sshAdd = true
|
||||
sshHost = true
|
||||
// user also need to execute ssh-agent bash and minikube ssh-host --append-known before this
|
||||
// so remind them to do so
|
||||
out.WarningT("Please ensure you have executed 'ssh-agent bash' and 'minikube ssh-host --append-known' in this shell before using docker-env on containerd. Ignore this message if you have done it")
|
||||
}
|
||||
|
||||
r := co.CP.Runner
|
||||
|
@ -641,18 +649,18 @@ func tryDockerConnectivity(bin string, ec DockerEnvConfig) ([]byte, error) {
|
|||
return c.CombinedOutput()
|
||||
}
|
||||
|
||||
func dockerEnvSupported(containerRuntime, driverName string) bool {
|
||||
if containerRuntime != constants.Docker && containerRuntime != constants.Containerd {
|
||||
return false
|
||||
}
|
||||
func dockerEnvSupported(containerRuntime, driverName string) error {
|
||||
if runtime.GOARCH != "amd64" && runtime.GOARCH != "arm64" {
|
||||
return false
|
||||
return fmt.Errorf("the docker-env command only supports amd64 & arm64 architectures")
|
||||
}
|
||||
if containerRuntime != constants.Docker && containerRuntime != constants.Containerd {
|
||||
return fmt.Errorf("the docker-env command only supports the docker and containerd runtimes")
|
||||
}
|
||||
// we only support containerd-env on the Docker driver
|
||||
if containerRuntime == constants.Containerd && driverName != driver.Docker {
|
||||
return false
|
||||
return fmt.Errorf("the docker-env command only supports the containerd runtime with the docker driver")
|
||||
}
|
||||
return true
|
||||
return nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
|
|
|
@ -142,7 +142,7 @@ RUN clean-install \
|
|||
|
||||
# Install nerdctl and nerdctld
|
||||
RUN export ARCH=$(dpkg --print-architecture) \
|
||||
&& if [ "$ARCH" == "amd64" ] || [ "$ARCH" == "arm64" ]; then \
|
||||
&& if [ "$ARCH" = 'amd64' ] || [ "$ARCH" = 'arm64' ]; then \
|
||||
echo "Installing nerdctl and nerdctld ..." && \
|
||||
curl -L --retry 5 --output /tmp/nerdctl.tgz "https://github.com/containerd/nerdctl/releases/download/v${NERDCTL_VERSION}/nerdctl-${NERDCTL_VERSION}-linux-$ARCH.tar.gz" &&\
|
||||
tar -C /usr/local/bin -xzvf /tmp/nerdctl.tgz &&\
|
||||
|
|
|
@ -24,10 +24,10 @@ import (
|
|||
|
||||
const (
|
||||
// Version is the current version of kic
|
||||
Version = "v0.0.39-1687538068-16731"
|
||||
Version = "v0.0.39-1686675164-15452"
|
||||
|
||||
// SHA of the kic base image
|
||||
baseImageSHA = "d08658afefe15fb29b5fcdace4d88182b61941d4fc6089c962f9de20073de953"
|
||||
baseImageSHA = "1b5dd777e073cc98bda2dc463cdc550cd7c5b3dcdbff2b89d285943191470e34"
|
||||
// The name of the GCR kicbase repository
|
||||
gcrRepo = "gcr.io/k8s-minikube/kicbase-builds"
|
||||
// The name of the Dockerhub kicbase repository
|
||||
|
|
|
@ -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-builds:v0.0.39-1687538068-16731@sha256:d08658afefe15fb29b5fcdace4d88182b61941d4fc6089c962f9de20073de953")
|
||||
--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.39-1686675164-15452@sha256:1b5dd777e073cc98bda2dc463cdc550cd7c5b3dcdbff2b89d285943191470e34")
|
||||
--binary-mirror string Location to fetch kubectl, kubelet, & kubeadm binaries from.
|
||||
--cache-images If true, cache docker images for the current bootstrapper and load them into the machine. Always false with --driver=none. (default true)
|
||||
--cert-expiration duration Duration until minikube certificate expiration, defaults to three years (26280h). (default 26280h0m0s)
|
||||
|
|
|
@ -168,7 +168,7 @@ func TestForceSystemdEnv(t *testing.T) {
|
|||
// TestDockerEnvContainerd makes sure that minikube docker-env command works when the runtime is containerd
|
||||
func TestDockerEnvContainerd(t *testing.T) {
|
||||
t.Log("running with", ContainerRuntime(), DockerDriver(), runtime.GOOS, runtime.GOARCH)
|
||||
if ContainerRuntime() != constants.Containerd || !DockerDriver() || runtime.GOOS != "linux" || runtime.GOARCH != "amd64" {
|
||||
if ContainerRuntime() != constants.Containerd || !DockerDriver() || runtime.GOOS != "linux" {
|
||||
t.Skip("skipping: TestDockerEnvContainerd can only be run with the containerd amd64 runtime on Docker driver")
|
||||
}
|
||||
profile := UniqueProfileName("dockerenv")
|
||||
|
|
|
@ -250,8 +250,6 @@
|
|||
"External Adapter on which external switch will be created if no external switch is found. (hyperv driver only)": "Externer Adapter, auf dem der externe Switch erzeugt wird, wenn kein externer Switch gefunden wurde. (nur hyperv Treiber)",
|
||||
"Fail check if container paused": "Schlägt fehl, wenn der Container pausiert ist",
|
||||
"Failed removing pid from pidfile: {{.error}}": "",
|
||||
"Fail to copy file nerctl": "",
|
||||
"Fail to copy file nerctld": "",
|
||||
"Failed runtime": "Runtime fehlgeschlagen",
|
||||
"Failed to build image": "Bau des Images fehlgeschlagen",
|
||||
"Failed to cache and load images": "Cachen und laden der Images fehlgeschlagen",
|
||||
|
@ -490,6 +488,7 @@
|
|||
"Please also attach the following file to the GitHub issue:": "Bitte hängen Sie die folgende Datei an das GitHub Issue an:",
|
||||
"Please create a cluster with bigger disk size: `minikube start --disk SIZE_MB` ": "Bitte erstellen Sie einen Cluster mit größerer Disk-Größe: `minikube start --disk SIZE_MB` ",
|
||||
"Please either authenticate to the registry or use --base-image flag to use a different registry.": "Entweder authentifizieren Sie sich bitte bei der Registry oder verwenden Sie den --base-image Parameter um eine andere Registry zu verwenden.",
|
||||
"Please ensure you have executed 'ssh-agent bash' and 'minikube ssh-host --append-known' in this shell before using docker-env on containerd. Ignore this message if you have done it": "",
|
||||
"Please enter a value:": "Bitte geben Sie einen Wert ein:",
|
||||
"Please free up disk or prune images.": "Bitte geben Sie Plattenplatz frei oder löschen Sie unbenutzte Images (prune)",
|
||||
"Please increase Desktop's disk size.": "Bitte erhöhen Sie die Plattengröße von Desktop",
|
||||
|
@ -714,7 +713,6 @@
|
|||
"The cri socket path to be used": "Der zu verwendende Cri-Socket-Pfad",
|
||||
"The cri socket path to be used.": "Der zu verwendende Cri-Socket-Pfad.",
|
||||
"The docker-env command is incompatible with multi-node clusters. Use the 'registry' add-on: https://minikube.sigs.k8s.io/docs/handbook/registry/": "Der docker-env Befehl ist inkompatibel mit multi-node Clustern. Bitte verwende das 'registry' Addon: https://minikube.sigs.k8s.io/docs/handbook/registry/",
|
||||
"The docker-env command is only compatible with the \"docker\" or \"containerd\" runtime, but this cluster was configured to use the \"{{.runtime}}\" runtime.": "",
|
||||
"The docker-env command is only compatible with the \"docker\" runtime, but this cluster was configured to use the \"{{.runtime}}\" runtime.": "Der docker-env Befehl ist nur mit der \"Docker\" Laufzeitsumgebung kompatibel, aber dieser Cluster ist für die\"{{.runtime}}\" Laufzeitumgebung konfiguriert.",
|
||||
"The driver '{{.driver}}' is not supported on {{.os}}/{{.arch}}": "Der Treiber '{{.driver}}' wird auf {{.os}}/{{.arch}} nicht unterstützt",
|
||||
"The existing \"{{.name}}\" cluster was created using the \"{{.old}}\" driver, which is incompatible with requested \"{{.new}}\" driver.": "Der existierende \"{{.name}}\" Cluster wurde mit dem alten Treiber \"{{.old}}\" erstellt, welcher inkompatibel ist mit dem Treiber \"{{.new}}\".",
|
||||
|
@ -874,7 +872,7 @@
|
|||
"Userspace file server is shutdown": "Userspace File Server ist heruntergefahren",
|
||||
"Userspace file server: ": "Userspace File Server:",
|
||||
"Using Kubernetes v1.24+ with the Docker runtime requires cri-docker to be installed": "",
|
||||
"Using docker-env command with containerd-runtime is a highly experimental feature, and please provide feedback or contribute to make it better": "",
|
||||
"Using Kubernetes {{.version}} since patch version was unspecified": "",
|
||||
"Using image repository {{.name}}": "Verwenden des Image-Repositorys {{.name}}",
|
||||
"Using image {{.registry}}{{.image}}": "Verwende Image {{.registry}}{{.image}}",
|
||||
"Using image {{.registry}}{{.image}} (global image repository)": "Verwende das Image {{.registry}}{{.image}} (globale Image Repository)",
|
||||
|
@ -882,6 +880,7 @@
|
|||
"Using rootless driver was required, but the current driver does not seem rootless": "",
|
||||
"Using rootless {{.driver_name}} driver": "",
|
||||
"Using the '{{.runtime}}' runtime with the 'none' driver is an untested configuration!": "Das Verwenden der '{{.runtime}}' Laufzeitumgebung mit dem 'none' Treiber ist eine ungetestete Konfiguration!",
|
||||
"Using the docker-env command with the containerd runtime is a highly experimental feature, please provide feedback or contribute to make it better": "",
|
||||
"Using the {{.driver}} driver based on existing profile": "Verwende den Treiber {{.driver}} basierend auf dem existierenden Profil",
|
||||
"Using the {{.driver}} driver based on user configuration": "Verwende den Treiber {{.driver}} basierend auf der Benutzer-Konfiguration",
|
||||
"Using {{.driver_name}} driver with root privileges": "",
|
||||
|
|
|
@ -259,8 +259,6 @@
|
|||
"External Adapter on which external switch will be created if no external switch is found. (hyperv driver only)": "",
|
||||
"Fail check if container paused": "",
|
||||
"Failed removing pid from pidfile: {{.error}}": "",
|
||||
"Fail to copy file nerctl": "",
|
||||
"Fail to copy file nerctld": "",
|
||||
"Failed runtime": "",
|
||||
"Failed to build image": "No se pudo construir la imagen",
|
||||
"Failed to cache and load images": "",
|
||||
|
@ -495,6 +493,7 @@
|
|||
"Please also attach the following file to the GitHub issue:": "",
|
||||
"Please create a cluster with bigger disk size: `minikube start --disk SIZE_MB` ": "",
|
||||
"Please either authenticate to the registry or use --base-image flag to use a different registry.": "",
|
||||
"Please ensure you have executed 'ssh-agent bash' and 'minikube ssh-host --append-known' in this shell before using docker-env on containerd. Ignore this message if you have done it": "",
|
||||
"Please enter a value:": "",
|
||||
"Please free up disk or prune images.": "",
|
||||
"Please increase Desktop's disk size.": "",
|
||||
|
@ -713,7 +712,6 @@
|
|||
"The cri socket path to be used": "La ruta del socket de cri",
|
||||
"The cri socket path to be used.": "",
|
||||
"The docker-env command is incompatible with multi-node clusters. Use the 'registry' add-on: https://minikube.sigs.k8s.io/docs/handbook/registry/": "",
|
||||
"The docker-env command is only compatible with the \"docker\" or \"containerd\" runtime, but this cluster was configured to use the \"{{.runtime}}\" runtime.": "",
|
||||
"The driver '{{.driver}}' is not supported on {{.os}}/{{.arch}}": "El controlador \"{{.driver}}\" no se puede utilizar en {{.os}}/{{.arch}}",
|
||||
"The existing \"{{.name}}\" cluster was created using the \"{{.old}}\" driver, which is incompatible with requested \"{{.new}}\" driver.": "",
|
||||
"The existing node configuration appears to be corrupt. Run 'minikube delete'": "",
|
||||
|
@ -872,7 +870,7 @@
|
|||
"Userspace file server is shutdown": "",
|
||||
"Userspace file server: ": "",
|
||||
"Using Kubernetes v1.24+ with the Docker runtime requires cri-docker to be installed": "",
|
||||
"Using docker-env command with containerd-runtime is a highly experimental feature, and please provide feedback or contribute to make it better": "",
|
||||
"Using Kubernetes {{.version}} since patch version was unspecified": "",
|
||||
"Using image repository {{.name}}": "Utilizando el repositorio de imágenes {{.name}}",
|
||||
"Using image {{.registry}}{{.image}}": "",
|
||||
"Using image {{.registry}}{{.image}} (global image repository)": "",
|
||||
|
@ -880,6 +878,7 @@
|
|||
"Using rootless driver was required, but the current driver does not seem rootless": "",
|
||||
"Using rootless {{.driver_name}} driver": "",
|
||||
"Using the '{{.runtime}}' runtime with the 'none' driver is an untested configuration!": "",
|
||||
"Using the docker-env command with the containerd runtime is a highly experimental feature, please provide feedback or contribute to make it better": "",
|
||||
"Using the {{.driver}} driver based on existing profile": "",
|
||||
"Using the {{.driver}} driver based on user configuration": "",
|
||||
"Using {{.driver_name}} driver with root privileges": "",
|
||||
|
|
|
@ -246,8 +246,6 @@
|
|||
"External Adapter on which external switch will be created if no external switch is found. (hyperv driver only)": "L'adaptateur externe sur lequel un commutateur externe sera créé si aucun commutateur externe n'est trouvé. (pilote hyperv uniquement)",
|
||||
"Fail check if container paused": "Échec de la vérification si le conteneur est en pause",
|
||||
"Failed removing pid from pidfile: {{.error}}": "",
|
||||
"Fail to copy file nerctl": "",
|
||||
"Fail to copy file nerctld": "",
|
||||
"Failed runtime": "Échec de l'exécution",
|
||||
"Failed to build image": "Échec de la création de l'image",
|
||||
"Failed to cache and load images": "Échec de la mise en cache et du chargement des images",
|
||||
|
@ -483,6 +481,7 @@
|
|||
"Please also attach the following file to the GitHub issue:": "Veuillez également joindre le fichier suivant au problème GitHub",
|
||||
"Please create a cluster with bigger disk size: `minikube start --disk SIZE_MB` ": "Veuillez créer un cluster avec une plus grande taille de disque : `minikube start --disk SIZE_MB`",
|
||||
"Please either authenticate to the registry or use --base-image flag to use a different registry.": "Veuillez vous authentifier auprès du registre ou utiliser l'indicateur --base-image pour utiliser un registre différent.",
|
||||
"Please ensure you have executed 'ssh-agent bash' and 'minikube ssh-host --append-known' in this shell before using docker-env on containerd. Ignore this message if you have done it": "",
|
||||
"Please enter a value:": "Entrer un nombre, SVP:",
|
||||
"Please free up disk or prune images.": "Veuillez libérer le disque ou élaguer les images.",
|
||||
"Please increase Desktop's disk size.": "Veuillez augmenter la taille du disque de Desktop.",
|
||||
|
@ -699,7 +698,6 @@
|
|||
"The cri socket path to be used.": "Le chemin de socket cri à utiliser.",
|
||||
"The default network for QEMU will change from 'user' to 'socket_vmnet' in a future release": "Le réseau par défaut pour QEMU passera de 'user' à 'socket_vmnet' dans une version future",
|
||||
"The docker-env command is incompatible with multi-node clusters. Use the 'registry' add-on: https://minikube.sigs.k8s.io/docs/handbook/registry/": "La commande docker-env est incompatible avec les clusters multi-nœuds. Utilisez le module 'registry' : https://minikube.sigs.k8s.io/docs/handbook/registry/",
|
||||
"The docker-env command is only compatible with the \"docker\" or \"containerd\" runtime, but this cluster was configured to use the \"{{.runtime}}\" runtime.": "",
|
||||
"The docker-env command is only compatible with the \"docker\" runtime, but this cluster was configured to use the \"{{.runtime}}\" runtime.": "La commande docker-env n'est compatible qu'avec le runtime \"docker\", mais ce cluster a été configuré pour utiliser le runtime \"{{.runtime}}\".",
|
||||
"The driver '{{.driver}}' is not supported on {{.os}}/{{.arch}}": "Le pilote \"{{.driver}}\" n'est pas compatible avec {{.os}}/{{.arch}}.",
|
||||
"The existing \"{{.name}}\" cluster was created using the \"{{.old}}\" driver, which is incompatible with requested \"{{.new}}\" driver.": "Le cluster \"{{.name}}\" existant a été créé à l'aide du pilote \"{{.old}}\", qui est incompatible avec le pilote \"{{.new}}\" demandé.",
|
||||
|
@ -852,7 +850,7 @@
|
|||
"Userspace file server is shutdown": "Le serveur de fichiers de l'espace utilisateur est arrêté",
|
||||
"Userspace file server: ": "Serveur de fichiers de l'espace utilisateur :",
|
||||
"Using Kubernetes v1.24+ with the Docker runtime requires cri-docker to be installed": "L'utilisation de Kubernetes v1.24+ avec le runtime Docker nécessite l'installation de cri-docker",
|
||||
"Using docker-env command with containerd-runtime is a highly experimental feature, and please provide feedback or contribute to make it better": "",
|
||||
"Using Kubernetes {{.version}} since patch version was unspecified": "",
|
||||
"Using image repository {{.name}}": "Utilisation du dépôt d'images {{.name}}…",
|
||||
"Using image {{.registry}}{{.image}}": "Utilisation de l'image {{.registry}}{{.image}}",
|
||||
"Using image {{.registry}}{{.image}} (global image repository)": "Utilisation de l'image {{.registry}}{{.image}} (référentiel d'images global)",
|
||||
|
@ -862,6 +860,7 @@
|
|||
"Using rootless driver was required, but the current driver does not seem rootless": "L'utilisation d'un pilote sans root était nécessaire, mais le pilote actuel ne semble pas sans root",
|
||||
"Using rootless {{.driver_name}} driver": "Utilisation du pilote {{.driver_name}} sans root",
|
||||
"Using the '{{.runtime}}' runtime with the 'none' driver is an untested configuration!": "L'utilisation du runtime '{{.runtime}}' avec le pilote 'none' est une configuration non testée !",
|
||||
"Using the docker-env command with the containerd runtime is a highly experimental feature, please provide feedback or contribute to make it better": "",
|
||||
"Using the {{.driver}} driver based on existing profile": "Utilisation du pilote {{.driver}} basé sur le profil existant",
|
||||
"Using the {{.driver}} driver based on user configuration": "Utilisation du pilote {{.driver}} basé sur la configuration de l'utilisateur",
|
||||
"Using {{.driver_name}} driver with root privileges": "Utilisation du pilote {{.driver_name}} avec le privilège root",
|
||||
|
|
|
@ -236,8 +236,6 @@
|
|||
"External Adapter on which external switch will be created if no external switch is found. (hyperv driver only)": "外部スイッチが見つからない場合に、外部スイッチが作成される外部アダプター (hyperv ドライバーのみ)。",
|
||||
"Fail check if container paused": "コンテナーが一時停止しているかどうかのチェックに失敗しました",
|
||||
"Failed removing pid from pidfile: {{.error}}": "",
|
||||
"Fail to copy file nerctl": "",
|
||||
"Fail to copy file nerctld": "",
|
||||
"Failed runtime": "ランタイムが失敗しました",
|
||||
"Failed to build image": "イメージのビルドに失敗しました",
|
||||
"Failed to cache and load images": "イメージのキャッシュとロードに失敗しました",
|
||||
|
@ -467,6 +465,7 @@
|
|||
"Please also attach the following file to the GitHub issue:": "GitHub issue に次のファイルも添付してください:",
|
||||
"Please create a cluster with bigger disk size: `minikube start --disk SIZE_MB` ": "より大きなディスクサイズでクラスターを作ってください: `minikube start --disk SIZE_MB` ",
|
||||
"Please either authenticate to the registry or use --base-image flag to use a different registry.": "レジストリーに認証するか、--base-image フラグで別のレジストリーを指定するかどちらを行ってください。",
|
||||
"Please ensure you have executed 'ssh-agent bash' and 'minikube ssh-host --append-known' in this shell before using docker-env on containerd. Ignore this message if you have done it": "",
|
||||
"Please enter a value:": "値を入力してください:",
|
||||
"Please free up disk or prune images.": "ディスクを解放するか、イメージを削除してください。",
|
||||
"Please increase Desktop's disk size.": "Desktop のディスクサイズを増やしてください。",
|
||||
|
@ -671,7 +670,6 @@
|
|||
"The control plane node must be running for this command": "このコマンドではコントロールプレーンノードが実行中でなければなりません",
|
||||
"The cri socket path to be used.": "使用される CRI ソケットパス。",
|
||||
"The docker-env command is incompatible with multi-node clusters. Use the 'registry' add-on: https://minikube.sigs.k8s.io/docs/handbook/registry/": "docker-env コマンドはマルチノードクラスターと互換性がありません。'registry' アドオンを使用してください: https://minikube.sigs.k8s.io/docs/handbook/registry/",
|
||||
"The docker-env command is only compatible with the \"docker\" or \"containerd\" runtime, but this cluster was configured to use the \"{{.runtime}}\" runtime.": "",
|
||||
"The docker-env command is only compatible with the \"docker\" runtime, but this cluster was configured to use the \"{{.runtime}}\" runtime.": "docker-env コマンドは「docker」ランタイムとだけ互換性がありますが、このクラスターは「{{.runtime}}」ランタイムを使用するよう設定されています。",
|
||||
"The driver '{{.driver}}' is not supported on {{.os}}/{{.arch}}": "'{{.driver}}' ドライバーは {{.os}}/{{.arch}} に対応していません",
|
||||
"The existing \"{{.name}}\" cluster was created using the \"{{.old}}\" driver, which is incompatible with requested \"{{.new}}\" driver.": "既存の「{{.name}}」クラスターは、(要求された「{{.new}}」ドライバーとは互換性のない)「{{.old}}」ドライバーを使用して作成されました。 ",
|
||||
|
@ -819,7 +817,7 @@
|
|||
"Userspace file server is shutdown": "ユーザースペースのファイルサーバーが停止しました",
|
||||
"Userspace file server: ": "ユーザースペースのファイルサーバー: ",
|
||||
"Using Kubernetes v1.24+ with the Docker runtime requires cri-docker to be installed": "Docker ランタイムで Kubernetes v1.24+ を使用するには、cri-docker をインストールする必要があります",
|
||||
"Using docker-env command with containerd-runtime is a highly experimental feature, and please provide feedback or contribute to make it better": "",
|
||||
"Using Kubernetes {{.version}} since patch version was unspecified": "",
|
||||
"Using image repository {{.name}}": "{{.name}} イメージリポジトリーを使用しています",
|
||||
"Using image {{.registry}}{{.image}}": "{{.registry}}{{.image}} イメージを使用しています",
|
||||
"Using image {{.registry}}{{.image}} (global image repository)": "{{.registry}}{{.image}} イメージ (グローバルイメージリポジトリー) を使用しています",
|
||||
|
@ -827,6 +825,7 @@
|
|||
"Using rootless driver was required, but the current driver does not seem rootless": "rootless ドライバー使用が必要でしたが、現在のドライバーは rootless が必要ないようです",
|
||||
"Using rootless {{.driver_name}} driver": "rootless {{.driver_name}} ドライバー使用",
|
||||
"Using the '{{.runtime}}' runtime with the 'none' driver is an untested configuration!": "' none' ドライバーでの '{{.runtime}}' ランタイム使用は、未テストの設定です!",
|
||||
"Using the docker-env command with the containerd runtime is a highly experimental feature, please provide feedback or contribute to make it better": "",
|
||||
"Using the {{.driver}} driver based on existing profile": "既存のプロファイルを元に、{{.driver}} ドライバーを使用します",
|
||||
"Using the {{.driver}} driver based on user configuration": "ユーザーの設定に基づいて {{.driver}} ドライバーを使用します",
|
||||
"Using {{.driver_name}} driver with root privileges": "root 権限を持つ {{.driver_name}} ドライバーを使用",
|
||||
|
|
|
@ -268,8 +268,6 @@
|
|||
"External Adapter on which external switch will be created if no external switch is found. (hyperv driver only)": "",
|
||||
"Fail check if container paused": "",
|
||||
"Failed removing pid from pidfile: {{.error}}": "",
|
||||
"Fail to copy file nerctl": "",
|
||||
"Fail to copy file nerctld": "",
|
||||
"Failed runtime": "런타임이 실패하였습니다",
|
||||
"Failed to build image": "",
|
||||
"Failed to cache ISO": "ISO 캐싱에 실패하였습니다",
|
||||
|
@ -508,6 +506,7 @@
|
|||
"Please also attach the following file to the GitHub issue:": "",
|
||||
"Please create a cluster with bigger disk size: `minikube start --disk SIZE_MB` ": "",
|
||||
"Please either authenticate to the registry or use --base-image flag to use a different registry.": "",
|
||||
"Please ensure you have executed 'ssh-agent bash' and 'minikube ssh-host --append-known' in this shell before using docker-env on containerd. Ignore this message if you have done it": "",
|
||||
"Please enter a value:": "값을 입력하세요",
|
||||
"Please free up disk or prune images.": "",
|
||||
"Please increase Desktop's disk size.": "",
|
||||
|
@ -718,7 +717,6 @@
|
|||
"The control plane node must be running for this command": "컨트롤 플레인 노드는 실행 상태여야 합니다",
|
||||
"The cri socket path to be used.": "",
|
||||
"The docker-env command is incompatible with multi-node clusters. Use the 'registry' add-on: https://minikube.sigs.k8s.io/docs/handbook/registry/": "",
|
||||
"The docker-env command is only compatible with the \"docker\" or \"containerd\" runtime, but this cluster was configured to use the \"{{.runtime}}\" runtime.": "",
|
||||
"The driver '{{.driver}}' is not supported on {{.os}}/{{.arch}}": "",
|
||||
"The existing \"{{.name}}\" cluster was created using the \"{{.old}}\" driver, which is incompatible with requested \"{{.new}}\" driver.": "",
|
||||
"The existing node configuration appears to be corrupt. Run 'minikube delete'": "",
|
||||
|
@ -871,7 +869,7 @@
|
|||
"Userspace file server is shutdown": "",
|
||||
"Userspace file server: ": "",
|
||||
"Using Kubernetes v1.24+ with the Docker runtime requires cri-docker to be installed": "",
|
||||
"Using docker-env command with containerd-runtime is a highly experimental feature, and please provide feedback or contribute to make it better": "",
|
||||
"Using Kubernetes {{.version}} since patch version was unspecified": "",
|
||||
"Using image repository {{.name}}": "",
|
||||
"Using image {{.registry}}{{.image}}": "",
|
||||
"Using image {{.registry}}{{.image}} (global image repository)": "",
|
||||
|
@ -879,6 +877,7 @@
|
|||
"Using rootless driver was required, but the current driver does not seem rootless": "",
|
||||
"Using rootless {{.driver_name}} driver": "",
|
||||
"Using the '{{.runtime}}' runtime with the 'none' driver is an untested configuration!": "",
|
||||
"Using the docker-env command with the containerd runtime is a highly experimental feature, please provide feedback or contribute to make it better": "",
|
||||
"Using the {{.driver}} driver based on existing profile": "기존 프로필에 기반하여 {{.driver}} 드라이버를 사용하는 중",
|
||||
"Using the {{.driver}} driver based on user configuration": "유저 환경 설정 정보에 기반하여 {{.driver}} 드라이버를 사용하는 중",
|
||||
"Using {{.driver_name}} driver with root privileges": "",
|
||||
|
|
|
@ -259,8 +259,6 @@
|
|||
"External Adapter on which external switch will be created if no external switch is found. (hyperv driver only)": "",
|
||||
"Fail check if container paused": "",
|
||||
"Failed removing pid from pidfile: {{.error}}": "",
|
||||
"Fail to copy file nerctl": "",
|
||||
"Fail to copy file nerctld": "",
|
||||
"Failed runtime": "",
|
||||
"Failed to build image": "",
|
||||
"Failed to cache and load images": "",
|
||||
|
@ -503,6 +501,7 @@
|
|||
"Please attach the following file to the GitHub issue:": "Dołącz następujący plik do zgłoszenia problemu na GitHubie:",
|
||||
"Please create a cluster with bigger disk size: `minikube start --disk SIZE_MB` ": "Utwórz klaster z większym rozmiarem dysku: `minikube start --disk SIZE_MB`",
|
||||
"Please either authenticate to the registry or use --base-image flag to use a different registry.": "Uwierzytelnij się w rejestrze lub użyć flagi --base-image w celu użycia innego rejestru.",
|
||||
"Please ensure you have executed 'ssh-agent bash' and 'minikube ssh-host --append-known' in this shell before using docker-env on containerd. Ignore this message if you have done it": "",
|
||||
"Please enter a value:": "Wprowadź wartość",
|
||||
"Please free up disk or prune images.": "Zwolnij miejsce na dysku lub usuń niepotrzebne obrazy",
|
||||
"Please increase Desktop's disk size.": "",
|
||||
|
@ -726,7 +725,6 @@
|
|||
"The cri socket path to be used.": "",
|
||||
"The docker service is currently not active": "Serwis docker jest nieaktywny",
|
||||
"The docker-env command is incompatible with multi-node clusters. Use the 'registry' add-on: https://minikube.sigs.k8s.io/docs/handbook/registry/": "",
|
||||
"The docker-env command is only compatible with the \"docker\" or \"containerd\" runtime, but this cluster was configured to use the \"{{.runtime}}\" runtime.": "",
|
||||
"The driver '{{.driver}}' is not supported on {{.os}}/{{.arch}}": "Sterownik '{{.driver}} jest niewspierany przez system {{.os}}/{{.arch}}",
|
||||
"The existing \"{{.name}}\" cluster was created using the \"{{.old}}\" driver, which is incompatible with requested \"{{.new}}\" driver.": "",
|
||||
"The existing node configuration appears to be corrupt. Run 'minikube delete'": "",
|
||||
|
@ -881,7 +879,7 @@
|
|||
"Userspace file server is shutdown": "",
|
||||
"Userspace file server: ": "",
|
||||
"Using Kubernetes v1.24+ with the Docker runtime requires cri-docker to be installed": "",
|
||||
"Using docker-env command with containerd-runtime is a highly experimental feature, and please provide feedback or contribute to make it better": "",
|
||||
"Using Kubernetes {{.version}} since patch version was unspecified": "",
|
||||
"Using image repository {{.name}}": "",
|
||||
"Using image {{.registry}}{{.image}}": "",
|
||||
"Using image {{.registry}}{{.image}} (global image repository)": "",
|
||||
|
@ -889,6 +887,7 @@
|
|||
"Using rootless driver was required, but the current driver does not seem rootless": "",
|
||||
"Using rootless {{.driver_name}} driver": "",
|
||||
"Using the '{{.runtime}}' runtime with the 'none' driver is an untested configuration!": "",
|
||||
"Using the docker-env command with the containerd runtime is a highly experimental feature, please provide feedback or contribute to make it better": "",
|
||||
"Using the {{.driver}} driver based on existing profile": "",
|
||||
"Using the {{.driver}} driver based on user configuration": "",
|
||||
"Using {{.driver_name}} driver with root privileges": "",
|
||||
|
|
|
@ -233,8 +233,6 @@
|
|||
"External Adapter on which external switch will be created if no external switch is found. (hyperv driver only)": "",
|
||||
"Fail check if container paused": "",
|
||||
"Failed removing pid from pidfile: {{.error}}": "",
|
||||
"Fail to copy file nerctl": "",
|
||||
"Fail to copy file nerctld": "",
|
||||
"Failed runtime": "",
|
||||
"Failed to build image": "",
|
||||
"Failed to cache and load images": "",
|
||||
|
@ -458,6 +456,7 @@
|
|||
"Please also attach the following file to the GitHub issue:": "",
|
||||
"Please create a cluster with bigger disk size: `minikube start --disk SIZE_MB` ": "",
|
||||
"Please either authenticate to the registry or use --base-image flag to use a different registry.": "",
|
||||
"Please ensure you have executed 'ssh-agent bash' and 'minikube ssh-host --append-known' in this shell before using docker-env on containerd. Ignore this message if you have done it": "",
|
||||
"Please enter a value:": "",
|
||||
"Please free up disk or prune images.": "",
|
||||
"Please increase Desktop's disk size.": "",
|
||||
|
@ -660,7 +659,6 @@
|
|||
"The control plane node must be running for this command": "",
|
||||
"The cri socket path to be used.": "",
|
||||
"The docker-env command is incompatible with multi-node clusters. Use the 'registry' add-on: https://minikube.sigs.k8s.io/docs/handbook/registry/": "",
|
||||
"The docker-env command is only compatible with the \"docker\" or \"containerd\" runtime, but this cluster was configured to use the \"{{.runtime}}\" runtime.": "",
|
||||
"The driver '{{.driver}}' is not supported on {{.os}}/{{.arch}}": "",
|
||||
"The existing \"{{.name}}\" cluster was created using the \"{{.old}}\" driver, which is incompatible with requested \"{{.new}}\" driver.": "",
|
||||
"The existing node configuration appears to be corrupt. Run 'minikube delete'": "",
|
||||
|
@ -807,7 +805,7 @@
|
|||
"Userspace file server is shutdown": "",
|
||||
"Userspace file server: ": "",
|
||||
"Using Kubernetes v1.24+ with the Docker runtime requires cri-docker to be installed": "",
|
||||
"Using docker-env command with containerd-runtime is a highly experimental feature, and please provide feedback or contribute to make it better": "",
|
||||
"Using Kubernetes {{.version}} since patch version was unspecified": "",
|
||||
"Using image repository {{.name}}": "",
|
||||
"Using image {{.registry}}{{.image}}": "Используется образ {{.registry}}{{.image}}",
|
||||
"Using image {{.registry}}{{.image}} (global image repository)": "",
|
||||
|
@ -815,6 +813,7 @@
|
|||
"Using rootless driver was required, but the current driver does not seem rootless": "",
|
||||
"Using rootless {{.driver_name}} driver": "",
|
||||
"Using the '{{.runtime}}' runtime with the 'none' driver is an untested configuration!": "",
|
||||
"Using the docker-env command with the containerd runtime is a highly experimental feature, please provide feedback or contribute to make it better": "",
|
||||
"Using the {{.driver}} driver based on existing profile": "Используется драйвер {{.driver}} на основе существующего профиля",
|
||||
"Using the {{.driver}} driver based on user configuration": "Используется драйвер {{.driver}} на основе конфига пользователя",
|
||||
"Using {{.driver_name}} driver with root privileges": "",
|
||||
|
|
|
@ -233,8 +233,6 @@
|
|||
"External Adapter on which external switch will be created if no external switch is found. (hyperv driver only)": "",
|
||||
"Fail check if container paused": "",
|
||||
"Failed removing pid from pidfile: {{.error}}": "",
|
||||
"Fail to copy file nerctl": "",
|
||||
"Fail to copy file nerctld": "",
|
||||
"Failed runtime": "",
|
||||
"Failed to build image": "",
|
||||
"Failed to cache and load images": "",
|
||||
|
@ -458,6 +456,7 @@
|
|||
"Please also attach the following file to the GitHub issue:": "",
|
||||
"Please create a cluster with bigger disk size: `minikube start --disk SIZE_MB` ": "",
|
||||
"Please either authenticate to the registry or use --base-image flag to use a different registry.": "",
|
||||
"Please ensure you have executed 'ssh-agent bash' and 'minikube ssh-host --append-known' in this shell before using docker-env on containerd. Ignore this message if you have done it": "",
|
||||
"Please enter a value:": "",
|
||||
"Please free up disk or prune images.": "",
|
||||
"Please increase Desktop's disk size.": "",
|
||||
|
@ -660,7 +659,6 @@
|
|||
"The control plane node must be running for this command": "",
|
||||
"The cri socket path to be used.": "",
|
||||
"The docker-env command is incompatible with multi-node clusters. Use the 'registry' add-on: https://minikube.sigs.k8s.io/docs/handbook/registry/": "",
|
||||
"The docker-env command is only compatible with the \"docker\" or \"containerd\" runtime, but this cluster was configured to use the \"{{.runtime}}\" runtime.": "",
|
||||
"The driver '{{.driver}}' is not supported on {{.os}}/{{.arch}}": "",
|
||||
"The existing \"{{.name}}\" cluster was created using the \"{{.old}}\" driver, which is incompatible with requested \"{{.new}}\" driver.": "",
|
||||
"The existing node configuration appears to be corrupt. Run 'minikube delete'": "",
|
||||
|
@ -807,7 +805,7 @@
|
|||
"Userspace file server is shutdown": "",
|
||||
"Userspace file server: ": "",
|
||||
"Using Kubernetes v1.24+ with the Docker runtime requires cri-docker to be installed": "",
|
||||
"Using docker-env command with containerd-runtime is a highly experimental feature, and please provide feedback or contribute to make it better": "",
|
||||
"Using Kubernetes {{.version}} since patch version was unspecified": "",
|
||||
"Using image repository {{.name}}": "",
|
||||
"Using image {{.registry}}{{.image}}": "",
|
||||
"Using image {{.registry}}{{.image}} (global image repository)": "",
|
||||
|
@ -815,6 +813,7 @@
|
|||
"Using rootless driver was required, but the current driver does not seem rootless": "",
|
||||
"Using rootless {{.driver_name}} driver": "",
|
||||
"Using the '{{.runtime}}' runtime with the 'none' driver is an untested configuration!": "",
|
||||
"Using the docker-env command with the containerd runtime is a highly experimental feature, please provide feedback or contribute to make it better": "",
|
||||
"Using the {{.driver}} driver based on existing profile": "",
|
||||
"Using the {{.driver}} driver based on user configuration": "",
|
||||
"Using {{.driver_name}} driver with root privileges": "",
|
||||
|
|
|
@ -577,6 +577,7 @@
|
|||
"Please also attach the following file to the GitHub issue:": "",
|
||||
"Please create a cluster with bigger disk size: `minikube start --disk SIZE_MB` ": "",
|
||||
"Please either authenticate to the registry or use --base-image flag to use a different registry.": "",
|
||||
"Please ensure you have executed 'ssh-agent bash' and 'minikube ssh-host --append-known' in this shell before using docker-env on containerd. Ignore this message if you have done it": "",
|
||||
"Please enter a value:": "请输入一个值:",
|
||||
"Please free up disk or prune images.": "",
|
||||
"Please increase Desktop's disk size.": "",
|
||||
|
@ -815,7 +816,6 @@
|
|||
"The cri socket path to be used": "需要使用的 cri 套接字路径",
|
||||
"The cri socket path to be used.": "需要使用的 cri 套接字路径。",
|
||||
"The docker-env command is incompatible with multi-node clusters. Use the 'registry' add-on: https://minikube.sigs.k8s.io/docs/handbook/registry/": "",
|
||||
"The docker-env command is only compatible with the \"docker\" or \"containerd\" runtime, but this cluster was configured to use the \"{{.runtime}}\" runtime.": "",
|
||||
"The driver '{{.driver}}' is not supported on {{.os}}/{{.arch}}": "{{.os}} 不支持驱动程序“{{.driver}}/{{.arch}}”",
|
||||
"The existing \"{{.name}}\" cluster was created using the \"{{.old}}\" driver, which is incompatible with requested \"{{.new}}\" driver.": "",
|
||||
"The existing node configuration appears to be corrupt. Run 'minikube delete'": "",
|
||||
|
@ -981,7 +981,7 @@
|
|||
"Userspace file server is shutdown": "",
|
||||
"Userspace file server: ": "",
|
||||
"Using Kubernetes v1.24+ with the Docker runtime requires cri-docker to be installed": "",
|
||||
"Using docker-env command with containerd-runtime is a highly experimental feature, and please provide feedback or contribute to make it better": "",
|
||||
"Using Kubernetes {{.version}} since patch version was unspecified": "",
|
||||
"Using image repository {{.name}}": "正在使用镜像存储库 {{.name}}",
|
||||
"Using image {{.registry}}{{.image}}": "",
|
||||
"Using image {{.registry}}{{.image}} (global image repository)": "",
|
||||
|
@ -989,6 +989,7 @@
|
|||
"Using rootless driver was required, but the current driver does not seem rootless": "",
|
||||
"Using rootless {{.driver_name}} driver": "",
|
||||
"Using the '{{.runtime}}' runtime with the 'none' driver is an untested configuration!": "同时使用 'none' 驱动以及 '{{.runtime}}' 运行时是未经测试过的配置!",
|
||||
"Using the docker-env command with the containerd runtime is a highly experimental feature, please provide feedback or contribute to make it better": "",
|
||||
"Using the running {{.driver_name}} \"{{.profile_name}}\" VM ...": "使用正在运行的 {{.driver_name}} \"{{.profile_name}}\" 虚拟机",
|
||||
"Using the {{.driver}} driver based on existing profile": "根据现有的配置文件使用 {{.driver}} 驱动程序",
|
||||
"Using the {{.driver}} driver based on user configuration": "根据用户配置使用 {{.driver}} 驱动程序",
|
||||
|
|
Loading…
Reference in New Issue