Add non-clustered redis as sub-chart #672
No reviewers
Labels
No Label
has
backport
in progress
invalid
kind
breaking
kind
bug
kind
build
kind
dependency
kind
deployment
kind
docs
kind
enhancement
kind
feature
kind
lint
kind
proposal
kind
question
kind
refactor
kind
security
kind
testing
kind
translation
kind
ui
need
backport
priority
critical
priority
low
priority
maybe
priority
medium
reviewed
duplicate
reviewed
invalid
reviewed
wontfix
skip-changelog
status
blocked
status
needs-feedback
status
needs-reviews
status
wip
upstream
gitea
upstream
other
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: gitea/helm-chart#672
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "559"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Supersedes #559 (@julienym thanks a lot for the initial work, I just cleaned up and added some minor edits. Needed to do so in a new branch as I can't directly edit your fork.)
@justusbunsi I've tested this in a fresh install without issues. Given the tests added by @julienym I am fine with merging this. I'll leave this open a few days so you get a chance to take a final look. No worries, if you have no time, we can always make post-merge adjustments/fixes.
🫡 Will take a closer look in the next days. Thanks for the ping.
william-elastisys referenced this pull request2024-07-04 14:50:43 +00:00
As you can see, I changed a few things. My commit messages should be descriptive. If not, let me know.
LGTM now. I keep it up to you to merge this PR. That way you have the chance to review my changes.
@ -10,3 +10,3 @@
.PHONY: unittests
unittests:
helm unittest --strict -f 'unittests/**/*.yaml' -f 'unittests/dependency-major-image-check.yaml' ./
helm unittest --strict -f 'unittests/**/*.yaml' -f 'unittests/dependency-major-image-check.yaml' -f 'unittests/values-conflicting-checks.yaml' ./
Thinking out loud:
There was a time when the unittest plugin didn't recognize the test files on root level when using that pattern. Nowadays this works. So in theory we could remove the 2nd and 3rd
-f
. But adding them will prevent possible regressions in the unittest plugin which would disable our checks. That's why I added the new file. :)