Merge branch 'master' of code.ungleich.ch:ungleich-public/ungleich-k8s

This commit is contained in:
Nico Schottelius 2021-12-12 21:23:42 +01:00
commit 54777e21d5
2 changed files with 12 additions and 1 deletions

View File

@ -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
View 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"]
---