forked from openshift-labs/learn-katacoda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Data Grid scenario fixes and updates (openshift-labs#1198)
- Loading branch information
1 parent
8fe55ba
commit b154a68
Showing
11 changed files
with
85 additions
and
36 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
In this tutorial, you got an overview of Red Hat Data Grid and learned how easy it is to invoke basic cache operations over REST. | ||
|
||
More information on Data Grid can be found below: | ||
|
||
* [Red Hat Data Grid product page](https://www.redhat.com/en/technologies/jboss-middleware/data-grid) | ||
* [Official Documentation](https://access.redhat.com/documentation/en-us/red_hat_data_grid/) | ||
* [Infinispan community](https://infinispan.org/) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
#!/usr/bin/env bash | ||
#rm -rf ~/projects/rhoar-getting-started | ||
ssh root@host01 "mkdir -p /root/projects && cd /root/projects | ||
#ssh root@host01 "yum install tree -y" | ||
mkdir -p /root/projects | ||
|
||
echo "-w \"\n\"" >> ~/.curlrc | ||
|
||
curl -sL -w '' https://raw.githubusercontent.com/openshift-labs/learn-katacoda/master/assets/middleware/install-openjdk.sh > /tmp/jdk.sh | ||
|
||
chmod a+x /tmp/jdk.sh | ||
/tmp/jdk.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,14 @@ | ||
~/.launch.sh | ||
#!/bin/bash | ||
export JAVA_HOME="/usr/local/jdk-11.0.10+9" | ||
export PATH=$JAVA_HOME/bin:$PATH | ||
echo "export JAVA_HOME=$JAVA_HOME" >> ~/.bashrc | ||
echo "export PATH=$JAVA_HOME/bin:\$PATH" >> ~/.bashrc | ||
clear | ||
echo 'echo Installing the latest Java runtime..' > /tmp/launch.sh | ||
echo 'until ${JAVA_HOME}/bin/java --version >& /dev/null ; do sleep 1; echo -n .; done' >> /tmp/launch.sh | ||
echo 'echo' >> /tmp/launch.sh | ||
echo 'echo "Ready!"' >> /tmp/launch.sh | ||
chmod a+x /tmp/launch.sh | ||
cd ~/projects/ | ||
clear | ||
/tmp/launch.sh |