NoOverflow

Results 33 comments of NoOverflow

Comparing the Kops request vs Terraform's with Fiddler, I noticed a field "os:scheduler_hints" that was not present in Terraform requests. ![image](https://github.com/kubernetes/kops/assets/54811870/865d71c6-a43e-4397-9c5f-be4c0c589f0c) Removing this field by using breakpoints allowed me to...

Ok, I figured out why provisioning VMs from Horizon directly wasn't increasing my local hypervisor storage. By default Kops and Terraform will create the root volume from the image directly,...

Here's what a Terraform script that allows me to use a block device served by cinder as a root volume looks like; ```HCL resource "openstack_compute_instance_v2" "test-server" { availability_zone = "nova"...

/kind support (Moving this to tag kind/support as it's not a bug but a question, don't know how to remove the kind/bug tag)

Hi, thanks for the response ! Unfortunately I had already tried that, but I may have an idea why it still uses local hypervisor storage, when sniffing the request Kops...

I mean, the feature does work correctly, it provision a volume and boots from it but still uses another volume on the local storage (probably due to that imageRef field)....

Removing the imageRef field using this fiddler script: ```c# if (oSession.HTTPMethodIs("POST") && oSession.PathAndQuery.StartsWith("/v2.1/servers") && oSession.HostnameIs("192.168.1.190:8774")) { FiddlerObject.log("Detecting server creation request, setting imageRef to empty..."); oSession.utilDecodeRequest(); var requestBody = System.Text.Encoding.UTF8.GetString(oSession.requestBodyBytes); if...

Would be more than happy to dig in the Openstack API documentation to confirm that this behaviour is intended, and open a PR to fix it in Kops. Even though...

So, after firing up Wireshark and modifying Traefik I managed to get a TLS Client hello from the MySQL client by jamming a valid Protocol::HandshakeV10 packet (https://dev.mysql.com/doc/dev/mysql-server/latest/page_protocol_connection_phase_packets_protocol_handshake_v10.html). Now I need...

Fork is at: https://github.com/NoOverflow/traefik/tree/feat-mysql-support ![image](https://github.com/traefik/traefik/assets/54811870/58d1beb4-1372-4f3a-8f62-096b5c5cec1b)