Skip to content

Latest commit

 

History

History

httpbin

httpbin

This is a helm chart that deploys targeted application and a Tyk API.

  1. In image section, configure the application image tag. Alternatively, modify appVersion in Charts.yaml
image:
  repository: kennethreitz/httpbin
  pullPolicy: IfNotPresent
  # Overrides the image tag whose default is the chart appVersion.
  tag: ""
  1. In api section, configure listenPath of the Tyk API and also operator context to use.
api:
  listenPath: /httpbin
  operatorContext:
    name: tyk-operator-ctx-dev
    namespace: tyk-operator-system

  1. To install manually using Helm
kubectl create ns httpbin-app
helm install httpbin . -n httpbin-app -f values-dev.yaml
  1. To roll out a new version of your application on Dev / Staging / Production environment

Modify values.yaml of the target environment with which application version (image tag) to be deployed. The API manifests could also be templated for different environments easily.

  1. To test the API
curl {GATEWAY_URL}/httpbin/get