Upgrade to Pro — share decks privately, control downloads, hide ads and more …

From 0 To Production-Grade With Kubernetes Nati...

From 0 To Production-Grade With Kubernetes Native Development

This session will give you an overview of cloud native fundamentals from a Java developer’s perspective. You will learn step-by-step how to get your application to production on Kubernetes without sacrificing your developer experience.

Kevin and Thomas will cover:
- Building and deploying containers easily, featuring Buildpacks, Podman, and Knative.
- Optimizing your application’s performance in cloud native and serverless environments.
- Coding and testing cloud native Java applications with Podman Desktop and Microcks.
- Enabling observability for your cloud native applications using OpenTelemetry to pinpoint errors and performance issues in production.
- Integrating with other services using Kubernetes Service Bindings.

This session will help you develop better cloud-native Java applications, including a comprehensive understanding of the development and operational perspectives in a Kubernetes environment.

Thomas Vitale

April 03, 2025
Tweet

More Decks by Thomas Vitale

Other Decks in Technology

Transcript

  1. Kevin Dubois & Thomas Vitale KubeCon+CloudNativeCon Europe April 2nd, 2025

    From 0 to Production-Grade with Kubernetes Native Development @kevindubois.com @thomasvitale.com
  2. Kevin Dubois ˒ Sr. Principal Developer Advocate at Red Hat

    ˒ Java Champion ˒ 20+ years of software development experience ˒ Based in Belgium 🇧🇪 (prev. USA, Italy) ˒ 🗣 Speak English, Dutch, French, Italian youtube.com/@thekevindubois linkedin.com/in/kevindubois github.com/kdubois @kevindubois.com
  3. apiVersion: v1 kind: Service metadata: name: kubenative spec: ports: -

    name: http port: 80 protocol: TCP targetPort: 8080 selector: app.kubernetes.io/name: kubenative apiVersion: apps/v1 kind: Deployment metadata: name: kubenative spec: replicas: 1 selector: matchLabels: app.kubernetes.io/name: kubenative template: spec: containers: - image: quay.io/kevin/demo name: kubenative ports: - containerPort: 8080 name: http protocol: TCP @kevindubois.com @thomasvitale.com
  4. After 2.6s (Kafka, DB, Caching) App is ready to receive

    traffic Container Running Sends traffic App not ready Ready??
  5. readinessProbe: failureThreshold: 3 httpGet: path: /q/health/ready port: 8080 scheme: HTTP

    initialDelaySeconds: 5 livenessProbe: failureThreshold: 3 httpGet: path: /q/health/live port: 8080 scheme: HTTP initialDelaySeconds: 5 Readiness, Liveness, Startup Probes
  6. containers: - name: nginx-container image: nginx:latest ports: - containerPort: 80

    volumes: - name: secret-volume secret: secretName: your-secret-name Kubernetes Secrets & ConfigMaps kind: ConfigMap apiVersion: v1 metadata: name: properties immutable: false data: 'kafka-servers': kafka-bootstrap:9092 kind: Secret apiVersion: v1 metadata: name: postgresql data: database-name: xyz database-password: xyz database-user: xyz type: Opaque