Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ install-kustomize: FORCE
install-crd-ref-docs: FORCE
@if ! hash crd-ref-docs 2>/dev/null; then printf "\e[1;36m>> Installing crd-ref-docs...\e[0m\n"; go install github.com/elastic/crd-ref-docs@latest; fi

setup: FORCE install-goimports install-golangci-lint install-shellcheck install-typos install-go-licence-detector install-addlicense prepare-static-check install-controller-gen

bin/golangci-lint-custom: .custom-gcl.yaml
@hash golangci-lint 2>/dev/null || (printf "\e[1;31m>> golangci-lint not found, please install it first\e[0m\n"; exit 1)
golangci-lint custom --destination $(LOCALBIN) --name golangci-lint-custom
Expand Down
2 changes: 2 additions & 0 deletions Makefile.maker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ verbatim: |
install-crd-ref-docs: FORCE
@if ! hash crd-ref-docs 2>/dev/null; then printf "\e[1;36m>> Installing crd-ref-docs...\e[0m\n"; go install github.com/elastic/crd-ref-docs@latest; fi

setup: FORCE install-goimports install-golangci-lint install-shellcheck install-typos install-go-licence-detector install-addlicense prepare-static-check install-controller-gen

bin/golangci-lint-custom: .custom-gcl.yaml
@hash golangci-lint 2>/dev/null || (printf "\e[1;31m>> golangci-lint not found, please install it first\e[0m\n"; exit 1)
golangci-lint custom --destination $(LOCALBIN) --name golangci-lint-custom
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ Network-operator is a project built using Kubebuilder and controller-runtime to
- docker version 28+.
- kubectl version v1.33.1+.
- Access to a Kubernetes v1.33.0+ cluster.
- kind version 0.32.0+
- Tilt version v0.37.3+
- gh version 2.93.0+
- coreutils 9.11+

Install tools and Go dependencies
```sh
make setup
```

### To Deploy on the cluster

Expand Down
Loading