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

send error output when running systemctl reset-failed k3s to /dev/null #10486

Closed
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e941c35
.
helloimalemur Jul 10, 2024
0769aa3
Update install.sh
helloimalemur Jul 10, 2024
8846550
Update install.sh
helloimalemur Jul 10, 2024
4a1ef22
Update install.sh
helloimalemur Jul 10, 2024
74ee959
Update package/rpm/install.sh
helloimalemur Jul 10, 2024
e0032f2
update checksum
helloimalemur Jul 10, 2024
d6d4e85
.
helloimalemur Jul 10, 2024
5edf3ff
Update install.sh
helloimalemur Jul 10, 2024
a29605d
Update install.sh
helloimalemur Jul 10, 2024
7430f31
Update install.sh
helloimalemur Jul 10, 2024
a16815f
Update package/rpm/install.sh
helloimalemur Jul 10, 2024
ef79a67
update checksum
helloimalemur Jul 10, 2024
76d115f
Merge remote-tracking branch 'origin/install_script_reset-failed' int…
helloimalemur Jul 12, 2024
5c2bddf
Merge branch 'master' into install_script_reset-failed
helloimalemur Jul 12, 2024
48dc614
Merge remote-tracking branch 'origin/install_script_reset-failed' int…
helloimalemur Jul 12, 2024
0fa4c4e
Merge remote-tracking branch 'origin/install_script_reset-failed' int…
helloimalemur Jul 12, 2024
1e1a90f
Fix INSTALL_K3S_PR support
brandond Jul 9, 2024
0492b85
Add data-dir to uninstall and killall scripts
jakefhyde Jul 9, 2024
751aec2
Bump github.com/hashicorp/go-retryablehttp from 0.7.4 to 0.7.7
dependabot[bot] Jun 24, 2024
24eb079
chore: Bump golang:alpine version
github-actions[bot] Jul 7, 2024
92e5c0e
Bump Local Path Provisioner version (#10394)
github-actions[bot] Jul 10, 2024
56088c0
Ensure remotedialer kubelet connections use kubelet bind address
brandond Jul 9, 2024
5f38dd9
chore: Bump Trivy version
github-actions[bot] Jul 7, 2024
5a0e48a
Add etcd s3 config secret implementation
brandond Jun 11, 2024
bf1c1d9
For E2E upgrade test, automatically determine the channel to use (#10…
dereknola Jul 11, 2024
333cf6f
Merge remote-tracking branch 'origin/install_script_reset-failed' int…
helloimalemur Jul 12, 2024
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
3 changes: 1 addition & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ ${KILLALL_K3S_SH}

if command -v systemctl; then
systemctl disable ${SYSTEM_NAME}
systemctl reset-failed ${SYSTEM_NAME}
systemctl reset-failed
helloimalemur marked this conversation as resolved.
Show resolved Hide resolved
systemctl daemon-reload
fi
if command -v rc-update; then
Expand Down Expand Up @@ -1119,4 +1119,3 @@ eval set -- $(escape "${INSTALL_K3S_EXEC}") $(quote "$@")
create_service_file
service_enable_and_start
}

2 changes: 1 addition & 1 deletion package/rpm/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ ${KILLALL_K3S_SH}
if which systemctl; then
for service in ${SERVICE_DIR}/k3s*.service; do
systemctl disable \$service
systemctl reset-failed \$service
systemctl reset-failed
helloimalemur marked this conversation as resolved.
Show resolved Hide resolved
rm -f \$service
done
systemctl daemon-reload
Expand Down