John Stairs
John Stairs
`sinceSeconds` is there, but [`sinceTime`](https://github.com/kubernetes/kubernetes/blob/4cdeab4696e86c9738d99e2650d2cdfdfb0f8d32/staging/src/k8s.io/api/core/v1/types.go#L5412) is not. For reference, `kubectl logs foo --since-time 2022-04-13T15:47:20.228120617Z` Results in an API call using the parameter: ``` GET https://xxx/api/v1/namespaces/bar/pods/foo/log?container=c&sinceTime=2022-04-13T15%3A47%3A20Z ```
The exit code of `dotnet-symbol` should be non-zero when it encounters an error. Example: ``` $ cat /foo/bar cat: /foo/bar: No such file or directory $ echo $? 1 $...
This change allows you to install Tyger in a local Docker environment instead of the cloud. When installed, you get a number of containers: - tyger-local-db: a PostreSQL database -...
By default, `tyger buffer write` writes 4MB blocks at a time. If its input stream writes, say, 1KB/s, it will take more than an hour to write its first block....
Maybe the most straightforward way is to expose data from the cluster autoscaler: ``` kubectl get configmap -n kube-system cluster-autoscaler-status -o yaml c97b3889a26b: Wed Nov 29 13:34:30 2023 apiVersion: v1...
Save values for `--block-size` and `--dop` in a file in `$XDG_CONFIG_HOME`. These values, if present, would become the default. We could also support different values per hostname: ```json= { "myeastusaccount.blob.core.windows.net":...
When using `tyger buffer write` or `tyger buffer read`, our bandwidth is currently limited by our ability to read and write to pipes. [This article](https://mazzo.li/posts/fast-pipes.html) has an excellent summary of...
The SAS tokens that we generate only last one hour. We need to support renewing these on the recon side, during `tyger buffer read|write`. 1. `tyger buffer read|write ID` should...
Similar to [`azcopy bench`](https://learn.microsoft.com/en-us/azure/storage/common/storage-ref-azcopy-bench), this feature would try to find the values for `--block-size` and `--dop` for reads and writes that maximize throughput to a storage account.
**Is your feature request related to a problem? Please describe.** We need to acquire OAuth tokens using a certificate that is in a Windows certificate store. The private key is...