Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
radiant-cluster
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
kubernetes
radiant-cluster
Commits
1761ca09
Commit
1761ca09
authored
8 months ago
by
Rob Kooper
Browse files
Options
Downloads
Patches
Plain Diff
curl instead of ping
parent
2943c89a
No related branches found
Branches containing commit
Tags
v3.1.2
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+5
-2
5 additions, 2 deletions
CHANGELOG.md
terraform/modules/rke1/templates/user_data.tmpl
+1
-1
1 addition, 1 deletion
terraform/modules/rke1/templates/user_data.tmpl
with
6 additions
and
3 deletions
CHANGELOG.md
+
5
−
2
View file @
1761ca09
...
...
@@ -4,14 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on
[
Keep a Changelog
](
http://keepachangelog.com/
)
and this project adheres to
[
Semantic Versioning
](
http://semver.org/
)
.
## 3.1.
1
- 2024-0
6
-0
8
## 3.1.
2
- 2024-0
7
-0
3
### Changed
-
use curl https://ncsa.illinois.edu/ to see if network is alive
## 3.1.1 - 2024-06-08
### Changed
-
healthmonitor/longhorn are now disabled by default
### Fixed
-
missing secret/storageclass additional helm charts for manila
-
ability to enable/disable permissions fix for acme
...
...
This diff is collapsed.
Click to expand it.
terraform/modules/rke1/templates/user_data.tmpl
+
1
−
1
View file @
1761ca09
...
...
@@ -109,7 +109,7 @@ write_files:
content: |
#!/usr/bin/bash
echo "sleeping to wait for network"
while !
ping -c 1 -w 0 1.1.1.1 > /dev/null
; do echo "Sleep 10s"; sleep 10; done
while !
curl --fail --silent --output /dev/null http://ncsa.illinois.edu
; do echo "Sleep 10s"; sleep 10; done
%{ if ncsa_security }
sysctl -w net.ipv6.conf.all.disable_ipv6=1
sysctl -w net.ipv6.conf.default.disable_ipv6=1
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment