Senior
What is your level of Kubernetes knowledge?
sobes.tech AI
Answer from AI
I have an advanced level of Kubernetes knowledge, including experience in setting up and managing clusters, deploying applications using YAML manifests, working with StatefulSet, DaemonSet, ConfigMap, Secret, as well as configuring network policies and monitoring. I can write operators in Go to automate tasks in Kubernetes and integrate CI/CD pipelines with the cluster.
Example of a simple deployment manifest:
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: 8080