CC00232.CloudKubernetes——|KuberNetes&细粒度权限控制.V16|——|准入控制.v02|PodPreset实验|

一、QoS
### --- QoS

~~~     QoS:Quality of Service,服务质量。
~~~     Guaranteed:k8s的最高的服务质量,也就是CPU内存的Request和Limit的值一样。
~~~     Burstable:CPU内存的request有配置,但是值不一样
~~~     BestEffort:没有配置Request和Limit
~~~     OOM,先删除服务质量为BestEffort,然后在删除Burstable,Guaranteed最后被删除。
~~~     16核—request=limit,1 一个16核的宿主机只能运行16个容器。
~~~     Node上面的CPU,利用率其实很低。100m=100m
~~~     3G 3.5G
二、PodPreset(实验失败,待实验)
### --- PodPreset(实验失败,待实验)

~~~     # 请注意: k8s 1.20版本已经删除PodPreset功能,低于1.20版本正常使用
~~~     PodPreset:Pod的一些预配置。比如添加一些变量、挂载卷、配置容器的时间、字符集等。
~~~     开启PodPreset的方法:https://kubernetes.io/docs/concepts/workloads/pods/podpreset/
~~~     使用PodPreset的文档:https://kubernetes.io/docs/tasks/inject-data-application/podpreset/
三、配置podPreset
### --- 配置PodPreset:(所有master节点)

[root@k8s-master01 ~]# vim /usr/lib/systemd/system/kube-apiserver.service
      --enable-admission-plugins=NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,DefaultTolerationSeconds,NodeRestriction,ResourceQuota,PodPreset \
# 这行末尾添加参数: ,PodPreset      
      --feature-gates=EphemeralContainers=true \                // 此行下添加参数
      --runtime-config=settings.k8s.io/v1alpha1=true \          // 添加此行内容
      --requestheader-extra-headers-prefix=X-Remote-Extra-  \   // 此行上添加参数
[root@k8s-master01 ~]# systemctl daemon-reload      
[root@k8s-master01 ~]# systemctl restart kube-apiserver
四、是有namespace隔离。同一个Volume不能挂载到不同的路径
### --- 是有namespace隔离。同一个Volume不能挂载到不同的路径
~~~     # 忽略预配置:podpreset.admission.kubernetes.io/exclude: "true"

apiVersion: settings.k8s.io/v1alpha1
kind: PodPreset
metadata:
  name: time
spec:
#  selector:
#    matchLabels:
#      role: frontend
  env:
    - name: LANG
      value: "C.UTF-8"
  volumeMounts:
    - mountPath: /usr/share/zoneinfo/Asia/Shanghai
      name: tz-config
      readOnly: true
    - mountPath: /etc/localtime
      name: tz-config2
      readOnly: true
    - mountPath: /etc/timezone
      name: timezone
      readOnly: true
  volumes:
    - name: tz-config2
      hostPath:
       path: /usr/share/zoneinfo/Asia/Shanghai
    - name: tz-config
      hostPath:
       path: /usr/share/zoneinfo/Asia/Shanghai
    - name: timezone
      hostPath:
       path: /etc/timezone
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

yanqi_vip

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值