* add create and delete namespace to runtime * dial down aggressive expiry * add logging * fix deletenamespace * add start of k8s unit tests * fix workflow * turn on k8s tests * ease tight tests * mkdir in workflow * dammit -p * setup folder
		
			
				
	
	
		
			72 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: v1
 | |
| kind: ServiceAccount
 | |
| metadata:
 | |
|   name: micro-runtime
 | |
| ---
 | |
| apiVersion: rbac.authorization.k8s.io/v1
 | |
| kind: ClusterRole
 | |
| metadata:
 | |
|   name: micro-runtime
 | |
| rules:
 | |
|   - apiGroups:
 | |
|       - ""
 | |
|     resources:
 | |
|       - pods
 | |
|       - pods/log
 | |
|       - services
 | |
|       - secrets
 | |
|       - namespaces
 | |
|     verbs:
 | |
|       - get
 | |
|       - create
 | |
|       - update
 | |
|       - delete
 | |
|       - list
 | |
|       - patch
 | |
|       - watch
 | |
|   - apiGroups:
 | |
|       - "apps"
 | |
|     resources:
 | |
|       - deployments
 | |
|     verbs:
 | |
|       - create
 | |
|       - update
 | |
|       - delete
 | |
|       - list
 | |
|       - patch
 | |
|       - watch
 | |
|   - apiGroups:
 | |
|       - ""
 | |
|     resources:
 | |
|       - secrets
 | |
|       - pods
 | |
|       - pods/logs
 | |
|     verbs:
 | |
|       - get
 | |
|       - watch
 | |
|       - list
 | |
| ---
 | |
| apiVersion: rbac.authorization.k8s.io/v1
 | |
| kind: ClusterRoleBinding
 | |
| metadata:
 | |
|   name: micro-runtime
 | |
| subjects:
 | |
|   - kind: ServiceAccount
 | |
|     name: micro-runtime
 | |
|     namespace: default
 | |
| roleRef:
 | |
|   kind: ClusterRole
 | |
|   name: micro-runtime
 | |
|   apiGroup: rbac.authorization.k8s.io
 | |
| ---
 | |
| apiVersion: rbac.authorization.k8s.io/v1
 | |
| kind: RoleBinding
 | |
| metadata:
 | |
|   name: micro-runtime
 | |
| roleRef:
 | |
|   apiGroup: rbac.authorization.k8s.io
 | |
|   kind: ClusterRole
 | |
|   name: micro-runtime
 | |
| subjects:
 | |
|   - kind: ServiceAccount
 | |
|     name: micro-runtime |