Skip to content

Commit

Permalink
lets see if hte launcher template values from the lint tests work
Browse files Browse the repository at this point in the history
  • Loading branch information
jforest committed Dec 11, 2024
1 parent 70a7b87 commit 3a3c390
Showing 1 changed file with 58 additions and 0 deletions.
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"

0 comments on commit 3a3c390

Please sign in to comment.