Skip to content

Commit

Permalink
Update amaas reference (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
satyakonduri authored Feb 24, 2023
1 parent 4fd6b61 commit 2a7881a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pkg/k8sclient/resources/pod/pod.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func (c *Client) MakePod(config *Config) *v1.Pod {
}

if len(config.ContainerImage) == 0 {
config.ContainerImage = "amaas-eos-mw1.cec.lab.emc.com:5028/centos:latest"
config.ContainerImage = "docker.io/centos:latest"
}

if len(config.Command) == 0 {
Expand Down Expand Up @@ -534,7 +534,7 @@ func (c *Client) MakeEphemeralPod(config *Config) *v1.Pod {
}

if len(config.ContainerImage) == 0 {
config.ContainerImage = "amaas-eos-mw1.cec.lab.emc.com:5028/centos:latest"
config.ContainerImage = "docker.io/centos:latest"
}

if len(config.Command) == 0 {
Expand Down
2 changes: 1 addition & 1 deletion pkg/k8sclient/resources/statefulset/sts.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func (c *Client) MakeStatefulSet(config *Config) *appsv1.StatefulSet {
}

if len(config.ContainerImage) == 0 {
config.ContainerImage = "amaas-eos-mw1.cec.lab.emc.com:5028/centos:latest"
config.ContainerImage = "docker.io/centos:latest"
}

if len(config.Command) == 0 {
Expand Down

0 comments on commit 2a7881a

Please sign in to comment.