whereabouts
A CNI IPAM plugin that assigns IP addresses cluster-wide
파일 탐색기
최종 버전 다운로드 (.zip)- bug_report.md
- feature_request.md
- binaries-upload-release.yml
- build.yml
- chart-push-release.yml
- codeql.yml
- image-build.yml
- image-push-master.yml
- image-push-release.yml
- stale.yml
- test.yml
- CODEOWNERS
- dependabot.yml
- PULL_REQUEST_TEMPLATE.md
- controlloop.go
- node_slice_controller.go
- main.go
- whereabouts.go
- whereabouts_test.go
- whereabouts.cni.cncf.io_ippools.yaml
- whereabouts.cni.cncf.io_nodeslicepools.yaml
- whereabouts.cni.cncf.io_overlappingrangeipreservations.yaml
- _helpers.tpl
- cluster_role.yaml
- cluster_role_binding.yaml
- configmap.yaml
- daemonset.yaml
- node-slice-controller.yaml
- NOTES.txt
- reconciler.yaml
- serviceaccount.yaml
- Chart.yaml
- values.yaml
- daemonset-install.yaml
- node-slice-controller.yaml
- reconciler-deployment.yaml
- whereabouts.cni.cncf.io_ippools.yaml
- whereabouts.cni.cncf.io_nodeslicepools.yaml
- whereabouts.cni.cncf.io_overlappingrangeipreservations.yaml
- fast_ipam_by_node.png
- dualstack.md
- fast_ipam_by_node.md
- named-networks.md
- developer_notes.md
- extended-configuration.md
- logo-sticker.svg
- logo.png
- logo.svg
- sample_config.json
- deployment.go
- ippool.go
- nodeslicepool.go
- pod.go
- replicaset.go
- statefulset.go
- whereabouts.go
- e2e_node_slice_test.go
- generators.go
- helpers.go
- checker.go
- node_slice_checker.go
- poolconsistency_test.go
- pod.go
- config.go
- util.go
- e2e_test.go
- chart-push.sh
- chart-update.sh
- boilerplate.go.txt
- build-go.sh
- cni-install.yml
- e2e-get-test-tools.sh
- e2e-setup-kind-cluster.sh
- generate-code.sh
- install-kubebuilder-tools.sh
- test-go.sh
- update-codegen.sh
- verify-codegen.sh
- allocate.go
- allocate_test.go
- doc.go
- ippool_types.go
- nodeslicepool_types.go
- overlappingrangeipreservation_types.go
- register.go
- zz_generated.deepcopy.go
- register.go
- config.go
- config_test.go
- dummy_controller.go
- entity_generators.go
- pod.go
- pod_controller_test.go
- clientset_generated.go
- doc.go
- register.go
- doc.go
- register.go
- doc.go
- fake_ippool.go
- fake_nodeslicepool.go
- fake_overlappingrangeipreservation.go
- fake_whereabouts.cni.cncf.io_client.go
- doc.go
- generated_expansion.go
- ippool.go
- nodeslicepool.go
- overlappingrangeipreservation.go
- whereabouts.cni.cncf.io_client.go
- clientset.go
- factory_interfaces.go
- interface.go
- ippool.go
- nodeslicepool.go
- overlappingrangeipreservation.go
- interface.go
- factory.go
- generic.go
- expansion_generated.go
- ippool.go
- nodeslicepool.go
- overlappingrangeipreservation.go
- iphelpers.go
- iphelpers_test.go
- logging.go
- logging_test.go
- signals.go
- signals_posix.go
- controller.go
- controller_test.go
- config.go
- config_test.go
- ip.go
- ip_test.go
- iploop.go
- wrappedPod.go
- wrappedPod_test.go
- client.go
- errors.go
- ipam.go
- ipam_test.go
- storage.go
- storage_test.go
- ipsanitizers.go
- types.go
- doc.go
- version.go
- install-cni.sh
- lib.sh
- scale-test.sh
- token-watcher.sh
- scaleTestDeployment.yaml
- whereaboutsScaleNAD.yaml
- .gitignore
- CLAUDE.md
- Dockerfile
- Dockerfile.arm64
- go.mod
- go.sum
- LICENSE
- Makefile
- NOTICE
- README.md
- tools.go
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/k8snetworkplumbingwg/whereabouts
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd whereabouts
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. Docker
쉬움 추천사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Docker Desktop 컨테이너를 빌드하고 실행하려면 필요합니다. 설치 후 실행해서 백그라운드에 켜두세요.
docker build -t whereabouts .
Dockerfile을 기반으로 실행 가능한 이미지를 빌드합니다.
docker run -p 8080:80 whereabouts
빌드된 이미지를 실제 컨테이너로 실행합니다.
터미널에 docker compose ps 를 입력해 컨테이너들이 Up 상태인지 확인하세요. README에 포트 번호가 적혀있다면 브라우저에서 http://localhost:포트번호 로 접속해보세요.
3. Go
보통go build ./...
Go 프로그램을 컴파일해 실행 파일을 만듭니다.
go run .
따로 빌드하지 않고 바로 Go 프로그램을 실행합니다.
빌드가 에러 없이 끝나면 성공입니다. go run . 을 썼다면 터미널 출력을 확인하세요.
4. Make
보통사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Make Linux/macOS는 보통 기본 설치되어 있습니다. Windows는 별도 설치(예: MSYS2, WSL)가 필요합니다.
make kind
생성된 빌드 설정을 바탕으로 실제 컴파일을 진행해 실행 파일을 만듭니다.
에러 없이 끝나면 성공입니다. 생성된 실행 파일을 직접 실행해보세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
// repository documentation
Was this content helpful?
(0 ratings)
