Skip to content

Commit 3844b07

Browse files
author
Chinmay Gadgil
committed
Updated ColortellerImage tag
1 parent db30def commit 3844b07

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

scripts/run-e2e-test.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ function cleanUp(){
3434
echo "detach IAM policy if it exists"
3535
aws iam detach-role-policy --role-name $ROLE_NAME --policy-arn arn:${AWS_PARTITION}:iam::$ACCOUNT_ID:policy/AWSLoadBalancerControllerIAMPolicy || true
3636

37+
# wait for 10 sec to complete detaching of IAM policy
38+
sleep 10
39+
3740
echo "delete $ROLE_NAME if it exists"
3841
aws iam delete-role --role-name $ROLE_NAME || true
3942

test/e2e/ingress/multi_path_backend.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ func (s *multiPathBackendStack) buildBackendResource(ns *corev1.Namespace, backe
316316
Containers: []corev1.Container{
317317
{
318318
Name: "app",
319-
Image: utils.COLORTELLER_IMAGE,
319+
Image: utils.ColortellerImage,
320320
Ports: []corev1.ContainerPort{
321321
{
322322
ContainerPort: 8080,

test/framework/manifest/fixed_response_service_builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ func (b *fixedResponseServiceBuilder) buildDeployment(namespace string, name str
9595
Containers: []corev1.Container{
9696
{
9797
Name: "app",
98-
Image: utils.COLORTELLER_IMAGE,
98+
Image: utils.ColortellerImage,
9999
Ports: []corev1.ContainerPort{
100100
{
101101
Name: b.targetPortName,

test/framework/utils/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package utils
22

33
const (
4-
COLORTELLER_IMAGE = "chinmay5j/colorteller:v1"
4+
ColortellerImage = "chinmay5j/colorteller:latest"
55
)

0 commit comments

Comments
 (0)