Skip to content

Commit 9276c50

Browse files
committed
fix: r
Signed-off-by: Ashing Zheng <[email protected]>
1 parent 2a258c4 commit 9276c50

File tree

3 files changed

+11
-39
lines changed

3 files changed

+11
-39
lines changed

.github/workflows/apisix-conformance-test.yml

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -35,27 +35,8 @@ permissions:
3535
pull-requests: write
3636

3737
jobs:
38-
prepare:
39-
name: Prepare
40-
runs-on: buildjet-2vcpu-ubuntu-2204
41-
steps:
42-
- name: Checkout
43-
uses: actions/checkout@v4
44-
45-
- name: Setup Go Env
46-
id: go
47-
uses: actions/setup-go@v4
48-
with:
49-
go-version: "1.23"
50-
51-
- name: Install kind
52-
run: |
53-
go install sigs.k8s.io/[email protected]
54-
5538
conformance-test:
5639
timeout-minutes: 60
57-
needs:
58-
- prepare
5940
strategy:
6041
matrix:
6142
provider_type:
@@ -72,6 +53,9 @@ jobs:
7253
uses: actions/setup-go@v4
7354
with:
7455
go-version: "1.23"
56+
- name: Install kind
57+
run: |
58+
go install sigs.k8s.io/[email protected]
7559
7660
- name: Login to Registry
7761
uses: docker/login-action@v1

.github/workflows/apisix-e2e-test.yml

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -32,26 +32,7 @@ concurrency:
3232
cancel-in-progress: true
3333

3434
jobs:
35-
prepare:
36-
name: Prepare
37-
runs-on: buildjet-2vcpu-ubuntu-2204
38-
steps:
39-
- name: Checkout
40-
uses: actions/checkout@v4
41-
42-
- name: Setup Go Env
43-
id: go
44-
uses: actions/setup-go@v4
45-
with:
46-
go-version: "1.23"
47-
48-
- name: Install kind
49-
run: |
50-
go install sigs.k8s.io/[email protected]
51-
5235
e2e-test:
53-
needs:
54-
- prepare
5536
strategy:
5637
matrix:
5738
provider_type:
@@ -61,7 +42,7 @@ jobs:
6142
- apisix.apache.org
6243
- networking.k8s.io
6344
fail-fast: false
64-
runs-on: buildjet-2vcpu-ubuntu-2204
45+
runs-on: buildjet-4vcpu-ubuntu-2204
6546
steps:
6647
- name: Checkout
6748
uses: actions/checkout@v4
@@ -73,6 +54,10 @@ jobs:
7354
with:
7455
go-version: "1.23"
7556

57+
- name: Install kind
58+
run: |
59+
go install sigs.k8s.io/[email protected]
60+
7661
- name: Login to Registry
7762
uses: docker/login-action@v1
7863
with:

internal/controller/utils.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1567,6 +1567,9 @@ func resolveServiceEndpoints(
15671567
return fmt.Errorf("failed to list endpoint slices: %v", err)
15681568
}
15691569

1570+
for _, ep := range endpoints.Items {
1571+
log.Debugw("gatewayproxy endpoint", zap.String("service", serviceNN.String()), zap.Any("endpoint", ep.Endpoints))
1572+
}
15701573
if len(subsetLabels) == 0 {
15711574
tctx.EndpointSlices[serviceNN] = endpoints.Items
15721575
} else {

0 commit comments

Comments
 (0)