Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ jobs:
fi

# We always need to add '-stig-fips' suffix for corresponding image version
# TODO: do not DOCA Driver image for now because $SOURCE_REPO is null one Network Operator will support a new version format
# TODO: do not DOCA Driver image for now because $SOURCE_REPO is null one Network Operator will support a new version format
if [[ "$component" == *StigFips ]]; then
component_tag="${COMPONENT_TAG}-stig-fips"
else
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
if echo "$EXCLUDE_CHART_FILES" | jq -e --arg value "$REL_PATH" 'index($value) != null' > /dev/null; then
echo "Exclude chart file $file from update"
git restore --staged $file
git checkout $file
git checkout $file || true
else
echo "Update chart file $file"
fi
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion hack/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ SriovNetworkOperator:
sourceRepository: sriov-network-operator
version: network-operator-v25.10.0-beta.5
chartLocation: deployment/sriov-network-operator-chart
excludeChartFiles: ["Chart.yaml"]
excludeChartFiles: ["Chart.yaml", "crds/k8s.cni.cncf.io_networkattachmentdefinitions_crd.yaml"]
SriovNetworkOperatorWebhook:
image: sriov-network-operator-webhook
repository: nvcr.io/nvstaging/mellanox
Expand Down
Loading