fixed test

This commit is contained in:
logica0419 2023-08-08 16:30:20 +09:00
parent 06d2286eb4
commit 2e4556a12c

View file

@ -67,11 +67,11 @@ func WithDeploymentNamespace(n string) func(*deploymentOptions) {
}
}
// WithSvcTopologyAnnotations create svc with topology aware hints sets to auto
// WithSvcTopologyAnnotations create svc with topology mode sets to auto
func WithSvcTopologyAnnotations() func(*deploymentOptions) {
return func(o *deploymentOptions) {
o.svcAnnotations = map[string]string{
"service.kubernetes.io/topology-aware-hints": "auto",
"service.kubernetes.io/topology-mode": "auto",
}
}
}