美文网首页
CKA考试试题

CKA考试试题

作者: 大鹏一怒乘风起 | 来源:发表于2020-11-13 19:57 被阅读0次

2、通过单个命令创建一个deployment并暴露Service。deployment和Service名称为cka-1120,使用nginx镜像, deployment拥有2个pod
kubectl run cka-1120 --replicas 2 --expose=true --port=80 --image=nginx
3.通过命令行,创建1个deployment,副本数为3,镜像为nginx:latest。然后滚动升 级到nginx:1.9.1,再回滚到原来的版本

要求:Deployment的名称为cka-1125,贴出用到的相关命令。

最好附带创建的Deployment完整yaml,以及和升级回滚有关的命令。
4.提供一个pod的yaml,要求添加Init Container,Init Container的作用是创建一个空文件,pod的Containers判断文件是否存在,不存在则退出

注意:附带Pod完整yaml
5.创建Secret名为cka1127-secret,内含有password字段,值为cka1127,然后在名为cka1127-01的Pod1里使用ENV进行调用,名为cka1127-02的Pod2里使用Volume挂载在/data 下;
apiVersion: v1
kind: Secret
metadata:
name: cka1127-secret
type: Opaque
stringData:
cka1127-password: cka1127
6.### 上次考题

Set configuration context $ kubectl config use-context k8s;

Create a deployment as follows;

Name: nginx-dns;

Exposed via a service: nginx-dns;

Ensure that the service & pod are accessible via their respective DNS records;

The container(s) within any pod(s) running as a part of this deployment should use the nginx image;

Next,use the utiliity nslookup to look up the DNS records of the service & pod and write the output to /opt/service.dns and /opt/pod.dns respectively;

Ensure you use the busybox:1.28 image (or earliser) for any testing, an the latest release has an unpstream bug which impacts the use of nslookup;

分析题目

先设置上下文:kubectl config use-context k8s;

按照以下条件创建deployment:

名称:nginx-dns;

暴露service:nginx-dns;

确保可以通过各自的DNS记录访问Service和Pod;

运行的任何Pod中的容器应使用nginx镜像;

接下来,使用nslookup查找service和pod的DNS记录,并将输出分别写入/opt/service.dns和/opt/pod.dns;

确保使用busybox:1.28镜像(或更早的版本)进行测试,最新版本具有unpstream错误,这会影响nslookup的使用;

答案

创建名为nginx-dns的deployment,和一个service,端口80

kubectl run nginx-dns --expose=true --port=80 --image=nginx

利用:kubectl get pods - o wide获取pod的IP:192.168.155.100

启动一个可以运行 nslookup的busybox pod:

kubectl run busybox -it --rm --generator=run-pod/v1 --image=busybox:1.28  sh

执行:

nslookup nginx-dns

nslookup 192.168.155.100

最终的结果,servicedns保存在/opt/service.dnspoddns保存在/opt/pod.dns

/ # mkdir opt
/ # nslookup nginx-dns > /opt/service.dns
/ # cat /opt/service.dns 
Server:    10.96.0.10
Address 1: 10.96.0.10 kube-dns.kube-system.svc.cluster.local

Name:      nginx-dns
Address 1: 10.99.28.72 nginx-dns.default.svc.cluster.local
/ # nslookup 192.168.155.100 > /opt/pod.dns
/ # cat /opt/pod.dns 
Server:    10.96.0.10
Address 1: 10.96.0.10 kube-dns.kube-system.svc.cluster.local

Name:      192.168.155.100
Address 1: 192.168.155.100 192-168-155-100.nginx-dns.default.svc.cluster.local
/ #

解析

官网中Pod与Service的DNS解析说明文档:https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/

Service A 记录

Service(headless Service 除外)将被分配一个 DNS A 记录,格式为 my-svc.my-namespace.svc.cluster-domain.example。该 DNS 记录解析到 Service 的 ClusterIP。

Headless Service(ClusterIP为None)也将被分配一个 DNS A 记录,格式为 my-svc.my-namespace.svc.cluster-domain.example。该 DNS 记录解析到 Service 所选中的一组 Pod 的 IP 地址的集合。

Service SRV 记录

Service(含 headless Service)的命名端口(有 name 的端口)将被分配一个 SRV 记录,其格式为 my-port-name.my-port-protocol.my-svc.my-namespace.svc.cluster-domain.example:

对于一个普通 Service(非 headless Service),该 SRV 记录解析到其端口号和域名 my-svc.my-namespace.svc.cluster-domain.example

对于一个 Headless Service,该 SRV 记录解析到多个结果:每一个结果都对应该 Service 的一个后端 Pod,包含其端口号和 Pod 的域名 auto-generated-pod-name.my-svc.my-namespace.svc.cluster-domain.example

Pod A 记录

Pod 会以 {podIIP}.my-namespace.pod.cluster.local这种形式被指派一个 DNS A 记录。

例如,default Namespace 具有 DNS 名字cluster.local,在该 Namespace 中一个 IP 为 1.2.3.4 的 Pod 将具有一个条目:1-2-3-4.default.pod.cluster.local

相关文章

  • CKA考试试题

    2、通过单个命令创建一个deployment并暴露Service。deployment和Service名称为cka...

  • CKA考试经验总结

    CKA考试相关说明及经验总结 什么是CKA考试? CKA全称是Certified Kubernetes Admin...

  • CKA 考试落幕

    好久没写笔记了,再不写都忘记了这项有意思的事情了,好习惯还是要坚持下去的。这次就写点考CKA相关的事情。https...

  • CKA 考试心得

    上周末通过了 CKA 考试,Kubernetes 在国内的热度越来越高,相信以后会有更多人对 Kubernetes...

  • 2021年11月CKA认证之旅.md

    CAK认证 CKA考前准备工作 需要科学上网,CKA考试时需要检查上最低500Kbps下载和256Kbps上传, ...

  • 国内CKA考试总结

    这里没用透露考题,签有保密协议的,君子慎独,不欺暗室深圳的考点在八卦岭地铁站附近的八卦二路616号四楼,试题是中文...

  • CKS考试小计

    月初的时候参加了CKS考试,闲暇之余写点笔记。感觉下来,CKS考试比CKA考试难的多。时间也是很紧张。CKS目前考...

  • CKA考试经验总结

    CKA考试经验总结 1.考前准备 1.1 报考相关 报考地址。https://www.cncf.io/certif...

  • 备战CKA每日一题——第12天 | 史上最全kubernetes

    昨日考题 创建两个deployment名字分别为cka-1203-01、cka-1203-02;cka-1203-...

  • 第6、7关企业真实考试题

    第6、7关企业真实考试题 @(Lunix 学习之路)[Linux, 运维, 企业考试题, 考试题]试卷说明我们不生...

网友评论

      本文标题:CKA考试试题

      本文链接:https://www.haomeiwen.com/subject/wndjbktx.html