Skip to content

TykTechnologies/tyk-argocd-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tyk ArgoCD Demo

This repository will help you get started with Tyk deployment in Kubernetes and allow you to leverage OSS tools such as Prometheus, Jaeger for monitoring and Keycloak for managing API authentication and authorization in k8s using OAuth2.0

Installation

Minikube

You can find instructions on how to run this on Minikube here.

Tyk

Choose between single cluster all-in-one deployment model or distributed deployment model.

Tyk Stack (Single cluster all-in-one deployment)

Make sure you have the Tyk Dashboard license key ready and replace "<REPLACE_WITH_LICENSE>" with it in the command below.

Create secret with Tyk credentials:

kubectl create namespace tyk
kubectl create secret generic tyk-conf --namespace=tyk \
   --from-literal=APISecret=CHANGEME \
   --from-literal=AdminSecret=12345 \
   --from-literal=DashLicense=<REPLACE_WITH_LICENSE> \
   --from-literal=OperatorLicense=<REPLACE_WITH_LICENSE>

Install Tyk using ArgoCD Application CRDs

kubectl apply -f apps/dependencies
kubectl apply -f apps/observability
kubectl apply -f apps/security
kubectl apply -f apps/main/tyk-stack.yaml

You can expose the Tyk Dashboard and Gateway to your localhost using the following command:

kubectl port-forward svc/gateway-svc-tyk-gateway --namespace tyk 8080 &
kubectl port-forward svc/dashboard-svc-tyk-dashboard --namespace tyk 3000 &

You can check the state of the Tyk gateway using the following curl command:

curl localhost:8080/hello

You can access Tyk Dashboard here:

http://localhost:3000

Default admin login is "[email protected]" / "topsecretpassword". It can be changed in the ArgoCD app manifest.

Tyk (Distributed deployment)

Please follow the instructions here to install a distributed Tyk deployment.

Supplementary Deployments

Observability Stack
Security Stack

Examples

Examples folder contains yaml files for deployments, API configuration and traffic generation k6 scripts. Checkout the docs folder to find out more about what each of these examples contain.

kubectl apply -R -f examples/

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published