Skip to content
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
1 change: 1 addition & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
pull_request:
branches:
- main
workflow_dispatch:

env:
commit_msg: ${{ github.event.head_commit.message }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
values.schema.json
docs/build/
.coverage
htmlcov/
Expand Down
3 changes: 3 additions & 0 deletions continuous_integration/kubernetes/helm-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ echo "DASK_GATEWAY_SERVER_IMAGE: $DASK_GATEWAY_SERVER_IMAGE"
k3d image import $DASK_GATEWAY_IMAGE $DASK_GATEWAY_SERVER_IMAGE
k3d image import $DASK_GATEWAY_SERVER_IMAGE

echo "Generating Helm Chart's values.schema.json"
"${git_root}/resources/helm/tools/generate-json-schema.py"

echo "Installing Helm Chart"
helm install \
test-dask-gateway \
Expand Down
3 changes: 3 additions & 0 deletions continuous_integration/kubernetes/helm-lint-and-template.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ set -e
this_dir="$(dirname "${BASH_SOURCE[0]}")"
git_root="$(cd "${this_dir}/../.." && pwd)"

echo "Generating Helm Chart's values.schema.json"
"${git_root}/resources/helm/tools/generate-json-schema.py"

echo "Linting Helm Chart"
helm lint \
"${git_root}/resources/helm/dask-gateway" \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ spec:
containers:
- name: traefik
image: {{ .Values.traefik.image.name }}:{{ .Values.traefik.image.tag }}
imagePullPolicy: {{ .Values.gateway.image.pullPolicy }}
securityContext:
runAsUser: 1000
runAsGroup: 1000
Expand Down
Loading