Bug 2107043
Summary: | HTTPS_PROXY ENV missing in some CSI driver operators | ||
---|---|---|---|
Product: | OpenShift Container Platform | Reporter: | Victor Medina <vmedina> |
Component: | Storage | Assignee: | Jonathan Dobson <jdobson> |
Storage sub component: | Operators | QA Contact: | Wei Duan <wduan> |
Status: | CLOSED ERRATA | Docs Contact: | |
Severity: | medium | ||
Priority: | medium | CC: | jdobson |
Version: | 4.10 | ||
Target Milestone: | --- | ||
Target Release: | 4.12.0 | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | No Doc Update | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2023-01-17 19:52:40 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 2109205 |
Description
Victor Medina
2022-07-14 08:02:40 UTC
This was fixed for vsphere-problem-detector, manila, and ovirt by bug 1912944 in this PR: https://github.com/openshift/cluster-storage-operator/pull/122 And it looks like all the driver deployments have already been updated, for example GCP PD: https://github.com/openshift/gcp-pd-csi-driver-operator/pull/10/commits/80862a60861ebd3c7cf52e89402c8b52db3d8de3 But there are still some operators (including vsphere) that are missing this annotation: https://github.com/openshift/cluster-storage-operator/pull/122/commits/f5e252f28b551c06c15fbcc1c2c8786dc980c8b1 I'll file a PR to update the remaining operator deployments in CSO. On the proxy configurated vsphere cluster: $ oc get proxy cluster -o yaml | grep http httpProxy: xxxxxx httpsProxy: xxxxxx Before the fix, proxy is *NOT* injected in vmware-vsphere-csi-driver-operator on 4.11.0-0.nightly-2022-07-19-104004 $ oc -n openshift-cluster-csi-drivers get deployment.apps/vmware-vsphere-csi-driver-operator -o yaml | grep http $ After the fix, proxy is injected in vmware-vsphere-csi-driver-operator on 4.12.0-0.nightly-2022-07-21-192844 oc -n openshift-cluster-csi-drivers get deployment.apps/vmware-vsphere-csi-driver-operator -o yaml | grep -B1 http - name: HTTPS_PROXY value: xxxxxx - name: HTTP_PROXY value: xxxxxx Same check on azure-disk-csi-driver-operator, azure-file-csi-driver-operator and gcp-pd-csi-driver-operator as well. Change to VERIFIED based on https://bugzilla.redhat.com/show_bug.cgi?id=2107043#c3 Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory (Moderate: OpenShift Container Platform 4.12.0 bug fix and security update), and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHSA-2022:7399 |