-
Notifications
You must be signed in to change notification settings - Fork 19
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
fix(): offboard ns when invalid labels are applied to ns #409
Closed
Closed
Changes from 22 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
a1f77d7
fix(): initial changes for offboarding replicated ns
gourishkb 6973574
fix(): expose offBoardPod function
gourishkb 10ebd09
fix(): offboard objects, while cleaning up ns
gourishkb acea6a8
select the slice gateway services only
mridulgain 242a323
fix(): offboardRequired function
gourishkb 81f2f58
fix(): Add ignore_critical parameter to pipeline config
KRANTHI0918 a693a2e
fix(): Set ignore_critical to false in pipeline configuration
KRANTHI0918 91094ac
fix(): Add update_trivy flag with default 'false'
KRANTHI0918 07d43aa
fix(): vulnerabilities
gourishkb 210435b
fix(): code cleanup
gourishkb 5db5228
fix(): Update Jenkinsfile
KRANTHI0918 01e1136
Update README.md
uma-kt 247409d
Update README.md
uma-kt fbf2dec
fix(): configurable ns exclusion list (#408)
priyank-upadhyay f3eb9a5
fix(): Fixed tunnel status reporting in the slicegw CR (#406)
bharath-avesha 63cb4aa
fix(): update gw deploy if gateway sidecar image has been changed in …
mridulgain ffb8b62
add empty string check for sidecar image name
mridulgain 3e5301d
fix(): test build
mridulgain 71628a8
fix(): update gw deploy if gateway sidecar image pull policy is chang…
mridulgain 46a48e9
fix: getNodeIp logic for no-network mode
mridulgain 403decd
address review comments
mridulgain d54ebc5
Set custom Trivy DB repository in GitHub Action env
KRANTHI0918 5c889b8
fix(): Dockerfile golang 1.23.2
gourishkb b23a7f7
Merge branch 'master' into feature-nsreplication
gourishkb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types High
Copilot Autofix AI about 2 months ago
To fix the problem, we need to ensure that the integer value obtained from
strconv.Atoi
is within the bounds of theint32
type before casting it. This can be achieved by usingstrconv.ParseInt
with a specified bit size of 32, which directly returns anint64
that can be safely cast toint32
after ensuring it is within the valid range.strconv.Atoi
withstrconv.ParseInt
specifying a bit size of 32.int32
before casting.