Lars Kellogg-Stedman

Results 104 issues of Lars Kellogg-Stedman

Running `acrylamid` by itself results in: ``` 'acrylamid.tasks.imprt' ImportError: cannot import name 'HTMLParseError' Traceback (most recent call last): File "/home/lars/projects/blog.oddbit.com/.acr/lib/python3.6/site-packages/acrylamid/helpers.py", line 421, in discover mod = sys.modules[modname] KeyError: 'acrylamid.tasks.imprt' During...

### Vagrant version ``` Vagrant 2.2.16 ``` ### Host operating system Fedora 35 ### Guest operating system Fedora 36 ### Vagrantfile ```ruby Vagrant.configure("2") do |config| config.vm.provider :libvirt do |libvirt| libvirt.uri...

provisioner/ansible
needs-investigation

### Expected/Desired Behavior: Mininet should exit gracefully without hanging. ### Actual Behavior: It is possible to call `start` on a controller multiple times without errors. That is, if I have:...

Many modern distributions no longer install `brctl` by default, since bridges can be created and managed using the `ip link` command from the `iproute` package (which is almost always installed)....

I'm trying to use `python-dotenv` 0.9.2, and it appears that it does not load the `.env` file from the current directory, which is unexpected and surprising. With a script located...

I just ran into the following odd behavior. If I specify a literal value as a list of integers, like this: ```ksy types: tables: instances: example_lookup: value: >- [10, 20,...

question

I'm reading in some data that represents certain values using what is essentially a table lookup. That is, the data may contain data in the range `0..5`, and each value...

### Description My OpenAPI 3.0.0 specification contains entries that look like this: ``` $ref: 'models/provider.yaml#/components/schemas/Provider' ``` This is "remote reference" as documented in the [OpenAPI documentation](https://swagger.io/docs/specification/using-ref/). ### Expected behaviour I...

**Describe the bug** OpenAPI 3 references JSONSchema 2019-09 (since https://github.com/OAI/OpenAPI-Specification/pull/1977), which includes support for the `const` keyword. The `const` keyword is for defining constant value properties in schemas. **To Reproduce**...

enhancement

I'd like to use `config-lint` to check Kubernetes manifests output by `kustomize build`. That produces a YAML stream containing multiple documents, like: ``` apiVersion: v1 kind: Namespace metadata: name: project-operator...