Expand user home dir in client filesystem
Signed-off-by: Helder Correia <174525+helderco@users.noreply.github.com>
This commit is contained in:
@@ -8,8 +8,8 @@ import (
|
||||
|
||||
dagger.#Plan & {
|
||||
client: filesystem: {
|
||||
"/home/user/.ssh/id_rsa": read: contents: dagger.#Secret
|
||||
"/home/user/.ssh/known_hosts": read: contents: dagger.#Secret
|
||||
"~/.ssh/id_rsa": read: contents: dagger.#Secret
|
||||
"~/.ssh/known_hosts": read: contents: dagger.#Secret
|
||||
}
|
||||
|
||||
actions: {
|
||||
@@ -22,8 +22,8 @@ dagger.#Plan & {
|
||||
tag: "myimage:v2"
|
||||
host: "ssh://root@93.184.216.34"
|
||||
ssh: {
|
||||
key: client.filesystem."/home/user/.ssh/id_rsa".read.contents
|
||||
knownHosts: client.filesystem."/home/user/.ssh/known_hosts".read.contents
|
||||
key: client.filesystem."~/.ssh/id_rsa".read.contents
|
||||
knownHosts: client.filesystem."~/.ssh/known_hosts".read.contents
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -7,15 +7,15 @@ import (
|
||||
|
||||
dagger.#Plan & {
|
||||
client: filesystem: {
|
||||
"/home/user/.ssh/id_rsa": read: contents: dagger.#Secret
|
||||
"/home/user/.ssh/known_hosts": read: contents: dagger.#Secret
|
||||
"~/.ssh/id_rsa": read: contents: dagger.#Secret
|
||||
"~/.ssh/known_hosts": read: contents: dagger.#Secret
|
||||
}
|
||||
|
||||
actions: run: cli.#Run & {
|
||||
host: "ssh://root@93.184.216.34"
|
||||
ssh: {
|
||||
key: client.filesystem."/home/user/.ssh/id_rsa".read.contents
|
||||
knownHosts: client.filesystem."/home/user/.ssh/known_hosts".read.contents
|
||||
key: client.filesystem."~/.ssh/id_rsa".read.contents
|
||||
knownHosts: client.filesystem."~/.ssh/known_hosts".read.contents
|
||||
}
|
||||
command: name: "info"
|
||||
}
|
||||
|
Reference in New Issue
Block a user