Skip to content

steadybit/extension-postman

Repository files navigation

Kong logo

Steadybit extension-postman

A Steadybit extension to execute Postman collections via Postman Cloud Api.

Learn about the capabilities of this extension in our Reliability Hub.

Prerequisites

  • A Postman account with a valid API Key is needed to execute collections.

Configuration

Postman_Api_Key

Configuration

Environment Variable Helm value Meaning Required Default
HTTPS_PROXY via extraEnv variables Configure the proxy to be used for Postman communication. no
STEADYBIT_EXTENSION_POSTMAN_API_KEY postman.apiKey Configure the api-key to be used for Postman communication. yes

The extension supports all environment variables provided by steadybit/extension-kit.

Installation

Using Docker

docker run \
  --rm \
  -p 8085 \
  --name steadybit-extension-postman \
  ghcr.io/steadybit/extension-postman:latest

Using Helm in Kubernetes

helm repo add steadybit-extension-postman https://steadybit.github.io/extension-postman
helm repo update
helm upgrade steadybit-extension-postman \
    --install \
    --wait \
    --timeout 5m0s \
    --create-namespace \
    --namespace steadybit-agent \
    --set postman.apiKey=<YOUR_API_KEY> \
    steadybit-extension-postman/steadybit-extension-postman

Register the extension

Make sure to register the extension at the steadybit platform. Please refer to the documentation for more information.

Proxy

To communicate to Postman via a proxy, we need the environment variable https_proxy to be set. This can be set via helm using the extraEnv variable

--set "extraEnv[0].name=HTTPS_PROXY" \
--set "extraEnv[0].value=https:\\user:[email protected]:8888"