Introduction
Kubernetes orchestrates container workloads at scale. This tutorial covers core resources for deploying applications.
Deployment Manifest
apiVersion: apps/v1
kind: Deployment
metadata:
name: s2ftech-api
spec:
replicas: 3
selector:
matchLabels:
app: s2ftech-api
template:
metadata:
labels:
app: s2ftech-api
spec:
containers:
- name: api
image: s2ftech/api:latest
ports:
- containerPort: 3000
Service and Ingress
Expose your deployment with a ClusterIP Service and Ingress controller for external access.
Conclusion
Use Helm charts for repeatable deployments across environments.

