Kubernetes SerivceAccount
【摘要】 什么是Service Account
Service Account是为了解决Kubernetes集群内部资源认证问题而诞生,例如Pod的进程想调用Kubernetes API或者其他外部服务。
Service Account基本操作
通过kubectl创建ServiceAccount kubectl create sa nginx-sa 可以见到创建了Serv...
什么是Service Account
Service Account是为了解决Kubernetes集群内部资源认证问题而诞生,例如Pod的进程想调用Kubernetes API或者其他外部服务。
Service Account基本操作
通过kubectl创建ServiceAccount
kubectl create sa nginx-sa
可以见到创建了ServiceAccount之后也自动创建了Secret对象并自动引用了
将Service Account绑定到Pod
kubectl apply -f nginx-pod-sa.yaml
apiVersion: v1
kind: Pod
metadata:
name: nginx-pod
spec:
containers: - name: nginx image: nginx:1.16
serviceAccountName: nginx-sa
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
文章来源: blog.csdn.net,作者:叶康铭,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/m0_38030719/article/details/104495894
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)