SlideShare a Scribd company logo
© OPITZ CONSULTING 2023 / Öffentlich
Kong 101 – Jumpstart into the world of APIs 1
Brühl, 2023-06-21
Sven Bernhardt
KONG 101 - JUMPSTART
INTO THE WORLD OF APIS
© OPITZ CONSULTING 2023 / Öffentlich
WORKSHOP-MATERIAL DOWNLOAD
Kong 101 – Jumpstart into the world of APIs 2
https://bit.ly/449Zggm
© OPITZ CONSULTING 2023 / Öffentlich
THAT‘S ME
Kong 101 – Jumpstart into the world of APIs 3
Sven Bernhardt
Cloud-Native enthusiast, API & integration geek. Always curious how new
technologies and concepts can help to make things more valuable and efficient.
@sbernhardt
https://svenbernhardt.wordpress.com/
Chief Architect / Integration Evangelist
OPITZ CONSULTING Deutschland
GmbH
© OPITZ CONSULTING 2023 / Öffentlich
API GATEWAY
Kong 101 – Jumpstart into the world of APIs 4
¢ Single entry point for clients to access
Services
¢ No matter the implementation technology
¢ No matter the deployment model (Monolithic
or µService)
¢ Provides a consistent governance model
¢ Decouples Client and Service implementation
¢ Is deployed separately in its own instance
¢ Deployment models:
¢ Bundled data and control plane
¢ Independent data and control plane
Source: https://tinyurl.com/yxbds3cd
© OPITZ CONSULTING 2023 / Öffentlich
Business
Logic (B)
Policy (P)
SHARED POLICY LAYER
Kong 101 – Jumpstart into the world of APIs 5
OTHER
MONOLITH
MICROSERVICES 3RD-PARTY
Routing
Load Balancing
Authentication
Authorization
Logs & Metrics
Rate Limiting
Caching
Validation
Transformation
MULTI-CLOUD & KUBERNETES
ON-PREMISE
HOSTING
B
Shared Policy Layer (Kong Gateway)
B B B B B B
B B B
Serverless
(e.g. AWS
Lambda)
More applications and services
More languages and protocols
REST}
{
More deployment types
© OPITZ CONSULTING 2023 / Öffentlich
KONG API GATEWAY
Kong 101 – Jumpstart into the world of APIs 6
¢ Build on Open Source, driven by the community
¢ 35.1K GitHub Stars
¢ 338 Contributors
¢ 130 Releases (since 2015, current Version: 3.3.0)
¢ Optimized for speed
¢ Flexible deployment options
¢ Unlimited extensibility
¢ Itself based on APIs (Everything is an API!)
Graphic and more details: https://konghq.com/blog/why-kong-is-the-best-api-gateway
© OPITZ CONSULTING 2023 / Öffentlich
FLEXIBILITY TO FIT IN ANY ENVIRONMENT
Kong 101 – Jumpstart into the world of APIs 7
¢ Kong Gateway is Kubernetes-native
¢ Not everyone is on Kubernetes
¢ IT architectures are usually heterogeneous
¢ Flexibility with respect to the environment
¢ Configuration flexibility depending on
deployment
¢ Supports any database as backend store that
provides a postgres-compatible interface
Graphic source: https://konghq.com/blog/why-kong-is-the-best-api-gateway
© OPITZ CONSULTING 2023 / Öffentlich
MODULAR, EXTENSIBLE PLUGIN ARCHITECTURE
Kong 101 – Jumpstart into the world of APIs 8
¢ Plugins deliver API Management capabilities
¢ AuthN/AuthZ
¢ Traffic control
¢ Security
¢ Observability
¢ … more see PluginHub or GitHub
¢ Keeps Kong Gateway Core lightweight and
fast
¢ Extensibility through Plugin Development Kit
Graphic source: https://docs.konghq.com/gateway/latest/
© OPITZ CONSULTING 2023 / Öffentlich
EASY TO INTEGRATE IN CI/CD PIPELINES
Kong 101 – Jumpstart into the world of APIs 9
¢ In Kong Gateway, everything is an API
¢ Resources can be managed using:
¢ Kubernetes CRDs
¢ YAML configuration (via decK)
¢ RESTful Admin API
¢ Possiblity to establish an APIOps approach
that allows for rapid API delivery
© OPITZ CONSULTING 2023 / Öffentlich
BASIC CONCEPTS – ROUTES & SERVICES
Kong 101 – Jumpstart into the world of APIs 10
µService
2
µService
1
Client 1
Client 2
Client 3 COTS
GET
POST, PUT, DELETE
GET, POST,
PUT, DELETE
GET, POST,
PUT, DELETE
Clients
Services
Routes
Backend
apps
Kong
Gateway
© OPITZ CONSULTING 2023 / Öffentlich
BASIC CONCEPTS – UPSTREAMS, CONSUMERS, PLUGINS
Kong 101 – Jumpstart into the world of APIs 11
µService
2a
µService
1
Route Service
Client 1
GET, POST, PUT, DELETE
P P P P
µService
2b
Route
Client 2
GET, POST, PUT, DELETE
P
P P
Plugins
Kong
Gateway
Consum
er
Upstream
P
© OPITZ CONSULTING 2023 / Öffentlich
FLEXIBLE DEPLOYMENT OPTIONS – STANDALONE MODE
Kong 101 – Jumpstart into the world of APIs 12
¢ Kong Gateway Nodes deployed on VM, Bare
Metal or Dockerized
¢ Simple Deployment architecture
¢ Configuration using:
¢ RESTful Admin API
¢ decK
¢ Availability of Gateway Nodes is depending
on the database availability
Postgres-compatible
Database
Gateway
Node
Gateway
Node
Gateway Cluster
© OPITZ CONSULTING 2023 / Öffentlich
FLEXIBLE DEPLOYMENT OPTIONS – HYBRID MODE
Kong 101 – Jumpstart into the world of APIs 13
¢ Data Plane (DP) Node only has connection to
Control Plane Node
¢ Control Plane (CP) Node Has connection to
Database and manages all DP Nodes
¢ Configuration: Depends on CP Deployment
¢ Benefits:
¢ Deployment flexibility
¢ Increased reliability
¢ Traffic reduction
¢ Increased security
¢ Ease of management
Postgres-compatible
Database
Data Plane
Node
Data Plane
Node
Gateway Cluster
Control Plane
Node
Data Pane
Node
On-Premises Cloud Provider 1
© OPITZ CONSULTING 2023 / Öffentlich
FLEXIBLE DEPLOYMENT OPTIONS – KUBERNETES (K8S)
Kong 101 – Jumpstart into the world of APIs 14
¢ Kong K8s Ingress Controller translates K8s
resources into Kong Gateway configuration
¢ Deployment
¢ With or without database
¢ Possibility to run in hybrid mode
¢ Configuration using K8s CRDs
¢ Kubernetes can take care about:
¢ High availability
¢ Load Balancing
¢ Auto-scaling …
¢ Attention: there are restrictions, when deployed
without database
Kong Ingress
Controller Kong Proxy
© OPITZ CONSULTING 2023 / Öffentlich
Kong 101 – Jumpstart into the world of APIs 15
LABS
https://opitzcloud.canto.global/b/GRBHD
© OPITZ CONSULTING 2023 / Öffentlich
KONG IS KING
Kong 101 – Jumpstart into the world of APIs 16
¢ Getting started with API Management using
Kong is easy!
¢ Ease-of-use with respect to implementation
and deployment
¢ Kong Gateway provides lightweight, flexible
architecture
¢ Kong Gateway is developed efficiency in
mind:
¢ Efficient API delivery though automation with
CI/CD
¢ Efficient provisioning using IaC (Ansible,
Terraform)
© OPITZ CONSULTING 2023 / Öffentlich
Kong 101 – Jumpstart into the world of APIs 17
Q & A
© OPITZ CONSULTING 2023 / Öffentlich
IN CASE OF ANY QUESTIONS…
Kong 101 – Jumpstart into the world of APIs 18
Sven Bernhardt
Chief Architect / Integration Evangelist |
Oracle ACE Director
OPITZ CONSULTING Deutschland GmbH
Kirchstrasse 6, 51647 Gummersbach, Germany
Phone: +49 172 2193529
Mail: sven.bernhardt@opitz-consulting.com
Twitter: @sbernhardt
Blog: https://svenbernhardt.wordpress.com
© OPITZ CONSULTING 2023 / Öffentlich
LINKS & REFERENCES
Kong 101 – Jumpstart into the world of APIs 19
¢ Kong Blog: https://konghq.com/blog/why-kong-is-the-best-api-gateway
¢ Kong PluginHub: https://docs.konghq.com/hub/
¢ Kong Gateway Documentation: https://docs.konghq.com/gateway/latest/
¢ Tutorial CI/CD: https://konghq.com/blog/api-gateway-ci-cd-pipeline
¢ Kong deck Documentation: https://docs.konghq.com/deck/latest/
¢ Kong Documentation Plugin compatibility: https://docs.konghq.com/kubernetes-ingress-
controller/latest/references/plugin-compatibility/
¢ Kong Documentation Admin API: https://docs.konghq.com/gateway/latest/admin-api/#route-
object

More Related Content

PDF
Rumble in the Jungle - API Kickstart with Kong
PDF
Flexible, hybrid API-led software architectures with Kong
PDF
Efficient API delivery with APIOps
PDF
Effective and simple - integration architectures with Apache Camel and Quarkus
PDF
Cloud-native Application Development on OCI
PDF
Efficient API delivery with APIOps
PDF
Service integration made easy with Open Source Kuma
PDF
Architecture Room Stuttgart - "Cloud-native ist nur ein Teil des Spiels!"
Rumble in the Jungle - API Kickstart with Kong
Flexible, hybrid API-led software architectures with Kong
Efficient API delivery with APIOps
Effective and simple - integration architectures with Apache Camel and Quarkus
Cloud-native Application Development on OCI
Efficient API delivery with APIOps
Service integration made easy with Open Source Kuma
Architecture Room Stuttgart - "Cloud-native ist nur ein Teil des Spiels!"

Similar to Kong 101 - Jumpstart into the world of APIs (20)

PDF
Cloud-native Application Development - The new normal
PDF
Implementing Cloud-native apps on OCI
PDF
Cloud-native is just part of the game
PDF
Implementing API-led Cloud-native apps on OCI
PDF
Implementing API-led Cloud-native apps on OCI
PDF
API Gateway or Service mesh - Complementary or excluding concepts
PDF
Implementing API-led Cloud-native apps on OCI
PDF
Integration architectures based on Microservices, APIs and events
PDF
Declarative observability management for Microservice architectures
PDF
Service Mesh Advanced Use Cases
PDF
One Gateway to Rule them All: Building a Federated API Management Platform
PDF
Service Mesh Advanced Use Cases
PDF
API Gateway or Service Mesh - Complementary or excluding concepts
PDF
Build and Manage Multi-Cloud Applications Using Kuma
PDF
Kong Mesh入門編
PDF
Evolution of API-driven Architectures
PDF
Evolution of API-driven architectures
PDF
Cloud-native Integration in the Oracle Cloud
PDF
Modern Integration based on OCI Cloud-native Services
PDF
Analytics meets Integration – Modern Development mit Data APIs
Cloud-native Application Development - The new normal
Implementing Cloud-native apps on OCI
Cloud-native is just part of the game
Implementing API-led Cloud-native apps on OCI
Implementing API-led Cloud-native apps on OCI
API Gateway or Service mesh - Complementary or excluding concepts
Implementing API-led Cloud-native apps on OCI
Integration architectures based on Microservices, APIs and events
Declarative observability management for Microservice architectures
Service Mesh Advanced Use Cases
One Gateway to Rule them All: Building a Federated API Management Platform
Service Mesh Advanced Use Cases
API Gateway or Service Mesh - Complementary or excluding concepts
Build and Manage Multi-Cloud Applications Using Kuma
Kong Mesh入門編
Evolution of API-driven Architectures
Evolution of API-driven architectures
Cloud-native Integration in the Oracle Cloud
Modern Integration based on OCI Cloud-native Services
Analytics meets Integration – Modern Development mit Data APIs

More from Sven Bernhardt (9)

PDF
The integration revolution: Building bridges between On-premises and Cloud ec...
PDF
Efficient development of smart apps: The role of AI gateways
PDF
Next-level Kubernetes Service Management with an API gateway
PDF
Modernization options for Oracle Forms applications
PDF
Elevating Development: Embracing APIOps for Enhanced Developer Productivity
PDF
Build and Manage Multi-Cloud Applications Using Kuma
PDF
Torch the light - Implementing Observability for Microservice Architectures
PDF
Analytics meets Integration - Modern Development with Data APIs
PDF
Cloud-native Integration in the Oracle Cloud
The integration revolution: Building bridges between On-premises and Cloud ec...
Efficient development of smart apps: The role of AI gateways
Next-level Kubernetes Service Management with an API gateway
Modernization options for Oracle Forms applications
Elevating Development: Embracing APIOps for Enhanced Developer Productivity
Build and Manage Multi-Cloud Applications Using Kuma
Torch the light - Implementing Observability for Microservice Architectures
Analytics meets Integration - Modern Development with Data APIs
Cloud-native Integration in the Oracle Cloud

Recently uploaded (20)

PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Approach and Philosophy of On baking technology
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Modernizing your data center with Dell and AMD
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
A Presentation on Artificial Intelligence
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Empathic Computing: Creating Shared Understanding
PPTX
Big Data Technologies - Introduction.pptx
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Electronic commerce courselecture one. Pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Encapsulation theory and applications.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
CIFDAQ's Market Insight: SEC Turns Pro Crypto
The Rise and Fall of 3GPP – Time for a Sabbatical?
Approach and Philosophy of On baking technology
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Modernizing your data center with Dell and AMD
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
A Presentation on Artificial Intelligence
“AI and Expert System Decision Support & Business Intelligence Systems”
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Empathic Computing: Creating Shared Understanding
Big Data Technologies - Introduction.pptx
The AUB Centre for AI in Media Proposal.docx
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Electronic commerce courselecture one. Pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Reach Out and Touch Someone: Haptics and Empathic Computing
Encapsulation theory and applications.pdf
Review of recent advances in non-invasive hemoglobin estimation
Building Integrated photovoltaic BIPV_UPV.pdf

Kong 101 - Jumpstart into the world of APIs

  • 1. © OPITZ CONSULTING 2023 / Öffentlich Kong 101 – Jumpstart into the world of APIs 1 Brühl, 2023-06-21 Sven Bernhardt KONG 101 - JUMPSTART INTO THE WORLD OF APIS
  • 2. © OPITZ CONSULTING 2023 / Öffentlich WORKSHOP-MATERIAL DOWNLOAD Kong 101 – Jumpstart into the world of APIs 2 https://bit.ly/449Zggm
  • 3. © OPITZ CONSULTING 2023 / Öffentlich THAT‘S ME Kong 101 – Jumpstart into the world of APIs 3 Sven Bernhardt Cloud-Native enthusiast, API & integration geek. Always curious how new technologies and concepts can help to make things more valuable and efficient. @sbernhardt https://svenbernhardt.wordpress.com/ Chief Architect / Integration Evangelist OPITZ CONSULTING Deutschland GmbH
  • 4. © OPITZ CONSULTING 2023 / Öffentlich API GATEWAY Kong 101 – Jumpstart into the world of APIs 4 ¢ Single entry point for clients to access Services ¢ No matter the implementation technology ¢ No matter the deployment model (Monolithic or µService) ¢ Provides a consistent governance model ¢ Decouples Client and Service implementation ¢ Is deployed separately in its own instance ¢ Deployment models: ¢ Bundled data and control plane ¢ Independent data and control plane Source: https://tinyurl.com/yxbds3cd
  • 5. © OPITZ CONSULTING 2023 / Öffentlich Business Logic (B) Policy (P) SHARED POLICY LAYER Kong 101 – Jumpstart into the world of APIs 5 OTHER MONOLITH MICROSERVICES 3RD-PARTY Routing Load Balancing Authentication Authorization Logs & Metrics Rate Limiting Caching Validation Transformation MULTI-CLOUD & KUBERNETES ON-PREMISE HOSTING B Shared Policy Layer (Kong Gateway) B B B B B B B B B Serverless (e.g. AWS Lambda) More applications and services More languages and protocols REST} { More deployment types
  • 6. © OPITZ CONSULTING 2023 / Öffentlich KONG API GATEWAY Kong 101 – Jumpstart into the world of APIs 6 ¢ Build on Open Source, driven by the community ¢ 35.1K GitHub Stars ¢ 338 Contributors ¢ 130 Releases (since 2015, current Version: 3.3.0) ¢ Optimized for speed ¢ Flexible deployment options ¢ Unlimited extensibility ¢ Itself based on APIs (Everything is an API!) Graphic and more details: https://konghq.com/blog/why-kong-is-the-best-api-gateway
  • 7. © OPITZ CONSULTING 2023 / Öffentlich FLEXIBILITY TO FIT IN ANY ENVIRONMENT Kong 101 – Jumpstart into the world of APIs 7 ¢ Kong Gateway is Kubernetes-native ¢ Not everyone is on Kubernetes ¢ IT architectures are usually heterogeneous ¢ Flexibility with respect to the environment ¢ Configuration flexibility depending on deployment ¢ Supports any database as backend store that provides a postgres-compatible interface Graphic source: https://konghq.com/blog/why-kong-is-the-best-api-gateway
  • 8. © OPITZ CONSULTING 2023 / Öffentlich MODULAR, EXTENSIBLE PLUGIN ARCHITECTURE Kong 101 – Jumpstart into the world of APIs 8 ¢ Plugins deliver API Management capabilities ¢ AuthN/AuthZ ¢ Traffic control ¢ Security ¢ Observability ¢ … more see PluginHub or GitHub ¢ Keeps Kong Gateway Core lightweight and fast ¢ Extensibility through Plugin Development Kit Graphic source: https://docs.konghq.com/gateway/latest/
  • 9. © OPITZ CONSULTING 2023 / Öffentlich EASY TO INTEGRATE IN CI/CD PIPELINES Kong 101 – Jumpstart into the world of APIs 9 ¢ In Kong Gateway, everything is an API ¢ Resources can be managed using: ¢ Kubernetes CRDs ¢ YAML configuration (via decK) ¢ RESTful Admin API ¢ Possiblity to establish an APIOps approach that allows for rapid API delivery
  • 10. © OPITZ CONSULTING 2023 / Öffentlich BASIC CONCEPTS – ROUTES & SERVICES Kong 101 – Jumpstart into the world of APIs 10 µService 2 µService 1 Client 1 Client 2 Client 3 COTS GET POST, PUT, DELETE GET, POST, PUT, DELETE GET, POST, PUT, DELETE Clients Services Routes Backend apps Kong Gateway
  • 11. © OPITZ CONSULTING 2023 / Öffentlich BASIC CONCEPTS – UPSTREAMS, CONSUMERS, PLUGINS Kong 101 – Jumpstart into the world of APIs 11 µService 2a µService 1 Route Service Client 1 GET, POST, PUT, DELETE P P P P µService 2b Route Client 2 GET, POST, PUT, DELETE P P P Plugins Kong Gateway Consum er Upstream P
  • 12. © OPITZ CONSULTING 2023 / Öffentlich FLEXIBLE DEPLOYMENT OPTIONS – STANDALONE MODE Kong 101 – Jumpstart into the world of APIs 12 ¢ Kong Gateway Nodes deployed on VM, Bare Metal or Dockerized ¢ Simple Deployment architecture ¢ Configuration using: ¢ RESTful Admin API ¢ decK ¢ Availability of Gateway Nodes is depending on the database availability Postgres-compatible Database Gateway Node Gateway Node Gateway Cluster
  • 13. © OPITZ CONSULTING 2023 / Öffentlich FLEXIBLE DEPLOYMENT OPTIONS – HYBRID MODE Kong 101 – Jumpstart into the world of APIs 13 ¢ Data Plane (DP) Node only has connection to Control Plane Node ¢ Control Plane (CP) Node Has connection to Database and manages all DP Nodes ¢ Configuration: Depends on CP Deployment ¢ Benefits: ¢ Deployment flexibility ¢ Increased reliability ¢ Traffic reduction ¢ Increased security ¢ Ease of management Postgres-compatible Database Data Plane Node Data Plane Node Gateway Cluster Control Plane Node Data Pane Node On-Premises Cloud Provider 1
  • 14. © OPITZ CONSULTING 2023 / Öffentlich FLEXIBLE DEPLOYMENT OPTIONS – KUBERNETES (K8S) Kong 101 – Jumpstart into the world of APIs 14 ¢ Kong K8s Ingress Controller translates K8s resources into Kong Gateway configuration ¢ Deployment ¢ With or without database ¢ Possibility to run in hybrid mode ¢ Configuration using K8s CRDs ¢ Kubernetes can take care about: ¢ High availability ¢ Load Balancing ¢ Auto-scaling … ¢ Attention: there are restrictions, when deployed without database Kong Ingress Controller Kong Proxy
  • 15. © OPITZ CONSULTING 2023 / Öffentlich Kong 101 – Jumpstart into the world of APIs 15 LABS https://opitzcloud.canto.global/b/GRBHD
  • 16. © OPITZ CONSULTING 2023 / Öffentlich KONG IS KING Kong 101 – Jumpstart into the world of APIs 16 ¢ Getting started with API Management using Kong is easy! ¢ Ease-of-use with respect to implementation and deployment ¢ Kong Gateway provides lightweight, flexible architecture ¢ Kong Gateway is developed efficiency in mind: ¢ Efficient API delivery though automation with CI/CD ¢ Efficient provisioning using IaC (Ansible, Terraform)
  • 17. © OPITZ CONSULTING 2023 / Öffentlich Kong 101 – Jumpstart into the world of APIs 17 Q & A
  • 18. © OPITZ CONSULTING 2023 / Öffentlich IN CASE OF ANY QUESTIONS… Kong 101 – Jumpstart into the world of APIs 18 Sven Bernhardt Chief Architect / Integration Evangelist | Oracle ACE Director OPITZ CONSULTING Deutschland GmbH Kirchstrasse 6, 51647 Gummersbach, Germany Phone: +49 172 2193529 Mail: sven.bernhardt@opitz-consulting.com Twitter: @sbernhardt Blog: https://svenbernhardt.wordpress.com
  • 19. © OPITZ CONSULTING 2023 / Öffentlich LINKS & REFERENCES Kong 101 – Jumpstart into the world of APIs 19 ¢ Kong Blog: https://konghq.com/blog/why-kong-is-the-best-api-gateway ¢ Kong PluginHub: https://docs.konghq.com/hub/ ¢ Kong Gateway Documentation: https://docs.konghq.com/gateway/latest/ ¢ Tutorial CI/CD: https://konghq.com/blog/api-gateway-ci-cd-pipeline ¢ Kong deck Documentation: https://docs.konghq.com/deck/latest/ ¢ Kong Documentation Plugin compatibility: https://docs.konghq.com/kubernetes-ingress- controller/latest/references/plugin-compatibility/ ¢ Kong Documentation Admin API: https://docs.konghq.com/gateway/latest/admin-api/#route- object