6. Kubernetes: SecurityContexts

preview_player
Показать описание
## sudo useradd -u 5000 user-5000

## sudo groupadd -g 6000 group-6000

***** Example:01 *****
apiVersion: v1
kind: Pod
metadata:
name: security-context-demo
spec:
securityContext:
runAsUser: 5000
fsGroup: 6000
volumes:
- name: sec-ctx-vol
emptyDir: {}
containers:
- name: sec-ctx-demo
image: busybox
command: [ "sh", "-c", "sleep 1h" ]
volumeMounts:
- name: sec-ctx-vol
mountPath: /data/demo

## kubectl get pods

## kubectl exec -it security-context-demo -- sh

## ps
## cd data/demo
## ls -l

***** Example:02 *****

apiVersion: v1
kind: Pod
metadata:
name: my-alpine-pod
spec:
containers:
- name: my-alpine-container
image: alpine
command: ["/bin/sleep", "999999"]

## kubectl exec -it my-alpine-pod -- sh
## date +%T -s "11:14:00"

## ls -la
## chown 5000:6000 bin

***** Example:03 *****
apiVersion: v1
kind: Pod
metadata:
name: my-alpine-cap-pod
spec:
containers:
- name: my-alpine-cap-container
image: alpine
command: ["/bin/sleep", "999999"]
securityContext:
capabilities:
add:
- SYS_TIME
drop:
- CHOWN

## kubectl exec -it my-alpine-cap-pod -- sh
## date +%T -s "11:14:00"

## ls -la
## chown 5000:6000 bin
Рекомендации по теме