Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marttp/homelab-with-pi4b
Resources for youtube playlist - สร้าง Home Lab Kubernetes cluster ด้วย Raspberry Pi สำหรับใช้งานในบ้านหรือห้องส่วนตัว
https://github.com/marttp/homelab-with-pi4b
Last synced: about 24 hours ago
JSON representation
Resources for youtube playlist - สร้าง Home Lab Kubernetes cluster ด้วย Raspberry Pi สำหรับใช้งานในบ้านหรือห้องส่วนตัว
- Host: GitHub
- URL: https://github.com/marttp/homelab-with-pi4b
- Owner: marttp
- Created: 2024-05-17T09:13:08.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-05-22T09:36:50.000Z (7 months ago)
- Last Synced: 2024-11-06T00:06:52.194Z (about 2 months ago)
- Language: Rust
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Homelab with Raspberry Pi 4B and MicroK8s
Resources for youtube playlist - สร้าง Home Lab Kubernetes cluster ด้วย Raspberry Pi สำหรับใช้งานในบ้านหรือห้องส่วนตัว# Helpful command
Since I used docker for build the image, and it needs to support ARM instruction on Raspberry Pi
You can build image by this command (Specific to run on ARM x64 v8 alias arm64)
```shell
docker build --platform linux/arm64 -t marttp/customer-api .
docker push marttp/customer-api
docker build --platform linux/arm64 -t marttp/product-api .
docker push marttp/product-api
```If you need multi-arch support, please kindly take a look on `buildx`
```shell
docker buildx ls
docker buildx inspect --bootstrap
```