We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f348b8 commit bfd82c7Copy full SHA for bfd82c7
test/e2e/scaffold/apisix_deployer.go
@@ -251,12 +251,8 @@ func (s *APISIXDeployer) deployDataplane(opts *APISIXDeployOptions) *corev1.Serv
251
}
252
253
func (s *APISIXDeployer) ScaleDataplane(replicas int) {
254
- s.deployDataplane(&APISIXDeployOptions{
255
- Namespace: s.namespace,
256
- AdminKey: s.opts.APISIXAdminAPIKey,
257
- ServiceHTTPPort: 9080,
258
- ServiceHTTPSPort: 9443,
259
- Replicas: ptr.To(replicas),
+ s.DeployDataplane(DeployDataplaneOptions{
+ Replicas: ptr.To(replicas),
260
})
261
262
0 commit comments