Tyk Demo offers a pre-configured deployment that includes various examples showcasing Tyk's capabilities. Powered by Docker Compose for swift setup, it allows you to pick and choose the features you want to explore.
The primary use case for Tyk Demo is to act as a centralised knowledge sharing resource for client-facing technical Tyk staff. However, anyone curious about Tyk can benefit from Tyk Demo. It's hands-on sandbox environment allows anyone to experiment and learn more about Tyk's features.
Postman collections are included for some deployments. These are pre-configured to interact with the features and functionality available in the deployments, making it easy to explore and experience Tyk.
See the Contributor Guide for information on how to contribute to and extend this repository.
⚠️ Please note that this repo has been created on MacOS with Docker Desktop for Mac. You may experience issues if using a different operating system or approach.
If you encounter a problem using this repository, please try to fix it yourself and create a pull request so that others can benefit.
This project leverages a concept of deployments, enabling users to choose what gets deployed.
- Base deployment: The mandatory deployment that provides standard Tyk components (Gateway, Dashboard, Pump), databases (Redis and MongoDB), and other supporting software to enhance the demo experience.
- Feature deployments: Extend the base deployment functionality. These deployments cover specific scenarios for Tyk, such as single sign-on, analytics export, etc.
Each deployment has a dedicated directory containing all necessary deployment files and additional information.
This approach focuses on simplicity. Running a single command triggers Docker Compose to create containers, and bootstrap scripts initialise the environment. Everything is handled automatically, from configuration application to data population.
- Get a valid Tyk Self-Managed license key (click "start now" under Free trial). This is a self-service option!
- If you want to run the MDCB deployment (distributed set up with control plane and data planes), then you need to contact the Tyk team to get an MDCB license key.
The base deployment requires:
- Docker Desktop, with Docker Compose
- jq
Note that some feature deployments may have additional requirements. See deployment readmes for more information.
deployments/*
: Contains all the deployments available as sub-directoriestest.postman_environment.json
: Set of environment variables, for use when running tests with a Newman container within a Docker deploymentscripts/*.sh
: Some useful commands encapsulated in scriptsup.sh
: Brings up the deploymentdown.sh
: Takes down the deployment
The deployment directories (deployments/*
) contain the various deployments which can be made with this repo. The base deployment is in the deployments/tyk
directory. The other directories are feature deployments, which extend the base deployment functionality and require the base deployment in order to function correctly.
All of the directories contain docker-compose.yml
, bootstrap.sh
and README.md
files specific to the deployment. They may also contain directories called data
or volumes
, which hold the data necessary during bootstrapping or providing as mapped volumes into the container.
- Analytics to Datadog
- Analytics to Kibana
- Analytics to Splunk
- Bench test suite
- CI/CD with Jenkins
- Federation
- Instrumentation
- Keycloak
- Mail server
- MDCB
- MQTT
- OpenTelemetry with Jaeger
- Portal
- Python gRPC server
- SLIs and SLOs with Prometheus and Grafana
- SSO
- WAF
- (deprecated) [OpenTracing/Zipkin]
The docker-compose.yml
files in this repo use Docker environment variables to set OS environment variables for the Dashboard, Gateway and Pump containers. This allows aspects of the Tyk and Docker configuration to be overridden without having to make changes to the source configuration files.
As per standard Docker convention, the Docker environment variables are stored in a file called .env
, which is in the repository root directory.
You can use .env.example
as a starting point for your .env
file.
You must set DASHBOARD_LICENCE
variable with the valid license key you previously got.
If you are using the MDCB (mdcb
) deployment, then you need to do the same for MDCB_LICENCE
variable.
Variable | Description | Required | Default |
---|---|---|---|
DASHBOARD_LICENCE | Sets the licence used by the Tyk Dashboard | Yes | None - Must be manually set |
INSTRUMENTATION_ENABLED | Controls whether the instrumentation feature is enabled (1 ) or disabled (0 ) |
No | 0 - Set automatically by the up.sh script |
TRACING_ENABLED | Controls whether the tracing feature is enabled (true ) or disabled (false ) |
No | false - Set automatically by the up.sh script |
GATEWAY_VERSION | Sets the Tyk Gateway container image tag e.g. v4.0.0 |
No | Based on the latest release |
GATEWAY_LOGLEVEL | Sets the log level for the Tyk Gateway application e.g. debug |
No | info |
MDCB_LICENCE | Sets the licence used by the Tyk MDCB | Yes, if using the mdcb deployment, otherwise no |
None - Must be manually set |
MDCB_USER_API_CREDENTIALS | Sets the credentials used by the Tyk MDCB to authenticate with the Dashboard | Yes, if using the mdcb deployment, otherwise no |
None - Set automatically by the bootstrap.sh script |
PMP_SPLUNK_META_COLLECTORTOKEN | Sets the credentials used by the Tyk Pump to authenticate with the Splunk collector | Yes, if using the analytics-splunk deployment, otherwise no |
None - Set automatically by the bootstrap.sh script |
NEW_RELIC_API_KEY | Sets the API Key used by the OpenTelemetry collector to send data to New Relic | Yes, if using the otel/new-relic deployment, otherwise no |
None - Must be manually set |
NGROK_AUTHTOKEN | Sets the authentication token used by the Ngrok agent | Yes, if use of Ngrok/geolocation is required, otherwise no | None - Must be manually set |
There are various other environment variables used, but it's not normally necessary to set them. See the Tyk environment variables documentation for more information. The exception being the variables used for the DataDog Analytics deployment (analytics-datadog
), which has its own set of variables for configuring the DataDog integration - see the Setup section of that deployment's readme for more information.
Unless you have a specific reason to do so, it's not recommended to set the *_VERSION
environment variables e.g. GATEWAY_VERSION
. Doing so will effectively pin the image tag of the container, which could cause the bootstrap.sh
scripts to fail, as they are written to operate against the image tags specified in the docker-compose.yml
files.
Many of the containers are configured to use .env
as an environment file. This means that any standard Tyk environment variables added to .env
will be available in the container e.g. setting DB_AUDIT_ENABLED=true
enables auditing in the Dashboard.
Docker is required. Follow the Docker installation guide for your platform.
Docker Compose is required (v2.x+ recommended). If you're installing on Mac or Windows, then Docker Compose is already included as part of the base Docker install, so you don't need to do anything else. For Linux, follow the Docker Compose installation guide.
The bootstrap script uses JQ for extracting data from JSON objects, it can be installed as follows.
Install on OS X using Homebrew:
brew install jq
Install on Debian/Ubuntu using APT:
sudo apt-get install jq
See the JQ installation page for other operating systems.
Run the update-hosts.sh
script to add host entries for the Tyk Dashboard and Portal to /etc/hosts
:
sudo ./scripts/update-hosts.sh
The custom hostnames will be used by the Dashboard and Gateway to:
- Differentiate between requests for the Dashboard and Portal
- Identify the API being requested when using custom domains
The tyk/docker-compose.yml
and tyk2/docker-compose.yml
files use a Docker environment variable to set the dashboard licence. To set this, create a file called .env
in the root directory of the repo, then set the content of the file as follows, replacing <YOUR_LICENCE>
with your Dashboard licence:
DASHBOARD_LICENCE=<YOUR_LICENCE>
In addition to this, some features require entries in the .env
file. These are set automatically by the up.sh
file, depending on the deployment parameters.
ℹ️ Your Tyk licence must be valid for at least two Gateways.
To bootstrap the system we will run the up.sh
script, which will run the necessary docker compose
and bootstrap
commands to start the containers and bootstrap the system.
./up.sh
The script displays a message, showing the deployments it will create. For example:
Deployments to create:
tyk
This will bring up the standard Tyk deployment, after which you can log into the Dashboard and start using Tyk.
If you want to deploy features, run the up.sh
command, passing a parameter of the directory name of the feature to deploy. For example, to deploy both the standard Tyk deployment and the analytics-kibana
deployment:
./up.sh analytics-kibana
The feature names are the directory names from the deployments
directory.
Multiple features can be deployed at the same time by providing multiple feature parameters. For example, to deploy analytics-kibana
and instrumentation
:
./up.sh analytics-kibana instrumentation
The bootstrap scripts provide feedback on progress in the logs/bootstrap.log
file.
The bootstrap process provides credentials and other useful information in the terminal output. Check this output for the Dashboard credentials.
When you log into the Dashboard, you will find the imported APIs and Policies are now available.
There are Postman collections which complement the deployments. They contain many example requests which demonstrate Tyk features and functionality in the deployments. If a deployment has a collection it will be in the deployment directory.
The collection for the base Tyk Deployment is called tyk_demo.postman_collection.json
. Import it into Postman to start making requests.
If you want to reset your environment, you need to remove the volumes associated with the container as well as the containers themselves. The down.sh
script can do this for you.
You don't need to declare which component to remove, since they have already been registered in .bootstrap/bootstrapped_deployments
by the up.sh
script. The down.sh
script will simply remove the deployments listed in that file.
To delete the containers and associated volumes:
./down.sh
The script displays a message, showing the deployments it intends to remove. For example:
Deployments to remove:
tyk
Deployments can be resumed if their containers have stopped. This is useful for situations where you want to resume using Tyk Demo after its containers have been stopped, such as when Docker is restarted. Resuming deployments uses the existing containers and volumes, which means that the deployment resumes using its previous state. As such, it's not necessary to rebootstrap the deployment, as all the necessary data is already available.
The script automatically determines which deployments to resume by reading the deployments listed in .bootstrap/bootstrapped_deployments
.
To resume deployments, run the ./up.sh
command:
./up.sh
The script will display the deployments to be resumed. For example:
Deployments to resume:
tyk
If you want to rebootstrap the deployments, then run the ./down.sh
script before running ./up.sh
. This will remove the containers and volumes of the existing deployments, which then allows the ./up.sh
script to bootstrap the deployments.
To redeploy an existing deployment, run the ./down.sh
script followed by the ./up.sh
script:
./down.sh && ./up.sh
This deletes the containers and volumes associated with the existing deployment, then creates a new deployment based on the up.sh
command.
Feature deployments can be added to existing deployments by running the up.sh
script consecutively. This avoids having to remove the existing deployment with the down.sh
script.
For example, if ./up.sh
has already been run, there will be a standard tyk
deployment currently deployed. To add the sso
deployment to the existing deployment, run:
./up.sh sso
Note that existing deployments do not need to be specified. The script detects existing deployments and automatically resumes them. A message is displayed to confirm the situation:
Deployments to resume:
tyk
Note: Resumed deployments are not rebootstrapped - they use their existing volumes
Tip: To rebootstrap deployments, you must first remove them using the down.sh script
Deployments to create:
sso
It is difficult to use the usual docker-compose command in this project since we have various files and project directories. To make commands such as ps
or restart
easier to run I have created the script ./docker-compose-command.sh
. You can use it in the same way as you would with docker-compose:
- To check running processes:
./docker-compose-command.sh ps
- To restart the gateway:
./docker-compose-command.sh restart tyk-gateway
- To tail the logs in the Redis container:
./docker-compose-command.sh logs -f tyk-redis
- To bash into redis container:
./docker-compose-command.sh exec tyk-redis bash
Tyk Demo installation hasn't finished with the usual output of hostnames and a password to login into the Dashboard
The license key might be missing or expired. You can see a message about it in bootstrap.log.
You can use ./scripts/update-licence.s
to quickly update the licence key
./scripts/update-licence.sh my-licence-key
You will also see an error in the field that has the base64 encoding of the OAS in the catalogue document.
Since the value cannot be base64 decoded it means that the base64 encoding failed during bootstrap.
One possible reason is that you are using Brew's base64 binary since Brew's version inserts \r
to the output rather than just output the base64 encoding as is. You can run whereis base64
to find out. The expected path should be /usr/bin/base64
.
It is normal to see this message in the logs/bootstrap.log
file. It appears when the bootstrap script is waiting for a service to become available before proceeding to the next step. The number of times the message is repeated depends on the performance of your system, as errors are usually due to waiting for a service to start up. So you may find that this message is repeated many times, but will eventually stop and the bootstrap process moves on.
If the message repeats without moving on then the service being tested is experiencing a problem. In this situation, you should:
- Check for error messages in the container logs of the service being tested.
- Ensure Docker has sufficient resources to run the deployment. The standard
tyk
deployment should be ok with just 1GB RAM, but it is recommended to make more RAM available (2GB+) when combining multiple deployments.
These steps will help you diagnose the source of the problem.