Merge branch 'master' of code.ungleich.ch:ungleich-public/ungleich-k8s
This commit is contained in:
commit
54777e21d5
2 changed files with 12 additions and 1 deletions
|
@ -5,7 +5,7 @@ metadata:
|
|||
spec:
|
||||
containers:
|
||||
- name: alpine
|
||||
image: alpine:3.14
|
||||
image: alpine:3.15
|
||||
args:
|
||||
- sleep
|
||||
- "1000000"
|
||||
|
|
11
generic/role.yaml
Normal file
11
generic/role.yaml
Normal file
|
@ -0,0 +1,11 @@
|
|||
apiVersion: rbac.authorization.k8s.io/v1
|
||||
kind: Role
|
||||
metadata:
|
||||
namespace: default
|
||||
name: service-reader
|
||||
rules:
|
||||
- apiGroups: [""] # "" indicates the core API group
|
||||
resources: ["services"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
|
||||
---
|
Loading…
Reference in a new issue