Add a test for unauthenticated dockerhub pulls
This commit is contained in:
1
examples/tests/unauthenticated/.dockerignore
Normal file
1
examples/tests/unauthenticated/.dockerignore
Normal file
@@ -0,0 +1 @@
|
||||
*
|
||||
18
examples/tests/unauthenticated/Pulumi.yaml
Normal file
18
examples/tests/unauthenticated/Pulumi.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
name: dockerhub-unauthenticated
|
||||
description: Pull an image from Dockerhub without credentials
|
||||
runtime: yaml
|
||||
plugins:
|
||||
providers:
|
||||
- name: docker-build
|
||||
path: ../../../bin
|
||||
resources:
|
||||
my-image:
|
||||
type: docker-build:Image
|
||||
properties:
|
||||
tags:
|
||||
- alpine-local
|
||||
load: true
|
||||
context:
|
||||
location: .
|
||||
dockerfile:
|
||||
inline: FROM alpine
|
||||
@@ -58,3 +58,14 @@ func TestDockerHub(t *testing.T) {
|
||||
|
||||
integration.ProgramTest(t, &test)
|
||||
}
|
||||
|
||||
func TestDockerHubUnauthenticated(t *testing.T) {
|
||||
cwd, err := os.Getwd()
|
||||
require.NoError(t, err)
|
||||
|
||||
test := integration.ProgramTestOptions{
|
||||
Dir: path.Join(cwd, "tests/unauthenticated"),
|
||||
}
|
||||
|
||||
integration.ProgramTest(t, &test)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user