Service Accounts
1893 단어 kuberneteskubernetes
-
서비스 계정 갯수 확인
kubectl get serviceaccounts
controlplane ~ ➜ kubectl get serviceaccounts NAME SECRETS AGE default 1 5m2s
-
서비스 계정 상세 보기
controlplane ~ ➜ kubectl describe serviceaccounts Name: default Namespace: default Labels: <none> Annotations: <none> Image pull secrets: <none> Mountable secrets: default-token-4ps9v Tokens: default-token-4ps9v Events: <none>
-
서비스 계정 생성
kubectl create serviceaccount dashboard-sa
-
서비스 계정을 연동하여 deployment 생성
apiVersion: apps/v1 kind: Deployment metadata: name: web-dashboard namespace: default spec: replicas: 1 selector: matchLabels: name: web-dashboard strategy: rollingUpdate: maxSurge: 25% maxUnavailable: 25% type: RollingUpdate template: metadata: creationTimestamp: null labels: name: web-dashboard spec: serviceAccountName: dashboard-sa containers: - image: gcr.io/kodekloud/customimage/my-kubernetes-dashboard imagePullPolicy: Always name: web-dashboard ports: - containerPort: 8080 protocol: TCP
Author And Source
이 문제에 관하여(Service Accounts), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@gadian88/Service-Accounts저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)