File tree Expand file tree Collapse file tree 4 files changed +4
-1
lines changed Expand file tree Collapse file tree 4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ jobs:
103103 - name : Get Logs from api7-ingress-controller
104104 shell : bash
105105 run : |
106+ export KUBECONFIG=/tmp/api7-ingress-cluster.kubeconfig
106107 kubectl logs -n api7ee-conformance-test -l app=api7-ingress-controller
107108
108109 - name : Upload Gateway API Conformance Report
Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ func TestMain(m *testing.M) {
160160 Namespace : namespace ,
161161 AdminEnpoint : framework .DashboardTLSEndpoint ,
162162 StatusAddress : address ,
163+ InitSyncDelay : 30 * time .Minute ,
163164 })
164165
165166 defaultGatewayProxyOpts = GatewayProxyOpts {
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ type IngressDeployOpts struct {
4646 AdminEnpoint string
4747 StatusAddress string
4848 Replicas int
49+ InitSyncDelay time.Duration
4950}
5051
5152func (f * Framework ) DeployIngress (opts IngressDeployOpts ) {
Original file line number Diff line number Diff line change @@ -345,7 +345,7 @@ data:
345345 # The period between two consecutive syncs.
346346 # The default value is 0 seconds, which means the controller will not sync.
347347 # If you want to enable the sync, set it to a positive value.
348- init_sync_delay: 1m
348+ init_sync_delay: {{ .InitSyncDelay | default "1m" }}
349349 ---
350350apiVersion : v1
351351kind : Service
You can’t perform that action at this time.
0 commit comments