Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
4585c92
checkmarx fix
pullan1 Oct 22, 2025
4e7b96b
Merge pull request #3641 from pullan1/pub/ochami
snarthan Oct 22, 2025
ea7ef24
defect fix for credentials rule
sakshi-singla-1735 Oct 27, 2025
0d5e654
fixed discovery playbook failing
Manasa-Hemmanur Oct 29, 2025
197c282
updated the selinux to "z" in auth.j2
Manasa-Hemmanur Oct 29, 2025
20fe41f
Merge pull request #3654 from Manasa-Hemmanur/defect_fix_auth
priti-parate Oct 31, 2025
311c706
Update pod_status.yml
Katakam-Rakesh Oct 31, 2025
896a369
pxe boot using idrac_boot module
jagadeeshnv Oct 31, 2025
0aef1a8
Update validate_idrac_inventory.yml
Kratika-P Nov 3, 2025
9cdb83f
Update main.yml
Kratika-P Nov 3, 2025
abe6dde
Merge branch 'dell:pub/ochami' into pub/ochami
Kratika-P Nov 3, 2025
bf6c21d
Changed boot mode from once to continuous
jagadeeshnv Nov 3, 2025
c03f700
Merge pull request #3655 from Katakam-Rakesh/pub/ochami
snarthan Nov 4, 2025
da5c9bd
Merge pull request #3647 from sakshi-singla-1735/pub/ochami_csi_fixes
snarthan Nov 4, 2025
d771cbb
Update main.yml
Kratika-P Nov 4, 2025
70be7ab
precise permission for epilog file
Nagachandan-P Nov 4, 2025
a1fbac8
Added required prereq comments
jagadeeshnv Nov 4, 2025
388a3a0
Typo fix
jagadeeshnv Nov 4, 2025
4fb3958
Merge pull request #3660 from Nagachandan-P/pub/ochami
snarthan Nov 4, 2025
8f9856e
Merge pull request #3656 from jagadeeshnv/pub/ochami
jagadeeshnv Nov 4, 2025
412e106
Merge pull request #3657 from Kratika-P/pub/ochami
priti-parate Nov 4, 2025
2f3ec83
vip address validation for k8s
jagadeeshnv Nov 4, 2025
da20619
Added validation for pod external
jagadeeshnv Nov 5, 2025
1642972
Message update for pod_external_ip
jagadeeshnv Nov 5, 2025
28c4d9a
Merge branch 'dell:pub/ochami' into pub/ochami
jagadeeshnv Nov 5, 2025
1eb490f
Merge pull request #3662 from jagadeeshnv/pub/ochami
snarthan Nov 6, 2025
6c6bd88
codeready builder reponame correction
pullan1 Nov 6, 2025
4da3c66
Merge pull request #3668 from pullan1/pub/ochami
priti-parate Nov 6, 2025
90dae62
Issue fix for ipv4 fetching when default route not enabled
jagadeeshnv Nov 6, 2025
f03aae9
Merge branch 'dell:pub/ochami' into pub/ochami
jagadeeshnv Nov 6, 2025
aea1e66
Merge pull request #3669 from jagadeeshnv/pub/ochami
jagadeeshnv Nov 7, 2025
5070947
Updating build image with fix tag
Kratika-P Nov 10, 2025
17d81c6
Merge branch 'dell:pub/ochami' into pub/ochami
Kratika-P Nov 10, 2025
27bfc8f
Replace ansible installation with ansible-core
Kratika-P Nov 10, 2025
0389776
Merge pull request #3676 from Kratika-P/pub/ochami
abhishek-sa1 Nov 10, 2025
a4820f8
Merge pull request #11 from jagadeeshnv/pub/k8s_telemetry
jagadeeshnv Nov 11, 2025
72613d5
Merge branch 'pub/slurm_gpu' into pub/ochami
jagadeeshnv Nov 11, 2025
3afad9a
Merge branch 'pub/k8s_telemetry' into pub/ochami
jagadeeshnv Nov 13, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,8 @@ def server_spec_network_key_fail_msg(nic_device):
"Check high_availability_config.yml and network_spec.yml")
VIRTUAL_IP_NOT_VALID = ("should be outside the admin static and dynamic ranges. "
"Check high_availability_config.yml and network_spec.yml")
VIRTUAL_IP_NOT_POD_EXT = ("should be outside the pod_external_ip ranges. "
"Check high_availability_config.yml and omnia_config.yml")
BMC_VIRTUAL_IP_NOT_VALID = ("should be outside any bmc static and dynamic ranges. "
"Check high_availability_config.yml, network_spec.yml, and "
"roles_config.yml")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@
"pattern": "^[^;\\[\\]`]+$"
},
"csi_password": {
"description": "Password for Powerscale UI. Must not contain hyphens (-), single quotes ('), double quotes (\"), at symbols (@), or backslashes (\\).",
"description": "Password for Powerscale UI. Can contain any characters. Length must be between 5 and 32.",
"minLength": 5,
"maxLength": 32,
"pattern": "^[^\\-\\'\\\"@\\\\]*$"
"pattern": "^.{5,32}$"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,19 @@
],
"properties": {
"virtual_ip_address": {
"type": "string",
"pattern": "^\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}$"
"type": "string",
"allOf": [
{ "pattern": "^[0-9.]+$" },
{ "format": "ipv4" }
]
},
"active_node_service_tags": {
"type": ["array", "null"],
"minItems": 0,
"items": {
"type": "string",
"pattern": "^[a-zA-Z0-9]+$"
}
}
}
}
Expand Down
Loading