Skip to content

abklabs/pulumi-runner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pulumi Runner Provider

An alternative way to run scripts locally and remotely for Pulumi infrastructure management.

Overview

The Pulumi Runner provider enables you to execute commands and deploy files to remote servers via SSH as part of your Pulumi infrastructure workflows. This provider is particularly useful for:

  • Deploying applications to remote servers
  • Running configuration scripts on target machines
  • Managing file assets and their deployment
  • Executing custom operations during infrastructure lifecycle events

Features

  • SSH Deployer Resource: Execute commands on remote servers via SSH
  • File Asset Management: Upload local files or create files from string content
  • Lifecycle Operations: Define different commands for create, update, and delete operations
  • Runner Configuration: Control execution behavior with svmkit runner config options
  • Multi-language Support: Available for Go, Node.js, Python, and .NET
  • Preview Mode: Preview operations before execution

Installation

Node.js/TypeScript

npm install @svmkit/pulumi-runner

Python

pip install pulumi_runner

Go

go get github.com/abklabs/pulumi-runner/sdk/go

.NET

dotnet add package ABKLabs.Runner

Quick Start

Node.js/TypeScript Example

import * as runner from "@svmkit/pulumi-runner";
import * as pulumi from "@pulumi/pulumi";

// Create an SSH deployer
const deployer = new runner.SSHDeployer("my-deployer", {
    connection: {
        host: "example.com",
        user: "ubuntu",
        privateKey: "-----BEGIN PRIVATE KEY-----\n...",
    },
    config: {
        keepPayload: true,        // Keep files on remote server for debugging
        aptLockTimeout: 300,     // Set apt lock timeout to 300 seconds
    },
    payload: [
        {
            localPath: "./app.tar.gz",
            mode: 0o644,
        },
        {
            contents: "#!/bin/bash\necho 'Hello World'",
            filename: "hello.sh",
            mode: 0o755,
        }
    ],
    create: {
        command: "tar -xzf app.tar.gz && ./deploy.sh",
        environment: {
            NODE_ENV: "production",
        },
    },
    update: {
        command: "tar -xzf app.tar.gz && ./update.sh",
        environment: {
            NODE_ENV: "production",
        },
    },
    delete: {
        command: "./cleanup.sh",
        environment: {
            CLEANUP_MODE: "force",
        },
    },
});

Python Example

import pulumi
import pulumi_runner as runner

# Create an SSH deployer
deployer = runner.SSHDeployer("my-deployer",
    connection=runner.ConnectionArgs(
        host="example.com",
        user="ubuntu",
        private_key="-----BEGIN PRIVATE KEY-----\n...",
    ),
    config=runner.ConfigArgs(
        keep_payload=True,        # Keep files on remote server for debugging
        apt_lock_timeout=300,    # Set apt lock timeout to 300 seconds
    ),
    payload=[
        runner.FileAssetArgs(
            local_path="./app.tar.gz",
            mode=0o644,
        ),
        runner.FileAssetArgs(
            contents="#!/bin/bash\necho 'Hello World'",
            filename="hello.sh",
            mode=0o755,
        )
    ],
    create=runner.CommandDefinitionArgs(
        command="tar -xzf app.tar.gz && ./deploy.sh",
        environment={
            "NODE_ENV": "production",
        },
    ),
    update=runner.CommandDefinitionArgs(
        command="tar -xzf app.tar.gz && ./update.sh",
        environment={
            "NODE_ENV": "production",
        },
    ),
    delete=runner.CommandDefinitionArgs(
        command="./cleanup.sh",
        environment={
            "CLEANUP_MODE": "force",
        },
    ),
)

Resources

SSHDeployer

The main resource for executing commands on remote servers via SSH.

Properties

  • connection (required): SSH connection configuration

    • host: Target server hostname or IP
    • user: SSH username
    • privateKey: SSH private key content
    • port: SSH port (optional, defaults to 22)
    • proxy: Proxy connection configuration (optional)
  • payload (optional): Array of files to upload

    • localPath: Path to local file to upload
    • contents: File content as string
    • filename: Filename when using contents
    • mode: File permissions (e.g., 0o755)
  • environment (optional): Global environment variables for all operations

    • Key-value pairs of environment variables
  • config (optional): Runner configuration options

    • keepPayload: Whether to keep uploaded files on remote server (default: false)
    • aptLockTimeout: Timeout for apt lock operations in seconds (default: 300)
    • packageConfig: Configuration for deb package management
  • create (optional): CommandDefinition for resource creation

  • update (optional): CommandDefinition for resource updates

  • delete (optional): CommandDefinition for resource deletion

CommandDefinition Properties

Each operation (create, update, delete) is a CommandDefinition object with:

  • command (required): Shell command to execute on the remote server
  • payload (optional): Additional files to upload for this specific operation
  • environment (optional): Environment variables specific to this operation

The command is executed in the context of the uploaded files and environment variables, allowing you to reference them in your scripts (e.g., ./deploy.sh, tar -xzf app.tar.gz, echo $NODE_ENV).

Note: Global payload and environment settings are merged with operation-specific settings, with operation-specific values taking precedence.

Configuration

The config field allows you to control the behavior of the runner execution. All configuration options are optional and will use sensible defaults if not specified.

keepPayload

Controls whether uploaded files are cleaned up after command execution.

// Keep files on remote server for debugging
const deployer = new runner.SSHDeployer("debug-deployer", {
    connection: { host: "example.com", user: "ubuntu", privateKey: "..." },
    config: {
        keepPayload: true,  // Files will remain in /tmp/runner-* directory
    },
    create: {
        command: "./deploy.sh"
    }
});

// Clean up files after execution (default behavior)
const deployer = new runner.SSHDeployer("clean-deployer", {
    connection: { host: "example.com", user: "ubuntu", privateKey: "..." },
    config: {
        keepPayload: false,  // Files will be cleaned up
    },
    create: {
        command: "./deploy.sh"
    }
});

aptLockTimeout

Sets the timeout for apt package lock operations (useful for package management commands).

const deployer = new runner.SSHDeployer("package-deployer", {
    connection: { host: "example.com", user: "ubuntu", privateKey: "..." },
    config: {
        aptLockTimeout: 600,  // 10 minutes timeout for apt operations
    },
    create: {
        command: "apt update && apt install -y nginx"
    }
});

Conditional Configuration

You can use Pulumi's conditional logic to set different configurations based on environment:

const isDevelopment = pulumi.getStack() === "dev";

const deployer = new runner.SSHDeployer("env-aware-deployer", {
    connection: { host: "example.com", user: "ubuntu", privateKey: "..." },
    config: {
        keepPayload: isDevelopment,  // Keep files in dev, clean up in prod
    },
    create: {
        command: "./deploy.sh"
    }
});

Functions

LocalFile

Creates a file asset from a local file path.

const fileAsset = runner.LocalFile({
    localPath: "./config.json",
    mode: 0o644,
});

StringFile

Creates a file asset from string content.

const fileAsset = runner.StringFile({
    contents: '{"key": "value"}',
    filename: "config.json",
    mode: 0o644,
});

Connection Configuration

Basic SSH Connection

const connection = {
    host: "192.168.1.100",
    user: "ubuntu",
    privateKey: "-----BEGIN PRIVATE KEY-----\n...",
    port: 22,
};

SSH Connection with Proxy

const connection = {
    host: "target-server.com",
    user: "admin",
    privateKey: "-----BEGIN PRIVATE KEY-----\n...",
    proxy: {
        host: "bastion.example.com",
        user: "bastion-user",
        privateKey: "-----BEGIN PRIVATE KEY-----\n...",
    },
};

File Assets

File assets can be created in two ways:

From Local Files

{
    localPath: "./path/to/local/file",
    mode: 0o644,
}

From String Content

{
    contents: "file content here",
    filename: "remote-filename.txt",
    mode: 0o755,
}

Best Practices

  1. Use preview mode: Always test your deployments with pulumi preview first
  2. Idempotent commands: Ensure your commands can be run multiple times safely
  3. Error handling: Include proper error handling in your deployment scripts
  4. File permissions: Set appropriate file permissions for uploaded files
  5. SSH keys: Use SSH key authentication instead of passwords for security
  6. Configuration management: Use keepPayload: true in development for debugging, false in production
  7. Timeout settings: Set appropriate aptLockTimeout for package management operations
  8. Environment-specific configs: Use conditional logic to set different configurations per environment

Development

Building the Provider

make build

Running Tests

make test

Linting

make lint

License

This project is licensed under the GNU Lesser General Public License v3.0 - see the LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Support

For support and questions, please open an issue on the GitHub repository.

Publisher

Published by ABK Labs

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •