eng
competition

Text Practice Mode

Kubernetes Pod

created May 28th 2020, 15:23 by bpo


1


Rating

25 words
20 completed
00:00
apiVersion: v1
kind: Pod
metadata:
  name: my-pod
  labels:
    role: web
    app: front
spec:
  containers:
    - name: web
      image: nginx
      ports:
        - name: web
          containerPort: 80
          protocol: TCP

saving score / loading statistics ...