Skip to content

Commit c53de46

Browse files
committed
terminology: repository -> registry
1 parent 577d0a8 commit c53de46

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

pkg/cli/generate.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ type GenerateArgs struct {
4444
DryRun bool
4545
JobTimeoutSeconds int
4646
JunitResultsFile string
47-
ImageRepository string
47+
ImageRegistry string
4848
//BatchJobs bool
4949
}
5050

@@ -86,7 +86,7 @@ func SetupGenerateCommand() *cobra.Command {
8686
command.Flags().BoolVar(&args.DryRun, "dry-run", false, "if true, don't actually do anything: just print out what would be done")
8787

8888
command.Flags().StringVar(&args.JunitResultsFile, "junit-results-file", "", "output junit results to the specified file")
89-
command.Flags().StringVar(&args.ImageRepository, "image-repository", "registry.k8s.io", "Image repository for agnhost")
89+
command.Flags().StringVar(&args.ImageRegistry, "image-registry", "registry.k8s.io", "Image registry for agnhost")
9090

9191
return command
9292
}
@@ -115,7 +115,7 @@ func RunGenerateCommand(args *GenerateArgs) {
115115
serverProtocols := parseProtocols(args.ServerProtocols)
116116

117117
batchJobs := false // args.BatchJobs
118-
resources, err := probe.NewDefaultResources(kubernetes, args.ServerNamespaces, args.ServerPods, args.ServerPorts, serverProtocols, externalIPs, args.PodCreationTimeoutSeconds, batchJobs, args.ImageRepository)
118+
resources, err := probe.NewDefaultResources(kubernetes, args.ServerNamespaces, args.ServerPods, args.ServerPorts, serverProtocols, externalIPs, args.PodCreationTimeoutSeconds, batchJobs, args.ImageRegistry)
119119
utils.DoOrDie(err)
120120

121121
interpreterConfig := &connectivity.InterpreterConfig{

pkg/cli/probe.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ type ProbeArgs struct {
3535
ServerPorts []int
3636
ServerNamespaces []string
3737
ServerPods []string
38-
ImageRepository string
38+
ImageRegistry string
3939
}
4040

4141
func SetupProbeCommand() *cobra.Command {
@@ -68,7 +68,7 @@ func SetupProbeCommand() *cobra.Command {
6868
command.Flags().IntVar(&args.PerturbationWaitSeconds, "perturbation-wait-seconds", 5, "number of seconds to wait after perturbing the cluster (i.e. create a network policy, modify a ns/pod label) before running probes, to give the CNI time to update the cluster state")
6969
command.Flags().IntVar(&args.PodCreationTimeoutSeconds, "pod-creation-timeout-seconds", 60, "number of seconds to wait for pods to create, be running and have IP addresses")
7070
command.Flags().StringVar(&args.PolicyPath, "policy-path", "", "path to yaml network policy to create in kube; if empty, will not create any policies")
71-
command.Flags().StringVar(&args.ImageRepository, "image-repository", "registry.k8s.io", "Image repository for agnhost")
71+
command.Flags().StringVar(&args.ImageRegistry, "image-registry", "registry.k8s.io", "Image registry for agnhost")
7272

7373
return command
7474
}
@@ -85,7 +85,7 @@ func RunProbeCommand(args *ProbeArgs) {
8585
protocols := parseProtocols(args.Protocols)
8686
serverProtocols := parseProtocols(args.ServerProtocols)
8787

88-
resources, err := probe.NewDefaultResources(kubernetes, args.ServerNamespaces, args.ServerPods, args.ServerPorts, serverProtocols, externalIPs, args.PodCreationTimeoutSeconds, false, args.ImageRepository)
88+
resources, err := probe.NewDefaultResources(kubernetes, args.ServerNamespaces, args.ServerPods, args.ServerPorts, serverProtocols, externalIPs, args.PodCreationTimeoutSeconds, false, args.ImageRegistry)
8989
utils.DoOrDie(err)
9090

9191
interpreterConfig := &connectivity.InterpreterConfig{

pkg/connectivity/probe/pod.go

+16-16
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ func NewPod(ns string, name string, labels map[string]string, ip string, contain
2727
}
2828
}
2929

30-
func NewDefaultPod(ns string, name string, ports []int, protocols []v1.Protocol, batchJobs bool, imageRepository string) *Pod {
30+
func NewDefaultPod(ns string, name string, ports []int, protocols []v1.Protocol, batchJobs bool, imageRegistry string) *Pod {
3131
var containers []*Container
3232
for _, port := range ports {
3333
for _, protocol := range protocols {
34-
containers = append(containers, NewDefaultContainer(port, protocol, batchJobs, imageRepository))
34+
containers = append(containers, NewDefaultContainer(port, protocol, batchJobs, imageRegistry))
3535
}
3636
}
3737
return &Pod{
@@ -164,22 +164,22 @@ func (p *Pod) PodString() PodString {
164164
}
165165

166166
type Container struct {
167-
Name string
168-
Port int
169-
Protocol v1.Protocol
170-
PortName string
171-
BatchJobs bool
172-
imageRepository string
167+
Name string
168+
Port int
169+
Protocol v1.Protocol
170+
PortName string
171+
BatchJobs bool
172+
ImageRegistry string
173173
}
174174

175-
func NewDefaultContainer(port int, protocol v1.Protocol, batchJobs bool, imageRepository string) *Container {
175+
func NewDefaultContainer(port int, protocol v1.Protocol, batchJobs bool, imageRegistry string) *Container {
176176
return &Container{
177-
Name: fmt.Sprintf("cont-%d-%s", port, strings.ToLower(string(protocol))),
178-
Port: port,
179-
Protocol: protocol,
180-
PortName: fmt.Sprintf("serve-%d-%s", port, strings.ToLower(string(protocol))),
181-
BatchJobs: batchJobs,
182-
imageRepository: imageRepository,
177+
Name: fmt.Sprintf("cont-%d-%s", port, strings.ToLower(string(protocol))),
178+
Port: port,
179+
Protocol: protocol,
180+
PortName: fmt.Sprintf("serve-%d-%s", port, strings.ToLower(string(protocol))),
181+
BatchJobs: batchJobs,
182+
ImageRegistry: imageRegistry,
183183
}
184184
}
185185

@@ -195,7 +195,7 @@ func (c *Container) Image() string {
195195
if c.BatchJobs {
196196
return cyclonusWorkerImage
197197
}
198-
return c.imageRepository + "/" + agnhostImage
198+
return c.ImageRegistry + "/" + agnhostImage
199199
}
200200

201201
func (c *Container) KubeContainer() v1.Container {

pkg/connectivity/probe/resources.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type Resources struct {
1818
//ExternalIPs []string
1919
}
2020

21-
func NewDefaultResources(kubernetes kube.IKubernetes, namespaces []string, podNames []string, ports []int, protocols []v1.Protocol, externalIPs []string, podCreationTimeoutSeconds int, batchJobs bool, imageRepository string) (*Resources, error) {
21+
func NewDefaultResources(kubernetes kube.IKubernetes, namespaces []string, podNames []string, ports []int, protocols []v1.Protocol, externalIPs []string, podCreationTimeoutSeconds int, batchJobs bool, imageRegistry string) (*Resources, error) {
2222
//sort.Strings(externalIPs) // TODO why is this here?
2323

2424
r := &Resources{
@@ -28,7 +28,7 @@ func NewDefaultResources(kubernetes kube.IKubernetes, namespaces []string, podNa
2828

2929
for _, ns := range namespaces {
3030
for _, podName := range podNames {
31-
r.Pods = append(r.Pods, NewDefaultPod(ns, podName, ports, protocols, batchJobs, imageRepository))
31+
r.Pods = append(r.Pods, NewDefaultPod(ns, podName, ports, protocols, batchJobs, imageRegistry))
3232
}
3333
r.Namespaces[ns] = map[string]string{"ns": ns}
3434
}

0 commit comments

Comments
 (0)