Dagger
Search

ssh-key-repro

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/ssh-key-repro@34c3e978f32973d87c56c51442f90aa2ab193a12

Entrypoint

Return Type
SshKeyRepro
Example
func (m *myModule) example() *SshKeyRepro  {
	return dag.
			SshKeyRepro()
}
@function
def example() -> dag.SshKeyRepro:
	return (
		dag.ssh_key_repro()
	)
@func()
example(): SshKeyRepro {
	return dag
		.sshKeyRepro()
}

Types

SshKeyRepro 🔗

testOk() 🔗

Return Type
Container !
Example
dagger -m github.com/sagikazarmark/daggerverse/ssh-key-repro@34c3e978f32973d87c56c51442f90aa2ab193a12 call \
 test-ok
func (m *myModule) example() *Container  {
	return dag.
			SshKeyRepro().
			TestOk()
}
@function
def example() -> dagger.Container:
	return (
		dag.ssh_key_repro()
		.test_ok()
	)
@func()
example(): Container {
	return dag
		.sshKeyRepro()
		.testOk()
}

testOkToo() 🔗

Return Type
Container !
Example
dagger -m github.com/sagikazarmark/daggerverse/ssh-key-repro@34c3e978f32973d87c56c51442f90aa2ab193a12 call \
 test-ok-too
func (m *myModule) example() *Container  {
	return dag.
			SshKeyRepro().
			TestOkToo()
}
@function
def example() -> dagger.Container:
	return (
		dag.ssh_key_repro()
		.test_ok_too()
	)
@func()
example(): Container {
	return dag
		.sshKeyRepro()
		.testOkToo()
}

testFail() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
sshKeySecret !-No description provided
Example
dagger -m github.com/sagikazarmark/daggerverse/ssh-key-repro@34c3e978f32973d87c56c51442f90aa2ab193a12 call \
 test-fail --ssh-key env:MYSECRET
func (m *myModule) example(sshKey *Secret) *Container  {
	return dag.
			SshKeyRepro().
			TestFail(sshKey)
}
@function
def example(ssh_key: dagger.Secret) -> dagger.Container:
	return (
		dag.ssh_key_repro()
		.test_fail(ssh_key)
	)
@func()
example(sshKey: Secret): Container {
	return dag
		.sshKeyRepro()
		.testFail(sshKey)
}