Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ignore]k8s-watcher shipwright #3854

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions helm-chart/renku/templates/data-service/rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,18 @@ rules:
- list
- get
- watch
- apiGroups:
- shipwright.io
resources:
- buildruns
verbs:
- create
- update
- delete
- patch
- list
- get
- watch
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
Expand Down
6 changes: 6 additions & 0 deletions helm-chart/renku/templates/notebooks/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ spec:
value: v1alpha1
- name: K8S_WATCHER_AMALTHEA_SESSION_PLURAL
value: amaltheasessions
- name: K8S_WATCHER_SHIPWRIGHT_BUILDRUN_GROUP
value: shipwright.io
- name: K8S_WATCHER_SHIPWRIGHT_BUILDRUN_VERSION
value: v1beta1
- name: K8S_WATCHER_SHIPWRIGHT_BUILDRUN_PLURAL
value: buildruns
- name: K8S_WATCHER_NAMESPACES
{{ if .Values.notebooks.sessionsNamespace }}
value: {{ list .Release.Namespace .Values.notebooks.sessionsNamespace | uniq | toJson | quote }}
Expand Down
12 changes: 12 additions & 0 deletions helm-chart/renku/templates/notebooks/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,17 @@ rules:
- list
- get
- watch
- apiGroups:
- shipwright.io
resources:
- buildruns
verbs:
- create
- update
- delete
- patch
- list
- get
- watch
{{ end }}
{{ end }}
Loading