Daniil Antoshin
Daniil Antoshin
After rack upgrades to 3.0, Rack::Handler moved to separate gem https://github.com/rack/rack/blob/main/UPGRADE-GUIDE.md#binrackup-rackserver-rackhandlerand--racklobster-were-moved-to-a-separate-gem Possible solution: ```ruby server = defined?(Rackup::Handler) ? Rackup::Handler : Rack::Handler server.run Kubernetes::Health::RackOnSidekiq.new, Port: Kubernetes::Health::Config.metrics_port ```
## Summary Adding the ability to use a proxy when proxy from ENV is not suitable. ```ruby proxy = { :uri => 'http://proxy.example.com', :user => 'foo', :password => 'bar' }...
## Description When creating a vmclass with cpu features, if the node is not ready yet and does not have the necessary labels, the vmclass is left hanging in pending....
## Description ## Why do we need it, and what problem does it solve? ## What is the expected result? ## Checklist - [ ] The code is covered by...
## Description ## Why do we need it, and what problem does it solve? ## What is the expected result? ## Checklist - [ ] The code is covered by...
## Description In the language server protocol, a "workspace" consists of a folder along with per-folder configuration. Some LSP clients such as VS Code allow configuring workspaces explicitly, while others...
## Description ## Why do we need it, and what problem does it solve? ## What is the expected result? ## Checklist - [ ] The code is covered by...
## Description ## Why do we need it, and what problem does it solve? ## What is the expected result? ## Checklist - [ ] The code is covered by...
## Description Creating a VM clone from a snapshot is implemented by the `VirtualMachineSnapshotOperation` resource: ```yaml apiVersion: virtualization.deckhouse.io/v1alpha2 kind: VirtualMachineSnapshotOperation metadata: name: vmsop spec: type: CreateVirtualMachine virtualMachineSnapshotName: vm-snapshot createVirtualMachine: mode:...
## Description ## Why do we need it, and what problem does it solve? ## What is the expected result? ## Checklist - [ ] The code is covered by...