[Add kube formation tsl]

This commit is contained in:
2025-07-25 20:59:09 +02:00
parent eac213a776
commit 8adbcb556e
105 changed files with 3451 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
## Kubernetes Fundamentals labs v1.4.5
apiVersion: v1
kind: Pod
metadata:
name: volume-example
spec:
containers:
- name: nginx
image: nginx:stable-alpine
ports:
- containerPort: 80
volumeMounts:
- name: html
mountPath: /usr/share/nginx/html
readOnly: true
- name: content
image: alpine:latest
volumeMounts:
- name: html
mountPath: /html
command: ["/bin/sh", "-c"]
args:
- while true; do
echo $(date)"<br />" >> /html/index.html;
sleep 5;
done
volumes:
- name: html
emptyDir: {}