Skip to content
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

Fixing args reference in post migrator job #72

Merged
merged 27 commits into from
Dec 5, 2023
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
dfa0d74
Fixing tag overrides.
jhbeskow Nov 30, 2023
0bfa75c
Adding new test to update version to check if the versions have been …
jhbeskow Nov 30, 2023
ea61bdc
Fixing step name for version verification
jhbeskow Nov 30, 2023
c471fdd
Changing exit code for testing purposes
jhbeskow Nov 30, 2023
31653c3
Adding some test logging
jhbeskow Nov 30, 2023
3b4060a
Adding further logging
jhbeskow Nov 30, 2023
a7b798d
Debug logging
jhbeskow Nov 30, 2023
feca621
More test logging
jhbeskow Nov 30, 2023
ddc2800
Some more logging and a sleep to make sure the log gets flushed.
jhbeskow Nov 30, 2023
db8eab9
Removing silent flag from curl to view actual output
jhbeskow Nov 30, 2023
008124d
Cat-ing grep output to avoid the exit code
jhbeskow Nov 30, 2023
9f3781b
Cleaning up
jhbeskow Nov 30, 2023
bc22dce
Adding silent flag back to curl
jhbeskow Nov 30, 2023
3344355
Using test values
jhbeskow Nov 30, 2023
e0d22ac
Reverting web version test value
jhbeskow Nov 30, 2023
ffe08ce
Reverting core version test values
jhbeskow Nov 30, 2023
cb4e453
Fixing backup mount location
jhbeskow Dec 1, 2023
2813c1f
Merge branch 'update_versions_test' of https://github.com/bitwarden/h…
jhbeskow Dec 1, 2023
bd58d7e
Adding example database backup and restore scripts. Cleaning up extr…
jhbeskow Dec 1, 2023
28e09a4
Removing file that was no longer in use
jhbeskow Dec 1, 2023
603886d
Merge branch 'main' into update_versions_test
jhbeskow Dec 4, 2023
d9b5e30
Removing un-used helper templates
jhbeskow Dec 4, 2023
368545b
Adding end of file new lines
jhbeskow Dec 4, 2023
6f9a8c9
Adding some documentation around the backup and restore jobs
jhbeskow Dec 4, 2023
98abadf
Updated the README and added and examples README for the backup and r…
jhbeskow Dec 5, 2023
d1814a0
Fixing arg reference
jhbeskow Dec 5, 2023
9b5108e
Merge branch 'main' into update_versions_test
jhbeskow Dec 5, 2023
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 @@ -71,7 +71,7 @@ spec:
readOnly: true
{{- end }}
{{- if or (not .Values.database.enabled) (and .Values.database.enabled .Release.IsUpgrade) }}
arg: [ "-f", "DbScripts_transition", "-r"]
args: [ "-f", "DbScripts_transition", "-r"]
{{- end }}
restartPolicy: Never
volumes:
Expand Down
Loading