Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9667f8c
localrepo checkmarx fixes
pullan1 Jun 8, 2026
960c0f9
Merge branch 'dell:pub/q2_upgrade' into pub/q2_upgrade
pullan1 Jun 8, 2026
e75de54
Checkmarx fixes
pullan1 Jun 8, 2026
401b625
vast metrics relabeling fix
pullan1 Jun 8, 2026
b7c1c0e
Merge branch 'dell:pub/q2_upgrade' into pub/q2_upgrade
pullan1 Jun 9, 2026
dd935be
Merge branch 'dell:pub/q2_upgrade' into pub/q2_upgrade
pullan1 Jun 9, 2026
5929bf9
ansible 2.20 fixes
pullan1 Jun 9, 2026
f692da0
aarch64 image builder update
abhishek-sa1 Jun 11, 2026
e0a2270
Merge branch 'dell:pub/q2_upgrade' into pub/q2_upgrade
pullan1 Jun 12, 2026
ff69de6
Checkmarx fix
pullan1 Jun 12, 2026
c941f87
Merge pull request #4744 from pullan1/pub/q2_upgrade
abhishek-sa1 Jun 12, 2026
10ce7ba
Checkmarx fix localrepo
pullan1 Jun 12, 2026
c0c862f
Merge pull request #4745 from pullan1/pub/q2_upgrade
jagadeeshnv Jun 12, 2026
8e6ce36
Catalog update for additional packages and powerscale
abhishek-sa1 Jun 12, 2026
450d876
Create additional_packages.json
abhishek-sa1 Jun 12, 2026
fd5e428
Merge pull request #4747 from jagadeeshnv/pub/q2_upgrade
jagadeeshnv Jun 12, 2026
e299390
fix: add ADMIN_IP subnet consistency validation for PXE mapping (#4746)
sujit-jadhav Jun 12, 2026
0943340
Update adapter_policy.py
abhishek-sa1 Jun 12, 2026
ac29698
Delete catalog_rhel.json
abhishek-sa1 Jun 12, 2026
da74572
fix: add PowerScale S3 cleanup to oim_cleanup and fix VictoriaMetrics…
balajikumaran-c-s Jun 12, 2026
6618f44
Update service_k8s_v1.35.1.json (#4749)
priti-parate Jun 12, 2026
bc9a76b
Merge pull request #76 from abhishek-sa1/q2_upgrade_sync
abhishek-sa1 Jun 12, 2026
ece6441
catalog powerscale update
abhishek-sa1 Jun 12, 2026
9876277
Merge pull request #4741 from abhishek-sa1/catalog_aarch64
abhishek-sa1 Jun 12, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion build_image_aarch64/build_image_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,20 @@
hosts: localhost
connection: local
tags: always
vars:
build_tags:
- "build_aarch_image"
pre_tasks:
- name: Check if config file exists
ansible.builtin.set_fact:
build_tags:
- "software_config"
when: functional_groups is defined
tasks:
- name: Set dynamic run tags including 'build_aarch_image'
when: not config_file_status | default(false) | bool
ansible.builtin.set_fact:
omnia_run_tags: "{{ (ansible_run_tags | default([]) | list + ['build_aarch_image']) | unique }}"
omnia_run_tags: "{{ (ansible_run_tags | default([]) | list + build_tags | default([]) | list) | unique }}"
cacheable: true

- name: Invoke validate_config.yml to perform L1 and L2 validations with build_image tag
Expand Down
11 changes: 10 additions & 1 deletion build_image_x86_64/build_image_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,20 @@
hosts: localhost
connection: local
tags: always
vars:
build_tags:
- "build_image"
pre_tasks:
- name: Check if config file exists
ansible.builtin.set_fact:
build_tags:
- "software_config"
when: functional_groups is defined
tasks:
- name: Set dynamic run tags including 'build_image'
when: not config_file_status | default(false) | bool
ansible.builtin.set_fact:
omnia_run_tags: "{{ (ansible_run_tags | default([]) | list + ['build_image']) | unique }}"
omnia_run_tags: "{{ (ansible_run_tags | default([]) | list + build_tags | default([]) | list) | unique }}"
cacheable: true

- name: Invoke validate_config.yml to perform L1 and L2 validations with build_image tag
Expand Down
2 changes: 1 addition & 1 deletion build_stream/core/catalog/adapter_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
_DEFAULT_SCHEMA_PATH = os.path.join(_BASE_DIR, "resources", "AdapterPolicySchema.json")

_K8S_VERSION = "1.35.1"
_CSI_VERSION = "v2.16.0"
_CSI_VERSION = "v2.17.0"


def _validate_input_policy_and_schema_paths(
Expand Down
Loading
Loading