Skip to content
Merged
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: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# docker build -t bigip-kubernetes-gateway:latest -f build/Dockerfile .
FROM alpine:3.16.2

COPY ../cmd/gateway/bigip-kubernetes-gateway-controller-linux /
COPY ../cmd/controller/bigip-kubernetes-gateway-controller-linux /

RUN date > /build_date
2 changes: 1 addition & 1 deletion build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ image_build: binary_build
-f build/Dockerfile .

binary_build:
cd ../cmd/gateway; \
cd ../cmd/controller; \
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 \
go build -ldflags '-s -w --extldflags "-static -fpic"' -o bigip-kubernetes-gateway-controller-linux; \
# CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 \
Expand Down
6 changes: 2 additions & 4 deletions examples/beforehand-validation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,13 @@ When '--validates' is used at controller starts, the controller will check the r

* If the `Gateway` doesn't exist, `HTTPRoute` upsert(update & insert) request would be denied.
* If there are still `HTTPRoute`s referring to `Gateway`, the `Gateway`'s deletion request would be denied.
*


* *httproute.rules.backendRefs*

When this option is appended, the reference between `HTTPRoute` and `Service` would be checked.

If there are no `Service` existing, `HTTPRoute` upsert request would be denied.

If there
* If there are no `Service` existing, `HTTPRoute` upsert request would be denied.

* *gateway.gatewayClassName*

Expand Down