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

[Docs, Batch] Document need for copying keys in developer namespaces #14664

Merged
Merged
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
9 changes: 9 additions & 0 deletions dev-docs/development-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,15 @@ HAIL_DEFAULT_NAMESPACE=default hailctl dev deploy -b <github_user_name>/hail:<br
After this dev deploy completes, you should be able to access your namespace
by navigating to https://internal.hail.is/<username>/batch.

The service accounts used in developer namespaces do not have permission to create pet service accounts in the
`hail-vdc` project, so the gsa-key secrets for these must be copied across from the default namespace in order
to run real jobs on the developer namespaces' batch services:
```bash
$ download-secret <username>-gsa-key
$ mv secret.json key.json
$ kubectl create secret generic <username>-gsa-key --namespace=<username> --from-file=key.json
```
patrick-schultz marked this conversation as resolved.
Show resolved Hide resolved

To submit jobs to your dev namespace, you need to configure your local hail
installation to point to the dev namespace. You can do this by running

Expand Down
Loading