Adam Lewis
Adam Lewis
After talking with the team, there are some other benefits of not using a VM. One being that our tests could use this command. If we do a VM, we...
Progress: I got a windows development box running by downloading the virtualbox windows vm from https://developer.microsoft.com/en-us/windows/downloads/virtual-machines/. I couldn't get wsl working on it, but I should be okay without it.
Reopening issue as this is still unimplemented and a desired feature
This issue is still on the to do list, but I don't currently have time to make progress on it. We do have grafana as part of qhub, but no...
Adding a note in case it's useful. Though a CRD sounds like a potentially better solution, we did have a workaround in the Prometheus config in the past (https://github.com/Quansight/qhub/pull/797/files) (see...
@costrouc When adding kubectl provider, we'll need to add credentials, right? e.g. ``` provider "kubectl" { host = var.eks_cluster_endpoint cluster_ca_certificate = base64decode(var.eks_cluster_ca) token = data.aws_eks_cluster_auth.main.token load_config_file = false } ```...
That worked great. I do think this is something that will trip up a lot of users. Perhaps we could set up a rule in traefik to add the last...
Closing in favor of https://github.com/nebari-dev/nebari-docs/issues/240
I'm curious if you found a solution @jsanko9 since I'm hitting something similar trying to upload to a Dell S3 Compatible storage appliance.
In our case, the solution was to add `s3_additional_kwargs={"ACL": "private"}` ```python import s3fs other_s3fs_kwargs = {} fs = s3fs.S3FileSystem(**other_s3fs_kwargs, s3_additional_kwargs={"ACL": "private"}) ```