Middle
Do you have practical experience with Kubernetes or just basic familiarity?
sobes.tech AI
Answer from AI
Practical experience with Kubernetes includes:
- Deploying applications using manifests (Deployment, Service, ConfigMap, etc.).
- Managing cluster state, scaling pods.
- Configuring network policies and services.
- Monitoring and logging (e.g., using Prometheus and Grafana).
- Working with Persistent Volumes for data storage.
- Updating and rolling back application versions.
If the experience is only basic, it most likely involves familiarity with Kubernetes architecture, core objects, and kubectl commands.
Example of a simple Deployment in YAML:
apiVersion: apps/v1
kind: Deployment
metadata:
name: myapp-deployment
spec:
replicas: 3
selector:
matchLabels:
app: myapp
template:
metadata:
labels:
app: myapp
spec:
containers:
- name: myapp-container
image: myapp:latest
ports:
- containerPort: 80
This manifest will create 3 pods with the myapp application.