James Sturtevant

Results 116 issues of James Sturtevant

PR #6 enabled AceJump to work with VsVim but there is a known issue if you try to use ace-jump in visual mode. After jumping, it first seems that the...

## Problem When running hostprocess containers on a node with windows_exporter running the `windows_container_count` metric isn't incremented. This is because the container collector queries hcs for the containers and with...

help wanted

**What is missing?** There are docs on how to configure for windows: https://github.com/prometheus-operator/kube-prometheus/blob/main/docs/windows.md > Currently, Windows does not support running with [windows_exporter](https://github.com/prometheus-community/windows_exporter) in a pod so this add on uses...

help wanted
kind/feature
kind/documentation

**What happened?** I was looking through the specs generated and the found the message: ``` kubectl logs node-exporter-cbgwz evel=info ts=2021-11-04T22:21:56.153Z caller=tls_config.go:191 msg="TLS is disabled." http2=false ``` even though secure-listen-address is...

kind/feature

Implements `ListPodSandboxStats` and `PodSandboxStats` for Windows. Part of https://github.com/kubernetes/enhancements/issues/2371 Currently is using the branch from https://github.com/kubernetes/kubernetes/pull/110754 for the CRI API updates that were needed for Windows #### Special notes for...

needs-ok-to-test

**Describe the solution you'd like** A policy in the library to apply a to apply a constraint on gMSA field in a Windows pod spec. A windows pod has a...

**Describe the solution you'd like** A policy that blocks `ContainerAdministrator` from being set on the WindowsOptions podspec. It is generally a good idea to run your containers with `ContainerUser` for...

Fixes: #518 Still needs: - [x] docs - [x] a bit more thought on how to specific user - [x] test

enhancement
platform/Windows
impact/major

Add the correct specs fields to https://github.com/containerd/nerdctl/blob/f316402913c4239a2388b7467bcffc9735dd8327/cmd/nerdctl/run_windows.go#L42 Something like: ``` hpc, err := cmd.Flags().GetBool("host-process") if err != nil { return nil, err } if hpc { //TODO append the right...

enhancement
platform/Windows

Add the correct fields to the spec at https://github.com/containerd/nerdctl/blob/f316402913c4239a2388b7467bcffc9735dd8327/cmd/nerdctl/run_windows.go#L42 Something like: ``` isolation := cmd.Flags().GetString("isolation") if isolation == "hyperv" { opts = append(opts, oci.WithWindowsHyperV) } ``` See https://docs.docker.com/engine/reference/commandline/run/#specify-isolation-technology-for-container---isolation

enhancement
platform/Windows