题目
分析
监控名为foobar的Pod的日志,并过滤出具有unable-access-website 信息的行,然后将其写入到/opt/KUTR00101/foobar文件中
使用kubectl logs命令,结合grep即可。
命令
环境搭建
foobar.yaml
apiVersion: v1 kind: Pod metadata: name: foobar spec: containers: - name: busybox image: busybox:latest imagePullPolicy: IfNotPresent command: ['sh','-c','echo lady_killer9: unable-access-website && sleep 3600'] ports: - containerPort: 80
kubectl create -f foobar.yaml
解题
kubectl logs foobar | grep unable-access-website > /opt/KUTR00101/foobar
结果
参考
更多k8s相关内容,请看文章:k8s学习-思维导图与学习笔记