File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
terraform/modules/rke1/templates Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,17 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
6
6
7
- ## 3.1.1 - 2024-06-08
7
+ ## 3.1.2 - 2024-07-03
8
8
9
9
### Changed
10
+ - use curl https://ncsa.illinois.edu/ to see if network is alive
11
+
12
+ ## 3.1.1 - 2024-06-08
10
13
14
+ ### Changed
11
15
- healthmonitor/longhorn are now disabled by default
12
16
13
17
### Fixed
14
-
15
18
- missing secret/storageclass additional helm charts for manila
16
19
- ability to enable/disable permissions fix for acme
17
20
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ write_files:
109
109
content: |
110
110
#!/usr/bin/bash
111
111
echo "sleeping to wait for network"
112
- while ! ping -c 1 -w 0 1.1.1.1 > /dev/null ; do echo "Sleep 10s"; sleep 10; done
112
+ while ! curl --fail --silent --output /dev/null http://ncsa.illinois.edu ; do echo "Sleep 10s"; sleep 10; done
113
113
%{ if ncsa_security }
114
114
sysctl -w net.ipv6.conf.all.disable_ipv6=1
115
115
sysctl -w net.ipv6.conf.default.disable_ipv6=1
You can’t perform that action at this time.
0 commit comments