David J. M. Karlsen

Results 281 comments of David J. M. Karlsen

The issue lies here: https://github.com/kubernetes/mount-utils/pull/5

https://github.com/kubernetes/kubernetes/pull/104923

@mittachaitu I believe that's another problem (it has another error-message) - please create a separate issue for that.

@w3aman could you maybe by any chance pull in my hack on mount_utils? Merging into Kubernetes and waiting for a release will take forever.

The core of the problem is that openebs sees the volume as not formatted: ``` 1 mount_linux.go:366] Disk "/dev/datavg/XXX" appears to be unformatted, attempting to format as type: "ext4" with...

@dmitshur how can I set a query-variable to null? If I have a map[string]interface and set "somekey": nil it fails at writeArgumentType. I have a pagingElement which should be null...

> @davidkarlsen Something like this should work: > > ```go > variables := map[string]interface{}{ > "somekey": (*githubv4.String)(nil), // or another concrete type instead of String > // ... > }...

Hmm, I have this query: ``` var query struct { Organization struct { SamlIdentityProvider struct { ExternalIdentities struct { PageInfo struct { hasNextPage githubv4.Boolean endCursor githubv4.String } `graphql:"pageInfo"` Edges []struct...

it works if I configure a http_proxy, and I see that you can configure that via the configmap (although I had to look a bit around to find the options)....