Dan Clark

Results 56 comments of Dan Clark

@ocafebabe Yep, that's what I'm working on. Funny enough I think it all boils down to this one line: ``` if '/' not in self.name or transport == 'docker-archive': ```

@sshnaidm I updated the PR to simplify the change down to inverting the regex pattern on when to include the options. I also added in a could of tests. Let...

According to the AWS docs the meta-data endpoint is a link local address which can only be reached from the host. Can it actually be reached from inside a container?...

So I was able to workaround this issue by disabling the liveness containers and probes for 9808 and then enabling hostNetworking for the csi controller pod

@prashantokochavara Yes, I'll add them here. Wanted to note that I found the reason hostNetwork is not needed in vanilla kube is because the OpenShift SDN won't route the link...

Here is a link to my fork of the driver where I modified the helm chart to support OpenShift 4.3. Note that I modified the 0.3.0 chart and ran that...

You don't need an ENV variable to change the user. That can be done at run time with flags like: ``` docker run --user 1001 ``` UIDs tend to be...

This issue also happens on systems that have been converted to RHEL from centos. I converted a Centos 7 system to RHEL using convert2rhel and then used leapp to upgrade...

I was able to solve the issue in my cluster using something similar to what @ppalaga added. I've created a PR for it here: https://github.com/siamaksade/openshift-cd-demo/pull/135