Skip to content

steadybit/extension-postman

Folders and files

NameName
Last commit message
Last commit date
Jan 3, 2025
Jan 16, 2025
Mar 4, 2024
Oct 7, 2024
Dec 23, 2024
May 4, 2023
Oct 4, 2023
Apr 8, 2024
Dec 18, 2024
Sep 21, 2022
Feb 17, 2025
Aug 1, 2022
Nov 20, 2024
Jan 14, 2025
Apr 19, 2023
Mar 3, 2025
Mar 3, 2025
Nov 12, 2024
Aug 1, 2022
Sep 14, 2023

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

Kubernetes

Detailed information about agent and extension installation in kubernetes can also be found in our documentation.

Recommended (via agent helm chart)

All extensions provide a helm chart that is also integrated in the helm-chart of the agent.

You must provide additional values to activate this extension.

--set extension-postman.enabled=true \
--set extension-postman.postman.apiKey={{YOUR_POSTMAN_API_KEY}} \

Additional configuration options can be found in the helm-chart of the extension.

Alternative (via own helm chart)

If you need more control, you can install the extension via its dedicated helm-chart.

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

Linux Package

This extension is currently not available as a Linux package.

Extension registration

Make sure that the extension is registered with the agent. In most cases this is done automatically. Please refer to the documentation for more information about extension registration and how to verify.

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:pwd@CompanyProxy.com:8888"