This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir -p -- 'build/cache' | |
make -C embedded-bins buildmode=docker TARGET_OS=linux | |
make[1]: Entering directory '/home/mbana/dev/banaio/k0s/embedded-bins' | |
mkdir -p staging/linux/bin | |
docker build -t k0sbuild.docker-image.runc:latest --build-arg TARGET_OS=linux --build-arg VERSION=1.1.4 --build-arg BUILDIMAGE=docker.io/library/golang:1.19.5-alpine3.17 --build-arg BUILD_GO_TAGS="seccomp" --build-arg BUILD_GO_CGO_ENABLED= --build-arg BUILD_GO_CGO_CFLAGS= --build-arg BUILD_SHIM_GO_CGO_ENABLED= --build-arg BUILD_GO_FLAGS= --build-arg BUILD_GO_LDFLAGS= --build-arg BUILD_GO_LDFLAGS_EXTRA="-w -s -extldflags=-static" -- runc/ && docker images -q k0sbuild.docker-image.runc:latest > .docker-image.runc.stamp.tmp && mv .docker-image.runc.stamp.tmp .docker-image.runc.stamp | |
docker build -t k0sbuild.docker-image.kubernetes:latest --build-arg TARGET_OS=linux --build-arg VERSION=1.26.1 --build-arg BUILDIMAGE=docker.io/library/golang:1.19.5-alpine3.17 --build-arg BUILD_GO_TAGS="providerless" --build-arg BUILD_GO_CGO_ENABLED= --buil |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```sh | |
docker@kgw:~$ sudo journalctl --no-pager | |
-- Logs begin at Tue 2022-10-11 08:21:19 UTC, end at Tue 2022-10-11 08:24:20 UTC. -- | |
Oct 11 08:21:19 kgw systemd-journald[209]: Journal started | |
Oct 11 08:21:19 kgw systemd-journald[209]: Runtime Journal (/run/log/journal/386775ffbc46464ea356d784cd8cd54c) is 8.0M, max 3.1G, 3.1G free. | |
Oct 11 08:21:19 kgw systemd-sysctl[213]: Not setting net/ipv4/conf/all/promote_secondaries (explicit setting exists). | |
Oct 11 08:21:19 kgw systemd-sysctl[213]: Not setting net/ipv4/conf/default/promote_secondaries (explicit setting exists). | |
Oct 11 08:21:19 kgw systemd-sysctl[213]: Couldn't write 'fq_codel' to 'net/core/default_qdisc', ignoring: No such file or directory | |
Oct 11 08:21:19 kgw systemd-sysusers[214]: Creating group systemd-coredump with gid 998. | |
Oct 11 08:21:19 kgw systemd-sysusers[214]: Creating user systemd-coredump (systemd Core Dumper) with uid 998 and gid 998. |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 | |
sudo install minikube-linux-amd64 /usr/local/bin/minikube | |
rm minikube-linux-amd64 | |
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
100 73.0M 100 73.0M 0 0 42.4M 0 0:00:01 0:00:01 --:--:-- 42.4M | |
removed 'minikube-linux-amd64' | |
➜ kusk-gateway git:(mbana-issue-763-oauth2-static-route) minikube start --profile kgw --addons=metallb --alsologtostderr -v=8 | |
I1010 21:39:57.223996 75049 out.go:296] Setting OutFile to fd 1 ... | |
I1010 21:39:57.224142 75049 out.go:348] isatty.IsTerminal(1) = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# References: | |
# | |
# * <https://github.com/smvarela/fedora-postinstall>. | |
# * <https://mutschler.eu/linux/install-guides/fedora-post-install/>. | |
# * <https://docs.fedoraproject.org/en-US/fedora/f34/system-administrators-guide/basic-system-configuration/System_Locale_and_Keyboard_Configuration/>. | |
# * <https://docs.fedoraproject.org/en-US/fedora/f34/system-administrators-guide/kernel-module-driver-configuration/Working_with_the_GRUB_2_Boot_Loader/>. | |
# * <https://docs.fedoraproject.org/en-US/fedora/f34/system-administrators-guide/kernel-module-driver-configuration/Working_with_Kernel_Modules/>. | |
# * <https://wiki.archlinux.org/index.php/silent_boot>. | |
# * <https://rpmfusion.org/Howto/NVIDIA>. |