Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CSM image version update from nightly to latest version #860

Merged
merged 7 commits into from
Jan 16, 2025

Conversation

mgandharva
Copy link
Contributor

@mgandharva mgandharva commented Jan 15, 2025

Description

Image versions are updated from nightly to the latest version in the operatorconfig

Note:

This PR has to be merged once all the images are released.

GitHub Issues

List the GitHub issues impacted by this PR:

GitHub Issue #
dell/csm#1559

Checklist:

  • I have performed a self-review of my own code to ensure there are no formatting, vetting, linting, or security issues
  • I have verified that new and existing unit tests pass locally with my changes
  • I have not allowed coverage numbers to degenerate
  • I have maintained at least 90% code coverage
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • I have added tests that prove my fix is effective or that my feature works
  • I have maintained backward compatibility
  • I have executed the relevant end-to-end test scenarios

How Has This Been Tested?

Please describe the tests that you ran to verify your changes. Please also list any relevant details for your test configuration

  • Ran sanity to check minimal samples are pulling the correct version

@@ -91,7 +91,7 @@ spec:
allowPrivilegeEscalation: true
capabilities:
add: ["SYS_ADMIN"]
image: quay.io/dell/container-storage-modules/csi-vxflexos:nightly
image: quay.io/dell/container-storage-modules/csi-vxflexos:v2.13.0
imagePullPolicy: Always
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should image pull policy be changed to IfNotPresent in operatorconfig?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes

@anandrajak1 anandrajak1 marked this pull request as ready for review January 15, 2025 16:39
@@ -217,7 +217,7 @@ spec:
- name: socket-dir
mountPath: /var/run/csi
- name: driver
image: quay.io/dell/container-storage-modules/csi-vxflexos:nightly
image: quay.io/dell/container-storage-modules/csi-vxflexos:v2.13.0
imagePullPolicy: Always
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please change this to IfNotPresent

@@ -197,7 +197,7 @@ spec:
mountPath: /host_opt_emc_path
initContainers:
- name: mdm-container
image: quay.io/dell/container-storage-modules/csi-vxflexos:nightly
image: quay.io/dell/container-storage-modules/csi-vxflexos:v2.13.0
imagePullPolicy: Always
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please change this to IfNotPresent

@@ -236,7 +236,7 @@ spec:
- name: socket-dir
mountPath: /var/run/csi
- name: driver
image: quay.io/dell/container-storage-modules/csi-powermax:nightly
image: quay.io/dell/container-storage-modules/csi-powermax:v2.13.0
imagePullPolicy: Always
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please change this to IfNotPresent

@@ -90,7 +90,7 @@ spec:
capabilities:
add: ["SYS_ADMIN"]
allowPrivilegeEscalation: true
image: quay.io/dell/container-storage-modules/csi-powermax:nightly
image: quay.io/dell/container-storage-modules/csi-powermax:v2.13.0
imagePullPolicy: Always
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please change this to IfNotPresent

@@ -239,7 +239,7 @@ spec:
- name: socket-dir
mountPath: /var/run/csi
- name: csi-metadata-retriever
image: quay.io/dell/container-storage-modules/csi-metadata-retriever:nightly
image: quay.io/dell/container-storage-modules/csi-metadata-retriever:v2.13.0
imagePullPolicy: Always
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please change this to IfNotPresent

@@ -1,5 +1,5 @@
name: reverseproxy
image: quay.io/dell/container-storage-modules/csipowermax-reverseproxy:nightly
image: quay.io/dell/container-storage-modules/csipowermax-reverseproxy:v2.12.0
imagePullPolicy: Always
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please change this to IfNotPresent

@@ -1,5 +1,5 @@
name: dell-csi-replicator
image: quay.io/dell/container-storage-modules/dell-csi-replicator:nightly
image: quay.io/dell/container-storage-modules/dell-csi-replicator:v1.11.0
imagePullPolicy: Always
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please change this to IfNotPresent

@@ -272,7 +272,7 @@ spec:
value: /app/certs
- name: X_CSI_REPLICATION_CONFIG_FILE_NAME
value: config
image: quay.io/dell/container-storage-modules/dell-replication-controller:nightly
image: quay.io/dell/container-storage-modules/dell-replication-controller:v1.11.0
imagePullPolicy: Always
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please change this to IfNotPresent

@@ -80,7 +80,7 @@ spec:
capabilities:
add: ["SYS_ADMIN"]
allowPrivilegeEscalation: true
image: quay.io/dell/container-storage-modules/csi-isilon:nightly
image: quay.io/dell/container-storage-modules/csi-isilon:v2.13.0
imagePullPolicy: Always
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please change this to IfNotPresent

@@ -239,7 +239,7 @@ spec:
- name: socket-dir
mountPath: /var/run/csi
- name: csi-metadata-retriever
image: quay.io/dell/container-storage-modules/csi-metadata-retriever:nightly
image: quay.io/dell/container-storage-modules/csi-metadata-retriever:v2.13.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

alikdell
alikdell previously approved these changes Jan 15, 2025
* switch repo from docker to quay for sdc

* fix metadata image and change pull policy
alikdell
alikdell previously approved these changes Jan 15, 2025
Copy link
Contributor

@alikdell alikdell left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approving from 1.13

configVersion: "v1.11.0"
configVersion: "v1.12.0"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is Resiliency module a version behind the main release? I noticed that it's at v1.12.0 while most everything else is bumping to 1.13.0.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yup, looks like 1.12 is the latest; added here: https://quay.io/repository/dell/container-storage-modules/podmon?tab=tags

@alikdell
Copy link
Contributor

Approving for 1.13 release

Copy link

@sharmilarama sharmilarama left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, approving to release 1.13

@alikdell alikdell merged commit 85d0e5c into main Jan 16, 2025
7 checks passed
@alikdell alikdell deleted the mg/image-version-update branch January 16, 2025 21:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants