All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			723 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			723 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| apiVersion: v1
 | |
| kind: ServiceAccount
 | |
| metadata:
 | |
|   name: {{ _template.account.name }}
 | |
|   namespace: {{ _template.account.namespace }}
 | |
| ---
 | |
| apiVersion: v1
 | |
| kind: Secret
 | |
| metadata:
 | |
|   name: {{ _template.account.name }}-secret
 | |
|   namespace: {{ _template.account.namespace }}
 | |
|   annotations:
 | |
|     kubernetes.io/service-account.name: {{ _template.account.name }}
 | |
| type: kubernetes.io/service-account-token
 | |
| ---
 | |
| apiVersion: rbac.authorization.k8s.io/v1
 | |
| kind: ClusterRoleBinding
 | |
| metadata:
 | |
|   name: {{ _template.clusterrolebinding.name }}
 | |
| subjects:
 | |
| - kind: ServiceAccount
 | |
|   name: {{ _template.account.name }}
 | |
|   namespace: {{ _template.account.namespace }}
 | |
| roleRef:
 | |
|   kind: ClusterRole
 | |
|   name: cluster-admin
 | |
|   apiGroup: rbac.authorization.k8s.io
 |