This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/tests/tasks/build/build_auth.cue
Richard Jones 86ae230261
refactored existing tests to use #TransformSecret
Signed-off-by: Richard Jones <richard@dagger.io>
2022-01-13 15:05:47 -07:00

40 lines
785 B
CUE

package testing
import (
"dagger.io/dagger/engine"
"encoding/yaml"
)
engine.#Plan & {
inputs: {
directories: testdata: path: "./testdata"
secrets: sops: command: {
name: "sops"
args: ["-d", "../../secrets_sops.yaml"]
}
}
actions: {
dockerHubToken: engine.#TransformSecret & {
input: inputs.secrets.sops.contents
#function: {
input: _
output: yaml.Unmarshal(input).DOCKERHUB_TOKEN
}
}
build: engine.#Build & {
source: inputs.directories.testdata.contents
auth: [{
target: "daggerio/ci-test:private-pull"
username: "daggertest"
secret: dockerHubToken.output
}]
dockerfile: contents: """
FROM daggerio/ci-test:private-pull@sha256:c74f1b1166784193ea6c8f9440263b9be6cae07dfe35e32a5df7a31358ac2060
"""
}
}
}