Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 524575a

Browse files
tchaprramkumar1
authored andcommittedMar 3, 2025
Rename pkg/ext-proc to pkg/epp (kubernetes-sigs#372)
1 parent 4a837e7 commit 524575a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+112
-110
lines changed
 

‎Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG BUILDER_IMAGE=golang:1.23-alpine
44
ARG BASE_IMAGE=gcr.io/distroless/base-debian10
55

66
## Multistage build
7-
FROM ${BUILDER_IMAGE} as builder
7+
FROM ${BUILDER_IMAGE} AS builder
88
ENV CGO_ENABLED=0
99
ENV GOOS=linux
1010
ENV GOARCH=amd64
@@ -19,13 +19,13 @@ COPY cmd ./cmd
1919
COPY pkg ./pkg
2020
COPY internal ./internal
2121
COPY api ./api
22-
WORKDIR /src/cmd/ext-proc
23-
RUN go build -o /ext-proc
22+
WORKDIR /src/cmd/epp
23+
RUN go build -o /epp
2424

2525
## Multistage deploy
2626
FROM ${BASE_IMAGE}
2727

2828
WORKDIR /
29-
COPY --from=builder /ext-proc /ext-proc
29+
COPY --from=builder /epp /epp
3030

31-
ENTRYPOINT ["/ext-proc"]
31+
ENTRYPOINT ["/epp"]

‎cmd/ext-proc/health.go ‎cmd/epp/health.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323
"google.golang.org/grpc/codes"
2424
healthPb "google.golang.org/grpc/health/grpc_health_v1"
2525
"google.golang.org/grpc/status"
26-
"sigs.k8s.io/gateway-api-inference-extension/pkg/ext-proc/datastore"
27-
logutil "sigs.k8s.io/gateway-api-inference-extension/pkg/ext-proc/util/logging"
26+
"sigs.k8s.io/gateway-api-inference-extension/pkg/epp/datastore"
27+
logutil "sigs.k8s.io/gateway-api-inference-extension/pkg/epp/util/logging"
2828
)
2929

3030
type healthServer struct {

0 commit comments

Comments
 (0)
Please sign in to comment.