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

WORKBENCH Add some install value fies #628

Merged
merged 4 commits into from
Dec 12, 2024
Merged
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
14 changes: 14 additions & 0 deletions ci/rstudio-workbench/install/basic-ingress-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
license:
file:
secret: pwb-license
secretKey: pwb.lic

ingress:
enabled: true
annotations:
kubernetes.io/ingress.class: traefik

hosts:
- host: workbench.rstudio.com
paths:
- path: /test/
10 changes: 10 additions & 0 deletions ci/rstudio-workbench/install/basic-service-account-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
license:
file:
secret: pwb-license
secretKey: pwb.lic

rbac:
create: true
serviceAccount:
name: test-sa
create: true
58 changes: 58 additions & 0 deletions ci/rstudio-workbench/install/launcher-template-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
license:
file:
secret: pwb-license
secretKey: pwb.lic

config:
sessionSecret:
example-file.json: '{"some-contents": "test"}'
launcher:
enabled: true
useTemplates: true
templateValues:
service:
type: ClusterIP
annotations:
five: six
job:
ttlSecondsAfterFinished: 99
annotations:
seven: eight
labels:
nine: ten
pod:
serviceAccountName: test
annotations:
one: two
labels:
three: four
volumes:
- name: test
emptyDir: {}
volumeMounts:
- name: test
mountPath: /tmp/mnt
env:
- name: SOME_ENV_VAR
value: the-env-var-value
securityContext:
runAsUser: 999
defaultSecurityContext:
fsGroupChangePolicy: "Always"
runAsGroup: 999
containerSecurityContext:
privileged: false
tolerations:
- key: "kubernetes.azure.com/scalesetpriority"
operator: "Equal"
value: "spot"
effect: "NoSchedule"
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "kubernetes.azure.com/scalesetpriority"
operator: In
values:
- "spot"
8 changes: 8 additions & 0 deletions ci/rstudio-workbench/install/user-create-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
license:
file:
secret: pwb-license
secretKey: pwb.lic

userCreate: true
userName: jforest-test
userPassword: djhkjhij870jjbJye
Loading