Skip to content

Commit

Permalink
fix: fix a test
Browse files Browse the repository at this point in the history
some yaml tooling somewhere changed the way it writes lists
  • Loading branch information
plumpy committed Nov 15, 2024
1 parent 3da4e0f commit 81293a1
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions pkg/skaffold/render/applysetters/apply_setters_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ spec:
template:
spec:
containers:
- name: nginx
image: ubuntu:1.8.0 # from-param: ${image}:${tag}
- name: nginx
image: ubuntu:1.8.0 # from-param: ${image}:${tag}
`,
},
{
Expand Down Expand Up @@ -153,8 +153,8 @@ spec:
template:
spec:
containers:
- name: nginx
image: ubuntu:1.7.9 # from-param: ${image}:${tag}
- name: nginx
image: ubuntu:1.7.9 # from-param: ${image}:${tag}
`,
},
{
Expand Down Expand Up @@ -183,8 +183,8 @@ spec:
template:
spec:
containers:
- name: nginx
image: ubuntu-~!@#$%^&*()<>?"|:1.7.9 # from-param: ${image-~!@#$%^&*()<>?"|}:${tag}
- name: nginx
image: ubuntu-~!@#$%^&*()<>?"|:1.7.9 # from-param: ${image-~!@#$%^&*()<>?"|}:${tag}
`,
},
{
Expand Down Expand Up @@ -214,8 +214,8 @@ spec:
template:
spec:
containers:
- name: nginx
image: nginx:1.7.9 # from-param: ${image}:${tag}
- name: nginx
image: nginx:1.7.9 # from-param: ${image}:${tag}
`,
},
{
Expand Down Expand Up @@ -273,8 +273,8 @@ metadata:
name: nginx-deployment
spec:
images: # from-param: ${images}
- ubuntu
- hbase
- ubuntu
- hbase
`,
},
{
Expand Down Expand Up @@ -378,8 +378,8 @@ spec:
template:
spec:
containers:
- name: nginx
image: nginx:1.7.9 # from-param: ${image}:${tag}
- name: nginx
image: nginx:1.7.9 # from-param: ${image}:${tag}
`,
},
{
Expand Down Expand Up @@ -442,11 +442,11 @@ metadata:
namespace: "foo" # from-param: ${ns}
image: nginx:1.7.1 # from-param: ${image}:${tag}
env: # from-param: ${env}
- foo
- bar
- foo
- bar
roles: # from-param: ${roles}
- dev
- prod
- dev
- prod
`,
},
}
Expand Down

0 comments on commit 81293a1

Please sign in to comment.