Skip to content

Commit

Permalink
add latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ermirizio committed Aug 15, 2024
1 parent 5b1cfd2 commit 9e440f7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions python/helm/tyk-sre/rbac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,18 @@ apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: pods-list
rules:
- apiGroups: [""]
- apiGroups: [""] # "" indicates the core API group
resources: ["pods"]
verbs: ["list"]
verbs: ["get", "list"]
- apiGroups: ["apps"]
resources: ["deployments"]
verbs: ["get", "list"]
- apiGroups: ["networking.k8s.io"]
resources: ["networkpolicies"]
verbs: ["create", "update", "patch"]
- apiGroups: [""]
resources: ["namespaces"]
verbs: ["get", "list"]

---
kind: ClusterRoleBinding
Expand Down
2 changes: 1 addition & 1 deletion python/helm/tyk-sre/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ securityContext: {}
# runAsUser: 1000

service:
type: ClusterIP
type: LoadBalancer
port: 8004

ingress:
Expand Down

0 comments on commit 9e440f7

Please sign in to comment.