STOR-2954: Inject TLS from CVO to operators, update hypershift TLS based on CVO#712
STOR-2954: Inject TLS from CVO to operators, update hypershift TLS based on CVO#712dfajmon wants to merge 2 commits into
Conversation
|
@dfajmon: This pull request references STOR-2594 which is a valid jira issue. Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the story to target either version "5.0." or "openshift-5.0.", but it targets "openshift-4.21" instead. DetailsIn response to this: Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
Skipping CI for Draft Pull Request. |
WalkthroughThis PR extends all nine CSI driver operators to load configuration from mounted ConfigMaps, exposes metrics ports for monitoring, and implements a TLS injection mechanism for HyperShift by deriving security settings from the HostedControlPlane into management-cluster operator configs. ChangesCSI Operator Configuration and TLS Management
🎯 3 (Moderate) | ⏱️ ~25 minutes 🚥 Pre-merge checks | ✅ 14 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (14 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
@dfajmon: This pull request references STOR-2954 which is a valid jira issue. Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the epic to target the "5.0.0" version, but no target version was set. DetailsIn response to this: Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dfajmon The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
There was a problem hiding this comment.
Actionable comments posted: 2
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
assets/csidriveroperators/powervs-block/hypershift/mgmt/06_deployment.yaml (1)
29-99:⚠️ Potential issue | 🟠 Major | ⚡ Quick winPin the restricted security context in the HyperShift overlay.
This management-cluster deployment still relies on ambient SCC defaults, while
assets/csidriveroperators/powervs-block/standalone/06_deployment.yamlexplicitly setsreadOnlyRootFilesystem,allowPrivilegeEscalation: false,capabilities.drop: [ALL],runAsNonRoot, andseccompProfile. That leaves the HyperShift variant with weaker manifest-level guarantees for the same operator.As per coding guidelines, Kubernetes manifests should set
securityContext: runAsNonRoot, readOnlyRootFilesystem, allowPrivilegeEscalation: false, andDrop ALL capabilities, add only what is required.🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@assets/csidriveroperators/powervs-block/hypershift/mgmt/06_deployment.yaml` around lines 29 - 99, The HyperShift management deployment is missing the restricted container securityContext present in the standalone variant; update the container named powervs-block-csi-driver-operator (and optionally the pod spec) to set container.securityContext with readOnlyRootFilesystem: true, allowPrivilegeEscalation: false, runAsNonRoot: true (and a non-zero runAsUser if used in standalone), capabilities.drop: ["ALL"], and seccompProfile: { type: "RuntimeDefault" } so the HyperShift overlay matches the hardened manifest-level guarantees in the standalone/06_deployment.yaml.Sources: Coding guidelines, Linters/SAST tools
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@assets/csidriveroperators/openstack-cinder/base/07_deployment.yaml`:
- Around line 81-84: The pod template for the Deployment that adds the new
containerPort 8443 (named metrics) must include the network-policy label
openshift.storage.network-policy.operator-metrics-range: allow so the metrics
endpoint is scrappable; edit the Deployment resource (the podTemplateSpec for
the openstack-cinder-csi-driver-operator deployment) and add that label under
metadata.labels in the spec.template section to match the other operators that
expose metrics.
In `@pkg/operator/csidriveroperator/hypershift_deployment_controller.go`:
- Around line 258-286: tlsSettingsFromHCP currently defaults empty or
unrecognized TLS profile types to Modern (TLS 1.3) which contradicts the
fallback behavior in getHostedControlPlaneTLSSettings; update tlsSettingsFromHCP
so that when profileType is empty it sets pt =
configv1.TLSProfileIntermediateType and when profileSpec lookup fails (ok ==
false or profileSpec == nil) it falls back to
configv1.TLSProfiles[configv1.TLSProfileIntermediateType] instead of Modern;
ensure you only change the defaulting logic inside tlsSettingsFromHCP
(references: getHostedControlPlaneTLSSettings and tlsSettingsFromHCP) so tests
expecting Intermediate become correct.
---
Outside diff comments:
In `@assets/csidriveroperators/powervs-block/hypershift/mgmt/06_deployment.yaml`:
- Around line 29-99: The HyperShift management deployment is missing the
restricted container securityContext present in the standalone variant; update
the container named powervs-block-csi-driver-operator (and optionally the pod
spec) to set container.securityContext with readOnlyRootFilesystem: true,
allowPrivilegeEscalation: false, runAsNonRoot: true (and a non-zero runAsUser if
used in standalone), capabilities.drop: ["ALL"], and seccompProfile: { type:
"RuntimeDefault" } so the HyperShift overlay matches the hardened manifest-level
guarantees in the standalone/06_deployment.yaml.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository: openshift/coderabbit/.coderabbit.yaml
Review profile: CHILL
Plan: Enterprise
Run ID: 737cfc09-102c-4580-9bb4-134faa48d093
⛔ Files ignored due to path filters (21)
assets/csidriveroperators/aws-ebs/hypershift/mgmt/generated/apps_v1_deployment_aws-ebs-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/aws-ebs/hypershift/mgmt/generated/v1_configmap_aws-ebs-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/aws-ebs/standalone/generated/apps_v1_deployment_aws-ebs-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/aws-ebs/standalone/generated/v1_configmap_aws-ebs-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-disk/hypershift/mgmt/generated/apps_v1_deployment_azure-disk-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-disk/hypershift/mgmt/generated/v1_configmap_azure-disk-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-disk/standalone/generated/apps_v1_deployment_azure-disk-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-disk/standalone/generated/v1_configmap_azure-disk-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-file/hypershift/mgmt/generated/apps_v1_deployment_azure-file-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-file/hypershift/mgmt/generated/v1_configmap_azure-file-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-file/standalone/generated/apps_v1_deployment_azure-file-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-file/standalone/generated/v1_configmap_azure-file-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-cinder/hypershift/mgmt/generated/apps_v1_deployment_openstack-cinder-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-cinder/hypershift/mgmt/generated/v1_configmap_openstack-cinder-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-cinder/standalone/generated/apps_v1_deployment_openstack-cinder-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-cinder/standalone/generated/v1_configmap_openstack-cinder-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-manila/hypershift/guest/generated/default_operator.openshift.io_v1_clustercsidriver_manila.csi.openstack.org.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-manila/hypershift/mgmt/generated/apps_v1_deployment_manila-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-manila/hypershift/mgmt/generated/v1_configmap_manila-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-manila/standalone/generated/openshift-cluster-csi-drivers_apps_v1_deployment_manila-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-manila/standalone/generated/openshift-cluster-csi-drivers_v1_configmap_manila-csi-driver-operator-config.yamlis excluded by!**/generated/**
📒 Files selected for processing (38)
assets/csidriveroperators/aws-ebs/base/03_configmap.yamlassets/csidriveroperators/aws-ebs/base/09_deployment.yamlassets/csidriveroperators/aws-ebs/base/kustomization.yamlassets/csidriveroperators/azure-disk/base/03_configmap.yamlassets/csidriveroperators/azure-disk/base/08_deployment.yamlassets/csidriveroperators/azure-disk/base/kustomization.yamlassets/csidriveroperators/azure-file/base/03_configmap.yamlassets/csidriveroperators/azure-file/base/08_deployment.yamlassets/csidriveroperators/azure-file/base/kustomization.yamlassets/csidriveroperators/gcp-pd/03_configmap.yamlassets/csidriveroperators/gcp-pd/07_deployment.yamlassets/csidriveroperators/ibm-vpc-block/03_configmap.yamlassets/csidriveroperators/ibm-vpc-block/08_deployment.yamlassets/csidriveroperators/openstack-cinder/base/03_configmap.yamlassets/csidriveroperators/openstack-cinder/base/07_deployment.yamlassets/csidriveroperators/openstack-cinder/base/kustomization.yamlassets/csidriveroperators/openstack-manila/base/03_configmap.yamlassets/csidriveroperators/openstack-manila/base/07_deployment.yamlassets/csidriveroperators/openstack-manila/base/kustomization.yamlassets/csidriveroperators/powervs-block/hypershift/mgmt/03_configmap.yamlassets/csidriveroperators/powervs-block/hypershift/mgmt/06_deployment.yamlassets/csidriveroperators/powervs-block/standalone/03_configmap.yamlassets/csidriveroperators/powervs-block/standalone/06_deployment.yamlassets/csidriveroperators/vsphere/03_configmap.yamlassets/csidriveroperators/vsphere/08_deployment.yamlpkg/operator/csidriveroperator/csioperatorclient/aws.gopkg/operator/csidriveroperator/csioperatorclient/azure-disk.gopkg/operator/csidriveroperator/csioperatorclient/azure-file.gopkg/operator/csidriveroperator/csioperatorclient/cinder.gopkg/operator/csidriveroperator/csioperatorclient/gcp-pd.gopkg/operator/csidriveroperator/csioperatorclient/ibm-vpc-block.gopkg/operator/csidriveroperator/csioperatorclient/manila.gopkg/operator/csidriveroperator/csioperatorclient/powervs-block.gopkg/operator/csidriveroperator/csioperatorclient/types.gopkg/operator/csidriveroperator/csioperatorclient/vsphere.gopkg/operator/csidriveroperator/hypershift_deployment_controller.gopkg/operator/csidriveroperator/hypershift_deployment_controller_test.gopkg/operator/operator_starter.go
| ports: | ||
| - containerPort: 8443 | ||
| name: metrics | ||
| protocol: TCP |
There was a problem hiding this comment.
Add the metrics NetworkPolicy allow-label with the new 8443 listener.
This deployment now exposes the metrics port, but unlike gcp-pd and ibm-vpc-block in the same PR, its pod template still lacks openshift.storage.network-policy.operator-metrics-range: allow. That leaves openstack-cinder-csi-driver-operator as the outlier and can block scraping of the new endpoint.
💡 Suggested fix
labels:
name: openstack-cinder-csi-driver-operator
+ openshift.storage.network-policy.operator-metrics-range: allow🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@assets/csidriveroperators/openstack-cinder/base/07_deployment.yaml` around
lines 81 - 84, The pod template for the Deployment that adds the new
containerPort 8443 (named metrics) must include the network-policy label
openshift.storage.network-policy.operator-metrics-range: allow so the metrics
endpoint is scrappable; edit the Deployment resource (the podTemplateSpec for
the openstack-cinder-csi-driver-operator deployment) and add that label under
metadata.labels in the spec.template section to match the other operators that
expose metrics.
ed53370 to
9473ccf
Compare
…river operators Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9473ccf to
55a8b32
Compare
There was a problem hiding this comment.
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (2)
assets/csidriveroperators/powervs-block/hypershift/mgmt/06_deployment.yaml (2)
64-67:⚠️ Potential issue | 🟠 Major | ⚡ Quick winSet CPU/memory limits for the operator container.
Line 64 currently sets only requests. Missing limits can allow noisy-neighbor behavior and reduce scheduling/runtime predictability on management clusters.
Suggested patch
resources: requests: memory: 50Mi cpu: 10m + limits: + memory: 250Mi + cpu: 200mAs per coding guidelines, every container in Kubernetes/OpenShift manifests should define CPU and memory resource limits.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@assets/csidriveroperators/powervs-block/hypershift/mgmt/06_deployment.yaml` around lines 64 - 67, The resources section for the operator container currently defines only requests for memory and cpu, but is missing the corresponding limits. Add a limits subsection under resources that specifies both cpu and memory limits (in addition to the existing requests) to prevent noisy-neighbor behavior and ensure predictable scheduling and runtime behavior on management clusters, as required by the coding guidelines for Kubernetes/OpenShift manifests.Source: Coding guidelines
29-79:⚠️ Potential issue | 🟠 Major | ⚡ Quick winHarden pod/container securityContext before merge.
Line 29 onward defines the operator container without explicit
allowPrivilegeEscalation: false,readOnlyRootFilesystem: true, dropped capabilities, andrunAsNonRootat pod level. This leaves a weaker security baseline than the other driver deployments.Suggested patch
containers: - args: @@ resources: requests: memory: 50Mi cpu: 10m + securityContext: + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + capabilities: + drop: + - ALL @@ spec: + securityContext: + runAsNonRoot: true + seccompProfile: + type: RuntimeDefault priorityClassName: hypershift-control-planeAs per coding guidelines, Kubernetes/OpenShift manifests must enforce
securityContexthardening (runAsNonRoot,allowPrivilegeEscalation: false, and least-privilege capability posture).🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@assets/csidriveroperators/powervs-block/hypershift/mgmt/06_deployment.yaml` around lines 29 - 79, The container specification for powervs-block-csi-driver-operator in the deployment lacks required security hardening. Add a securityContext block at the pod spec level (before containers) with runAsNonRoot set to true, and add a securityContext block within the powervs-block-csi-driver-operator container specification with allowPrivilegeEscalation set to false, readOnlyRootFilesystem set to true, and capabilities drop set to ALL. This ensures the container runs with non-root privileges, prevents privilege escalation, uses a read-only root filesystem, and drops all unnecessary capabilities in alignment with security hardening standards.Sources: Coding guidelines, Linters/SAST tools
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Outside diff comments:
In `@assets/csidriveroperators/powervs-block/hypershift/mgmt/06_deployment.yaml`:
- Around line 64-67: The resources section for the operator container currently
defines only requests for memory and cpu, but is missing the corresponding
limits. Add a limits subsection under resources that specifies both cpu and
memory limits (in addition to the existing requests) to prevent noisy-neighbor
behavior and ensure predictable scheduling and runtime behavior on management
clusters, as required by the coding guidelines for Kubernetes/OpenShift
manifests.
- Around line 29-79: The container specification for
powervs-block-csi-driver-operator in the deployment lacks required security
hardening. Add a securityContext block at the pod spec level (before containers)
with runAsNonRoot set to true, and add a securityContext block within the
powervs-block-csi-driver-operator container specification with
allowPrivilegeEscalation set to false, readOnlyRootFilesystem set to true, and
capabilities drop set to ALL. This ensures the container runs with non-root
privileges, prevents privilege escalation, uses a read-only root filesystem, and
drops all unnecessary capabilities in alignment with security hardening
standards.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository: openshift/coderabbit/.coderabbit.yaml
Review profile: CHILL
Plan: Enterprise
Run ID: f694e5e1-4423-45b6-8f67-157b8e6babb3
⛔ Files ignored due to path filters (25)
assets/csidriveroperators/aws-ebs/hypershift/mgmt/generated/apps_v1_deployment_aws-ebs-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/aws-ebs/hypershift/mgmt/generated/v1_configmap_aws-ebs-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/aws-ebs/standalone/generated/apps_v1_deployment_aws-ebs-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/aws-ebs/standalone/generated/v1_configmap_aws-ebs-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-disk/hypershift/mgmt/generated/apps_v1_deployment_azure-disk-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-disk/hypershift/mgmt/generated/v1_configmap_azure-disk-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-disk/standalone/generated/apps_v1_deployment_azure-disk-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-disk/standalone/generated/v1_configmap_azure-disk-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-file/hypershift/mgmt/generated/apps_v1_deployment_azure-file-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-file/hypershift/mgmt/generated/v1_configmap_azure-file-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-file/standalone/generated/apps_v1_deployment_azure-file-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/azure-file/standalone/generated/v1_configmap_azure-file-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-cinder/hypershift/mgmt/generated/apps_v1_deployment_openstack-cinder-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-cinder/hypershift/mgmt/generated/v1_configmap_openstack-cinder-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-cinder/hypershift/mgmt/generated/v1_service_openstack-cinder-csi-driver-operator-metrics.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-cinder/standalone/generated/apps_v1_deployment_openstack-cinder-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-cinder/standalone/generated/v1_configmap_openstack-cinder-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-manila/hypershift/mgmt/generated/apps_v1_deployment_manila-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-manila/hypershift/mgmt/generated/rbac.authorization.k8s.io_v1_role_manila-csi-driver-operator-role.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-manila/hypershift/mgmt/generated/rbac.authorization.k8s.io_v1_rolebinding_manila-csi-driver-operator-rolebinding.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-manila/hypershift/mgmt/generated/v1_configmap_manila-csi-driver-operator-config.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-manila/hypershift/mgmt/generated/v1_service_manila-csi-driver-operator-metrics.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-manila/hypershift/mgmt/generated/v1_serviceaccount_manila-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-manila/standalone/generated/openshift-cluster-csi-drivers_apps_v1_deployment_manila-csi-driver-operator.yamlis excluded by!**/generated/**assets/csidriveroperators/openstack-manila/standalone/generated/openshift-cluster-csi-drivers_v1_configmap_manila-csi-driver-operator-config.yamlis excluded by!**/generated/**
📒 Files selected for processing (43)
assets/csidriveroperators/aws-ebs/base/03_configmap.yamlassets/csidriveroperators/aws-ebs/base/09_deployment.yamlassets/csidriveroperators/aws-ebs/base/kustomization.yamlassets/csidriveroperators/aws-ebs/hypershift/mgmt/kustomization.yamlassets/csidriveroperators/azure-disk/base/03_configmap.yamlassets/csidriveroperators/azure-disk/base/08_deployment.yamlassets/csidriveroperators/azure-disk/base/kustomization.yamlassets/csidriveroperators/azure-disk/hypershift/mgmt/kustomization.yamlassets/csidriveroperators/azure-file/base/03_configmap.yamlassets/csidriveroperators/azure-file/base/08_deployment.yamlassets/csidriveroperators/azure-file/base/kustomization.yamlassets/csidriveroperators/azure-file/hypershift/mgmt/kustomization.yamlassets/csidriveroperators/gcp-pd/03_configmap.yamlassets/csidriveroperators/gcp-pd/07_deployment.yamlassets/csidriveroperators/ibm-vpc-block/03_configmap.yamlassets/csidriveroperators/ibm-vpc-block/08_deployment.yamlassets/csidriveroperators/openstack-cinder/base/03_configmap.yamlassets/csidriveroperators/openstack-cinder/base/07_deployment.yamlassets/csidriveroperators/openstack-cinder/base/kustomization.yamlassets/csidriveroperators/openstack-cinder/hypershift/mgmt/kustomization.yamlassets/csidriveroperators/openstack-manila/base/03_configmap.yamlassets/csidriveroperators/openstack-manila/base/07_deployment.yamlassets/csidriveroperators/openstack-manila/base/kustomization.yamlassets/csidriveroperators/openstack-manila/hypershift/mgmt/kustomization.yamlassets/csidriveroperators/powervs-block/hypershift/mgmt/03_configmap.yamlassets/csidriveroperators/powervs-block/hypershift/mgmt/06_deployment.yamlassets/csidriveroperators/powervs-block/standalone/03_configmap.yamlassets/csidriveroperators/powervs-block/standalone/06_deployment.yamlassets/csidriveroperators/vsphere/03_configmap.yamlassets/csidriveroperators/vsphere/08_deployment.yamlpkg/operator/csidriveroperator/csioperatorclient/aws.gopkg/operator/csidriveroperator/csioperatorclient/azure-disk.gopkg/operator/csidriveroperator/csioperatorclient/azure-file.gopkg/operator/csidriveroperator/csioperatorclient/cinder.gopkg/operator/csidriveroperator/csioperatorclient/gcp-pd.gopkg/operator/csidriveroperator/csioperatorclient/ibm-vpc-block.gopkg/operator/csidriveroperator/csioperatorclient/manila.gopkg/operator/csidriveroperator/csioperatorclient/powervs-block.gopkg/operator/csidriveroperator/csioperatorclient/types.gopkg/operator/csidriveroperator/csioperatorclient/vsphere.gopkg/operator/csidriveroperator/hypershift_deployment_controller.gopkg/operator/csidriveroperator/hypershift_deployment_controller_test.gopkg/operator/operator_starter.go
✅ Files skipped from review due to trivial changes (10)
- assets/csidriveroperators/aws-ebs/base/kustomization.yaml
- assets/csidriveroperators/vsphere/03_configmap.yaml
- pkg/operator/csidriveroperator/csioperatorclient/gcp-pd.go
- assets/csidriveroperators/openstack-manila/base/kustomization.yaml
- assets/csidriveroperators/openstack-cinder/base/kustomization.yaml
- pkg/operator/csidriveroperator/csioperatorclient/vsphere.go
- assets/csidriveroperators/openstack-manila/base/03_configmap.yaml
- pkg/operator/operator_starter.go
- assets/csidriveroperators/azure-file/base/kustomization.yaml
- pkg/operator/csidriveroperator/csioperatorclient/azure-file.go
🚧 Files skipped from review as they are similar to previous changes (25)
- assets/csidriveroperators/openstack-cinder/base/03_configmap.yaml
- assets/csidriveroperators/azure-file/base/03_configmap.yaml
- pkg/operator/csidriveroperator/csioperatorclient/ibm-vpc-block.go
- assets/csidriveroperators/azure-disk/base/kustomization.yaml
- assets/csidriveroperators/ibm-vpc-block/03_configmap.yaml
- assets/csidriveroperators/aws-ebs/base/03_configmap.yaml
- assets/csidriveroperators/openstack-cinder/base/07_deployment.yaml
- pkg/operator/csidriveroperator/csioperatorclient/cinder.go
- assets/csidriveroperators/ibm-vpc-block/08_deployment.yaml
- pkg/operator/csidriveroperator/csioperatorclient/types.go
- assets/csidriveroperators/azure-file/base/08_deployment.yaml
- assets/csidriveroperators/powervs-block/standalone/03_configmap.yaml
- assets/csidriveroperators/gcp-pd/03_configmap.yaml
- assets/csidriveroperators/azure-disk/base/03_configmap.yaml
- assets/csidriveroperators/powervs-block/hypershift/mgmt/03_configmap.yaml
- assets/csidriveroperators/azure-disk/base/08_deployment.yaml
- assets/csidriveroperators/gcp-pd/07_deployment.yaml
- assets/csidriveroperators/openstack-manila/base/07_deployment.yaml
- assets/csidriveroperators/vsphere/08_deployment.yaml
- pkg/operator/csidriveroperator/csioperatorclient/azure-disk.go
- assets/csidriveroperators/powervs-block/standalone/06_deployment.yaml
- pkg/operator/csidriveroperator/csioperatorclient/aws.go
- pkg/operator/csidriveroperator/hypershift_deployment_controller_test.go
- pkg/operator/csidriveroperator/csioperatorclient/powervs-block.go
- pkg/operator/csidriveroperator/hypershift_deployment_controller.go
|
/retest |
|
@dfajmon: The following test failed, say
Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
Summary by CodeRabbit
Release Notes