modal
    Preparing search index...

    Type Alias SidecarCreateParams

    type SidecarCreateParams = {
        command?: string[];
        env?: Record<string, string>;
        secrets?: Secret[];
        workdir?: string;
    }
    Index

    Properties

    command?: string[]

    Command to run in the sidecar container on startup.

    env?: Record<string, string>

    Environment variables to set in the sidecar container.

    secrets?: Secret[]

    Secrets to inject into the sidecar container as environment variables.

    workdir?: string

    Working directory of the sidecar container.