SlideShare a Scribd company logo
Container orchestration and
microservices world
Karol Chrapek
the story about containers
orchestration.
Novomatic Technologies Poland
● R&D center for Novomatic
● was established in 1997 (20 years)
● more than 300 specialists
● focusing on high-tech gaming technologies and entertainment market
● more info here: novomatic-tech.com
Why do we need containers in NTP?
● Unified deployment method.
● Accelerate software development, deployment and shipping processes.
● Simplify cooperation with different teams / companies inside the Novomatic group.
● Reduce the need to maintain dev infrastructure in each project.
● Solve problem with some legacy library and hardware.
Container evolution in NTP
● “Think tank team” experiment with container:
○ speed up CI phase
○ simplify deployment and upgrade processes
○ run them everywhere (local test ;))
● TTT created “Container’s Evelen” and showed a few presentations internally.
● More teams decided to use containers for test purposes.
● A few small projects start using docker in production.
● We needed solution for containers’ platform at scale.
● TTT deployed a first Kubernetes dev custer in NTP.
● “DevOps team” took responsibility for K8S stacks.
● DOT created a new clusters inside NTP.
@Hefzul Bari
Developers needs?
● Easy to run and share with other teams.
● Reduce number of issues forwarded to infrastructure team.
● One orchestration method/tool for local and production environments.
● A platform ready for public clouds.
● Support of legacy apps and their dependencies.
● Learn something new.
Business needs?
● Reducing deployment and scalability windows.
● Run on both classes of hardware: commodity and enterprise.
● The same deployment model for different environments and teams.
● Reducing performance degradation window during an failure.
● All new products should increase environment stability.
● Most of our clients require on-premise solution.
Why did we chose kubernetes?
● We tested different tools and we choose one that suits “best” to our model.
● Currently k8s is container orchestration “standard”.
● All main cloud providers are compatible with kubernetes (GKE, AKS, EKS).
● Some clients own on premise Kubernetes infra, some teams prefer cloud providers but software
deployment method stays the same.
● Approved by development teams and clients.
● Open source software.
Development environments
● previous: one k8s cluster provisioned via custom bash scripts
● now: three two k8s clusters provisioned via Kubespray
○ 8-10 nodes
○ all nodes are virtual machines on Cisco stack
● some developers use Minikube
● sometimes additional test envs are exposed by our clients
PaaS - requirements
Operations:
● multi-datacenter
● high availability
● easy to provisioning
● on demand scalability
● security
Developers:
● config management
● secret management
● service discovery
● blue-green deployment
● tracing
Both:
● telemetry
● logging
● self-healing
● rolling update
@Damien Pollet - flickr
Lesson learned
#1 Kubernetes is a distributed platform
#1.1 Kubernetes architecture
#2 Kubernetes as a PaaS core
#2.1 Kubernetes as a PaaS core
Platform [1]:
- Distribution (55)
- Hosted (34)
- Installer (18)
Others:
- Application definition
& Image Build [2]
- Service Proxy [3]
- Service Mesh [4]
- Network [5]
- Security [6]
- Observability [7]
- Storage [8]
1 7
2
3 4
5
6
8
#3 Kubernetes - cutting edge vs prod grade
API components (1.14) Version
CronJob v1beta1
Ingress v1beta1
PodSecurityPolicy v1beta1
CSI Driver v1beta1
#4 Etcd - replication and consistency
Problems:
● Etcd size sometimes starts growing and grows … [#8009]
● Network glitch reducing etcd cluster availability seriously [#7321]
● Test clientv3 balancer under network partitions, other failures [#8711]
@jevans
#5 Kubernetes API
● CoreDNS crash when API server down [#2629]
● CVE-2018-1002105 [#71411]
● When API server down operators and some sidecars /init containers could crash (always HA)
● Kubernetes scheduler and controller crash when they are connected to localhost [#22846 and
#77764 ]
@jevans
#6 Small deployment and edge computing
● edge computing at Chick-fil-A
● Services overhead
● Deployment and monitoring is not so easy.
● Challenge: Cross cluster connections.
#7 Enforcing default limits for containers
>Ja [2:20 PM]
ale widze ostatnio masz twardą rękę do podziałów zasobów po zespołach :)
ja mysle ze w tym tygodniu poprawie te limity i konfiguracje
….
bo mi trochę głupio, że z prostymi problemami się borykamy:
>Kolega XYZ [3:23 PM]
moja babcia zawsze mówiła, że głupio to jest kraść
#8 Run stateful apps
https://twitter.com/kelseyhightower/status/963413508300812295
#9 Operator helps to manage STS but:
● they are complex,
● mostly support 60-80% of all maintaining tasks,
● chose manage services in cloud or classic orchestration for on-premise solution,
● sometimes sts apps version bump required manual operations.
#10 Persistence volumes and k8s on-premise
● NFS - replication is tricky
● Rook operator [ceph or edgeFS] - complex
● Local volume still in Beta https://kubernetes.io/blog/2018/04/13/local-persistent-volumes-beta/
● Expanding Persistent Volumes Claims still in beta
● Flexvolume and CSI driver
#11 App flapping-> connection reset via
ingress
Symptoms: Active connections reset after 5 minutes.
Root cause:
1. Pod rescheduled (container OOM), new pod == new IP.
2. Service add new endpoint -> nginx configuration reload .
3. Nginx conf reload -> wait 5 minutes (worker-shutdown-timeout)
and kill old worker.
Related issue:#2461
nginx.com
#12 Multitenant and RBAC
● Single tenant and multiple clusters or one multi-tenant cluster.
● Universal permission by resource type.
● No field-level access control.
#13 Namespace - resource isolation ;)
https://xkcd.com/2044/
#14 Network Policy
By default network is “flat” inside Kubernetes ;)
Common network policies:
https://github.com/ahmetb/kubernetes-network-policy-recipes
kind: NetworkPolicy
apiVersion: networking.k8s.io/v1
metadata:
namespace: secondary
name: deny-from-other-namespaces
spec:
podSelector:
matchLabels:
ingress:
- from:
- podSelector: {}
#15 Infrastructure resources and stability
Tooling
#1 Application deployment
Happy helming:
● The syntax in hard, especially when you start.
● Secret storing required extra plugin. [helm-secrets]
● Umbrella charts are always tricky. [#4490]
● Helm upgrade failed when new objects added [#4871]
● Tiller and RBAC [Tiller was removed from Helm3, discussion here #1918]
#2 Telemetry
If you like a new and fancy solution try prometheus-operator:
● https://github.com/coreos/prometheus-operator
● https://github.com/helm/charts/tree/master/stable/prometheus-operator
Potential problems:
● How to add custom alerts, dashboards and monitoring rules.
● Should we use multiple smaller instances or the big one?
● Where should it be deploying?
#3 Logging
Nothing new: EFK stack do the job but:
● In multi-tenant we should implement elasticsearch document level security:
https://opendistro.github.io/for-elasticsearch/
● Kubernetes logs are still plaintext, not structured.
● Logs unification
#4 Need more ;)
● Service Mesh
● Tracing
● Cross cluster communication
● Infrastructure testing
● Sidecars and init container
● ...
People and mindset
Container orchestration and microservices world
Nobody said it is easy ;)

More Related Content

What's hot (20)

PDF
Kubernetes Monitoring & Best Practices
Ajeet Singh Raina
 
PDF
OSDC 2018 | Self Hosted bare Metal Kubernetes for SMEs by Thomas Hoppe
NETWAYS
 
PDF
Cloud Native User Group: Prometheus Day 2
smalltown
 
PDF
OSDC 2018 | Highly Available Cloud Foundry on Kubernetes by Cornelius Schumacher
NETWAYS
 
PDF
KubeCon EU 2016: ITNW (If This Now What): Orchestrating an Enterprise
KubeAcademy
 
PDF
SRE principles and (Kubernetes) Operator practice | DevNation Tech Talk
Red Hat Developers
 
PPTX
[20200720]cloud native develoment - Nelson Lin
HanLing Shen
 
PDF
Linuxcon secureefficientcontainerimagemanagementharbor
LinuxCon ContainerCon CloudOpen China
 
PDF
OSDC 2018 | From batch to pipelines – why Apache Mesos and DC/OS are a soluti...
NETWAYS
 
PPTX
Kubernetes and Istio
Ketan Gote
 
PDF
DCSF 19 Data Center Networking with Containers
Docker, Inc.
 
PDF
Revolutionizing WSO2 PaaS with Kubernetes & App Factory
Imesh Gunaratne
 
PDF
KVM_security
Frank Caviggia
 
PDF
Kubernetes for Beginners
DigitalOcean
 
PDF
How to Prepare for CKA Exam
Alfie Chen
 
PDF
Architectural caching patterns for kubernetes
Rafał Leszko
 
PDF
DCEU 18: Docker Containers in a Serverless World
Docker, Inc.
 
PDF
How to build a Kubernetes networking solution from scratch
All Things Open
 
PDF
Cloud Native User Group: Shift-Left Testing IaC With PaC
smalltown
 
PDF
Kubernetes on the Edge / 在邊緣的K8S
Yi-Fu Ciou
 
Kubernetes Monitoring & Best Practices
Ajeet Singh Raina
 
OSDC 2018 | Self Hosted bare Metal Kubernetes for SMEs by Thomas Hoppe
NETWAYS
 
Cloud Native User Group: Prometheus Day 2
smalltown
 
OSDC 2018 | Highly Available Cloud Foundry on Kubernetes by Cornelius Schumacher
NETWAYS
 
KubeCon EU 2016: ITNW (If This Now What): Orchestrating an Enterprise
KubeAcademy
 
SRE principles and (Kubernetes) Operator practice | DevNation Tech Talk
Red Hat Developers
 
[20200720]cloud native develoment - Nelson Lin
HanLing Shen
 
Linuxcon secureefficientcontainerimagemanagementharbor
LinuxCon ContainerCon CloudOpen China
 
OSDC 2018 | From batch to pipelines – why Apache Mesos and DC/OS are a soluti...
NETWAYS
 
Kubernetes and Istio
Ketan Gote
 
DCSF 19 Data Center Networking with Containers
Docker, Inc.
 
Revolutionizing WSO2 PaaS with Kubernetes & App Factory
Imesh Gunaratne
 
KVM_security
Frank Caviggia
 
Kubernetes for Beginners
DigitalOcean
 
How to Prepare for CKA Exam
Alfie Chen
 
Architectural caching patterns for kubernetes
Rafał Leszko
 
DCEU 18: Docker Containers in a Serverless World
Docker, Inc.
 
How to build a Kubernetes networking solution from scratch
All Things Open
 
Cloud Native User Group: Shift-Left Testing IaC With PaC
smalltown
 
Kubernetes on the Edge / 在邊緣的K8S
Yi-Fu Ciou
 

Similar to Container orchestration and microservices world (20)

PPTX
Kubernetes at (Organizational) Scale
Jeff Zellner
 
PDF
To Russia with Love: Deploying Kubernetes in Exotic Locations On Prem
CloudOps2005
 
PDF
Unleashing k8 s to reduce complexities of an entire middleware platform
Lakmal Warusawithana
 
PDF
4. CNCF kubernetes Comparison of-existing-cni-plugins-for-kubernetes
Juraj Hantak
 
PPTX
Kubernetes @ Squarespace: Kubernetes in the Datacenter
Kevin Lynch
 
PDF
OSDC 2018 | Three years running containers with Kubernetes in Production by T...
NETWAYS
 
PPTX
Comparison of existing cni plugins for kubernetes
Adam Hamsik
 
PPTX
Sergey Dzyuban "To Build My Own Cloud with Blackjack…"
Fwdays
 
PPTX
Kubernetes @ Squarespace (SRE Portland Meetup October 2017)
Kevin Lynch
 
PDF
Composing services with Kubernetes
Bart Spaans
 
PDF
Running Production-Grade Kubernetes on AWS
DoiT International
 
PDF
20250617 [KubeCon JP 2025] containerd - Project Update and Deep Dive.pdf
Akihiro Suda
 
PPTX
Introduction to kubernetes
Rishabh Indoria
 
PDF
Docker on docker leveraging kubernetes in docker ee
Docker, Inc.
 
PDF
Netflix Container Scheduling and Execution - QCon New York 2016
aspyker
 
PDF
Scheduling a fuller house - Talk at QCon NY 2016
Sharma Podila
 
PPTX
K8s in 3h - Kubernetes Fundamentals Training
Piotr Perzyna
 
PDF
6 Months Sailing with Docker in Production
Hung Lin
 
PPTX
Database as a Service (DBaaS) on Kubernetes
ObjectRocket
 
PPTX
Virtual Flink Forward 2020: Integrate Flink with Kubernetes natively - Yang Wang
Flink Forward
 
Kubernetes at (Organizational) Scale
Jeff Zellner
 
To Russia with Love: Deploying Kubernetes in Exotic Locations On Prem
CloudOps2005
 
Unleashing k8 s to reduce complexities of an entire middleware platform
Lakmal Warusawithana
 
4. CNCF kubernetes Comparison of-existing-cni-plugins-for-kubernetes
Juraj Hantak
 
Kubernetes @ Squarespace: Kubernetes in the Datacenter
Kevin Lynch
 
OSDC 2018 | Three years running containers with Kubernetes in Production by T...
NETWAYS
 
Comparison of existing cni plugins for kubernetes
Adam Hamsik
 
Sergey Dzyuban "To Build My Own Cloud with Blackjack…"
Fwdays
 
Kubernetes @ Squarespace (SRE Portland Meetup October 2017)
Kevin Lynch
 
Composing services with Kubernetes
Bart Spaans
 
Running Production-Grade Kubernetes on AWS
DoiT International
 
20250617 [KubeCon JP 2025] containerd - Project Update and Deep Dive.pdf
Akihiro Suda
 
Introduction to kubernetes
Rishabh Indoria
 
Docker on docker leveraging kubernetes in docker ee
Docker, Inc.
 
Netflix Container Scheduling and Execution - QCon New York 2016
aspyker
 
Scheduling a fuller house - Talk at QCon NY 2016
Sharma Podila
 
K8s in 3h - Kubernetes Fundamentals Training
Piotr Perzyna
 
6 Months Sailing with Docker in Production
Hung Lin
 
Database as a Service (DBaaS) on Kubernetes
ObjectRocket
 
Virtual Flink Forward 2020: Integrate Flink with Kubernetes natively - Yang Wang
Flink Forward
 
Ad

Recently uploaded (20)

PDF
Impact of IEEE Computer Society in Advancing Emerging Technologies including ...
Hironori Washizaki
 
PDF
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
PDF
Predicting the unpredictable: re-engineering recommendation algorithms for fr...
Speck&Tech
 
PDF
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
PDF
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PDF
NewMind AI Journal - Weekly Chronicles - July'25 Week II
NewMind AI
 
PDF
TrustArc Webinar - Data Privacy Trends 2025: Mid-Year Insights & Program Stra...
TrustArc
 
PDF
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PPTX
Building a Production-Ready Barts Health Secure Data Environment Tooling, Acc...
Barts Health
 
PDF
SFWelly Summer 25 Release Highlights July 2025
Anna Loughnan Colquhoun
 
PPTX
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
PDF
Persuasive AI: risks and opportunities in the age of digital debate
Speck&Tech
 
PDF
Windsurf Meetup Ottawa 2025-07-12 - Planning Mode at Reliza.pdf
Pavel Shukhman
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PDF
Smart Air Quality Monitoring with Serrax AQM190 LITE
SERRAX TECHNOLOGIES LLP
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
Impact of IEEE Computer Society in Advancing Emerging Technologies including ...
Hironori Washizaki
 
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
Predicting the unpredictable: re-engineering recommendation algorithms for fr...
Speck&Tech
 
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
NewMind AI Journal - Weekly Chronicles - July'25 Week II
NewMind AI
 
TrustArc Webinar - Data Privacy Trends 2025: Mid-Year Insights & Program Stra...
TrustArc
 
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
Building a Production-Ready Barts Health Secure Data Environment Tooling, Acc...
Barts Health
 
SFWelly Summer 25 Release Highlights July 2025
Anna Loughnan Colquhoun
 
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
Persuasive AI: risks and opportunities in the age of digital debate
Speck&Tech
 
Windsurf Meetup Ottawa 2025-07-12 - Planning Mode at Reliza.pdf
Pavel Shukhman
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
Smart Air Quality Monitoring with Serrax AQM190 LITE
SERRAX TECHNOLOGIES LLP
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
Ad

Container orchestration and microservices world

  • 1. Container orchestration and microservices world Karol Chrapek the story about containers orchestration.
  • 2. Novomatic Technologies Poland ● R&D center for Novomatic ● was established in 1997 (20 years) ● more than 300 specialists ● focusing on high-tech gaming technologies and entertainment market ● more info here: novomatic-tech.com
  • 3. Why do we need containers in NTP? ● Unified deployment method. ● Accelerate software development, deployment and shipping processes. ● Simplify cooperation with different teams / companies inside the Novomatic group. ● Reduce the need to maintain dev infrastructure in each project. ● Solve problem with some legacy library and hardware.
  • 4. Container evolution in NTP ● “Think tank team” experiment with container: ○ speed up CI phase ○ simplify deployment and upgrade processes ○ run them everywhere (local test ;)) ● TTT created “Container’s Evelen” and showed a few presentations internally. ● More teams decided to use containers for test purposes. ● A few small projects start using docker in production. ● We needed solution for containers’ platform at scale. ● TTT deployed a first Kubernetes dev custer in NTP. ● “DevOps team” took responsibility for K8S stacks. ● DOT created a new clusters inside NTP. @Hefzul Bari
  • 5. Developers needs? ● Easy to run and share with other teams. ● Reduce number of issues forwarded to infrastructure team. ● One orchestration method/tool for local and production environments. ● A platform ready for public clouds. ● Support of legacy apps and their dependencies. ● Learn something new.
  • 6. Business needs? ● Reducing deployment and scalability windows. ● Run on both classes of hardware: commodity and enterprise. ● The same deployment model for different environments and teams. ● Reducing performance degradation window during an failure. ● All new products should increase environment stability. ● Most of our clients require on-premise solution.
  • 7. Why did we chose kubernetes? ● We tested different tools and we choose one that suits “best” to our model. ● Currently k8s is container orchestration “standard”. ● All main cloud providers are compatible with kubernetes (GKE, AKS, EKS). ● Some clients own on premise Kubernetes infra, some teams prefer cloud providers but software deployment method stays the same. ● Approved by development teams and clients. ● Open source software.
  • 8. Development environments ● previous: one k8s cluster provisioned via custom bash scripts ● now: three two k8s clusters provisioned via Kubespray ○ 8-10 nodes ○ all nodes are virtual machines on Cisco stack ● some developers use Minikube ● sometimes additional test envs are exposed by our clients
  • 9. PaaS - requirements Operations: ● multi-datacenter ● high availability ● easy to provisioning ● on demand scalability ● security Developers: ● config management ● secret management ● service discovery ● blue-green deployment ● tracing Both: ● telemetry ● logging ● self-healing ● rolling update @Damien Pollet - flickr
  • 11. #1 Kubernetes is a distributed platform
  • 13. #2 Kubernetes as a PaaS core
  • 14. #2.1 Kubernetes as a PaaS core Platform [1]: - Distribution (55) - Hosted (34) - Installer (18) Others: - Application definition & Image Build [2] - Service Proxy [3] - Service Mesh [4] - Network [5] - Security [6] - Observability [7] - Storage [8] 1 7 2 3 4 5 6 8
  • 15. #3 Kubernetes - cutting edge vs prod grade API components (1.14) Version CronJob v1beta1 Ingress v1beta1 PodSecurityPolicy v1beta1 CSI Driver v1beta1
  • 16. #4 Etcd - replication and consistency Problems: ● Etcd size sometimes starts growing and grows … [#8009] ● Network glitch reducing etcd cluster availability seriously [#7321] ● Test clientv3 balancer under network partitions, other failures [#8711] @jevans
  • 17. #5 Kubernetes API ● CoreDNS crash when API server down [#2629] ● CVE-2018-1002105 [#71411] ● When API server down operators and some sidecars /init containers could crash (always HA) ● Kubernetes scheduler and controller crash when they are connected to localhost [#22846 and #77764 ] @jevans
  • 18. #6 Small deployment and edge computing ● edge computing at Chick-fil-A ● Services overhead ● Deployment and monitoring is not so easy. ● Challenge: Cross cluster connections.
  • 19. #7 Enforcing default limits for containers >Ja [2:20 PM] ale widze ostatnio masz twardą rękę do podziałów zasobów po zespołach :) ja mysle ze w tym tygodniu poprawie te limity i konfiguracje …. bo mi trochę głupio, że z prostymi problemami się borykamy: >Kolega XYZ [3:23 PM] moja babcia zawsze mówiła, że głupio to jest kraść
  • 20. #8 Run stateful apps https://twitter.com/kelseyhightower/status/963413508300812295
  • 21. #9 Operator helps to manage STS but: ● they are complex, ● mostly support 60-80% of all maintaining tasks, ● chose manage services in cloud or classic orchestration for on-premise solution, ● sometimes sts apps version bump required manual operations.
  • 22. #10 Persistence volumes and k8s on-premise ● NFS - replication is tricky ● Rook operator [ceph or edgeFS] - complex ● Local volume still in Beta https://kubernetes.io/blog/2018/04/13/local-persistent-volumes-beta/ ● Expanding Persistent Volumes Claims still in beta ● Flexvolume and CSI driver
  • 23. #11 App flapping-> connection reset via ingress Symptoms: Active connections reset after 5 minutes. Root cause: 1. Pod rescheduled (container OOM), new pod == new IP. 2. Service add new endpoint -> nginx configuration reload . 3. Nginx conf reload -> wait 5 minutes (worker-shutdown-timeout) and kill old worker. Related issue:#2461 nginx.com
  • 24. #12 Multitenant and RBAC ● Single tenant and multiple clusters or one multi-tenant cluster. ● Universal permission by resource type. ● No field-level access control.
  • 25. #13 Namespace - resource isolation ;) https://xkcd.com/2044/
  • 26. #14 Network Policy By default network is “flat” inside Kubernetes ;) Common network policies: https://github.com/ahmetb/kubernetes-network-policy-recipes kind: NetworkPolicy apiVersion: networking.k8s.io/v1 metadata: namespace: secondary name: deny-from-other-namespaces spec: podSelector: matchLabels: ingress: - from: - podSelector: {}
  • 29. #1 Application deployment Happy helming: ● The syntax in hard, especially when you start. ● Secret storing required extra plugin. [helm-secrets] ● Umbrella charts are always tricky. [#4490] ● Helm upgrade failed when new objects added [#4871] ● Tiller and RBAC [Tiller was removed from Helm3, discussion here #1918]
  • 30. #2 Telemetry If you like a new and fancy solution try prometheus-operator: ● https://github.com/coreos/prometheus-operator ● https://github.com/helm/charts/tree/master/stable/prometheus-operator Potential problems: ● How to add custom alerts, dashboards and monitoring rules. ● Should we use multiple smaller instances or the big one? ● Where should it be deploying?
  • 31. #3 Logging Nothing new: EFK stack do the job but: ● In multi-tenant we should implement elasticsearch document level security: https://opendistro.github.io/for-elasticsearch/ ● Kubernetes logs are still plaintext, not structured. ● Logs unification
  • 32. #4 Need more ;) ● Service Mesh ● Tracing ● Cross cluster communication ● Infrastructure testing ● Sidecars and init container ● ...
  • 35. Nobody said it is easy ;)