Kobiece myślenie
Wieczorem Marek wrócił z pracy zmęczony pełno negocjacji, rozwiązywania problemów, jedyna pociecha dziś piątek, jutro weekend.
Choć się wyspię, tydzień był ciężki mruknął, kładąc się spać, a żona spojrzała na niego z przebiegłym uśmiechem.
Widząc jej wzrok, Marek burknął:
Kasia, daj mi rano pospać, bo znam cię
Marek z Katarzyną są małżeństwem od jedenastu lat, ich syn Kuba ma dziewięć. Oboje pracują żona jest dyrektorką niewielkiej, ale solidnej firmy, on też na prestiżowym stanowisku z dobrą pensją.
Poranek sobotni w ich domu zawsze zaczyna się od sprzątania. Bez względu na pogodę, święta, zawsze. jeżeli sobota była pracująca, to w niedzielę. Kasia to pedantyczna czyściocha. Z jednej strony Marek to akceptuje, z drugiej nie daje nikomu odpocząć w weekend. Sama nie usiądzie i innym nie pozwoli, dopóki w domu nie zapanuje porządek.
Gdy temat wraca, Marek zawsze mówi:
Nie można powiedzieć, iż jestem bałaganiarzem. Skarpety zawsze na miejscu, po kątach nie rzucam, czasem choćby naczynia do zmywarki wrzucę, a zlew nie jest zapchany. Ubrania do prania trafiają do kosza w łazience. Krótko mówiąc, żyję porządnie. Ale żona ma inne zdanie.
W sobotę Kasia obudziła się jak zwykle, choć trochę się wylegiwała weekend, nie trzeba się spieszyć. W głowie ułożyła plan działania na dzień.
No dobrze, niech mąż śpi jeszcze godzinę, ale nie więcej. Jak go nie ruszać, to przeleży do obiadu pomyślała.
Marek przez sen usłyszał głos żony:
No, wstawaj już, czas na śniadanie, a potem sprzątanie. W domu wszystko porozrz# minikube
This is a collection of some useful commands to use minikube.
## Install minikube
„`bash
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
sudo install minikube-linux-amd64 /usr/local/bin/minikube
„`
## Install kubectl
„`bash
sudo snap install kubectl –classic
„`
## Start minikube
„`bash
minikube start –driver=docker
„`
## Check the status of minikube
„`bash
minikube status
„`
## Stop minikube
„`bash
minikube stop
„`
## Delete minikube
„`bash
minikube delete
„`
## Get the IP of minikube
„`bash
minikube ip
„`
## Get the URL of minikube dashboard
„`bash
minikube dashboard –url
„`
## Get the URL of minikube service
„`bash
minikube service –url
„`
## Get the logs of a pod
„`bash
kubectl logs
„`
## Get the logs of a pod with follow
„`bash
kubectl logs -f
„`
## Get the logs of a pod with tail
„`bash
kubectl logs –tail=20
„`
## Get the logs of a pod with since
„`bash
kubectl logs –since=1h
„`
## Get the logs of a pod with timestamps
„`bash
kubectl logs –timestamps
„`
## Get the logs of a pod with previous
„`bash
kubectl logs –previous
„`
## Get the logs of a pod with container
„`bash
kubectl logs -c
„`
## Get the logs of a pod with selector
„`bash
kubectl logs -l =
„`
## Get the logs of a pod with all containers
„`bash
kubectl logs –all-containers=true
„`
## Get the logs of a pod with all containers with follow
„`bash
kubectl logs –all-containers=true -f
„`
## Get the logs of a pod with all containers with tail
„`bash
kubectl logs –all-containers=true –tail=20
„`
## Get the logs of a pod with all containers with since
„`bash
kubectl logs –all-containers=true –since=1h
„`
## Get the logs of a pod with all containers with timestamps
„`bash
kubectl logs –all-containers=true –timestamps
„`
## Get the logs of a pod with all containers with previous
„`bash
kubectl logs –all-containers=true –previous
„`
## Get the logs of a pod with all containers with selector
„`bash
kubectl logs –all-containers=true -l =
„`
## Get the logs of a pod with all containers with container
„`bash
kubectl logs –all-containers=true -c
„`
## Get the logs of a pod with all containers with all namespaces
„`bash
kubectl logs –all-containers=true –all-namespaces=true
„`
## Get the logs of a pod with all containers with all namespaces with follow
„`bash
kubectl logs –all-containers=true –all-namespaces=true -f
„`
## Get the logs of a pod with all containers with all namespaces with tail
„`bash
kubectl logs –all-containers=true –all-namespaces=true –tail=20
„`
## Get the logs of a pod with all containers with all namespaces with since
„`bash
kubectl logs –all-containers=true –all-namespaces=true –since=1h
„`
## Get the logs of a pod with all containers with all namespaces with timestamps
„`bash
kubectl logs –all-containers=true –all-namespaces=true –timestamps
„`
## Get the logs of a pod with all containers with all namespaces with previous
„`bash
kubectl logs –all-containers=true –all-namespaces=true –previous
„`
## Get the logs of a pod with all containers with all namespaces with selector
„`bash
kubectl logs –all-containers=true –all-namespaces=true -l =
„`
## Get the logs of a pod with all containers with all namespaces with container
„`bash
kubectl logs –all-containers=true –all-namespaces=true -c
„`